/* contact.css - FIXED VERSION - Cards Full Width on Mobile */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --primary-white: #ffffff;
    --off-white: #f8f8f8;
    --gray-light: #e5e5e5;
    --gray-medium: #9ca3af;
    --gray-dark: #4b5563;
    --accent: #333333;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-black);
    background-color: var(--primary-white);
    opacity: 1;
    transition: opacity 0.3s ease;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-black);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-black);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-black);
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-wa, .float-call {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.6rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-decoration: none;
}

.float-wa {
    background: #25D366;
}

.float-call {
    background: var(--primary-black);
}

.float-wa:hover, .float-call:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== PAGE HERO SECTION ===== */
.page-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 5% 50px;
    gap: 3rem;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    width: 100%;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    border-bottom: 4px solid var(--primary-black);
    display: inline-block;
    padding-bottom: 5px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-dark);
    margin-bottom: 1.8rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    transition: var(--transition);
    display: block;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    padding: 70px 5%;
    background: var(--off-white);
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.info-card {
    background: var(--primary-white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.info-card:hover i {
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--secondary-black);
}

.info-card p {
    color: var(--gray-dark);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.info-card a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    margin-top: 0.5rem;
    word-break: break-word;
}

.info-card a:hover {
    color: var(--gray-dark);
    transform: translateY(-2px);
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 80px 5%;
    background: var(--primary-white);
    width: 100%;
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
}

.contact-form h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
}

.contact-form h2 span {
    border-bottom: 3px solid var(--primary-black);
    padding-bottom: 5px;
    display: inline-block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-black);
    background: var(--primary-white);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    background: var(--primary-black);
    color: var(--primary-white);
    width: 100%;
    text-align: center;
}

.btn:hover {
    background: var(--secondary-black);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.form-message {
    margin-top: 1.2rem;
    padding: 0.8rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-container {
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-light:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.2);
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--secondary-black);
    color: var(--primary-white);
    padding: 50px 5% 20px;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 0.8rem;
}

.footer-section p {
    color: var(--gray-medium);
    line-height: 1.6;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-white);
    transform: translateY(-3px);
}

.social-links img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.social-links a:hover img {
    filter: brightness(0);
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--primary-white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.contact-info img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-medium);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE DESIGN - FIXED FOR MOBILE ===== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .page-hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 50px;
        gap: 2rem;
    }
    
    .hero-content p {
        margin: 0 auto 1.5rem;
    }
    
    .hero-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-map-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        transition: left 0.3s ease;
        gap: 1.2rem;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    /* ===== CARDS FULL WIDTH ON MOBILE - BORDER SE ATTACHED ===== */
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .info-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 12px !important;
        padding: 1.8rem !important;
    }
    
    .contact-form h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .form-map-grid {
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn, .btn-outline-light {
        width: 100%;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .float-wa, .float-call {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.8rem;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .map-container {
        height: 350px;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 1.6rem !important;
    }
    
    .info-card i {
        font-size: 2.2rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .info-card a {
        font-size: 0.95rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .contact-form h2 {
        font-size: 1.6rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section ul li a,
    .contact-info li {
        font-size: 0.85rem;
    }
    
    .info-card {
        padding: 1.5rem !important;
    }
    
    .info-card i {
        font-size: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .float-wa, .float-call {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .info-card {
        padding: 1.2rem !important;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
.page-hero {
    animation: fadeInUp 1s ease-out;
}

.contact-info-section {
    animation: fadeInUp 1s ease-out;
}

.contact-form-section {
    animation: fadeInUp 1s ease-out;
}

.cta-section {
    animation: fadeInUp 1s ease-out;
}

/* ===== UTILITY CLASSES ===== */
::selection {
    background: var(--primary-black);
    color: var(--primary-white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-black);
}
.social-links {
        display: flex;
        gap: 12px;
        margin-top: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
    }
    
    /* Facebook */
    .social-icon.facebook {
        background: #1877f2;
    }
    
    .social-icon.facebook:hover {
        background: #0d5ab9;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
    }
    
    /* Instagram */
    .social-icon.instagram {
        background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
    }
    
    .social-icon.instagram:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    }
    
    /* TikTok */
    .social-icon.tiktok {
        background: #000000;
        position: relative;
    }
    
    .social-icon.tiktok:hover {
        background: #1a1a1a;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }
    
    /* LinkedIn */
    .social-icon.linkedin {
        background: #0a66c2;
    }
    
    .social-icon.linkedin:hover {
        background: #004182;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
    }
    
    /* Mobile responsive */
    @media (max-width: 768px) {
        .social-links {
            justify-content: center;
        }
    }