/* =========================================
   VARIABLES & DESIGN SYSTEM
   ========================================= */
@font-face {
    font-family: 'Syifa';
    src: url('fonts/syifa.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #FAF7F2;       /* Ivory White */
    --bg-alt: #F5F0EA;         /* Slightly darker ivory */
    --primary-color: #E8C4C4;  /* Dusty Rose */
    --primary-dark: #D4A8A8;   /* Deeper Rose */
    --accent-color: #C9A98A;   /* Warm Taupe/Gold */
    --accent-dark: #B08D6E;    /* Deeper Gold */
    --text-dark: #2C2C2C;      /* Deep Charcoal */
    --text-light: #ffffff;
    --text-muted: #888;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   UTILITIES
   ========================================= */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    border-radius: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(232, 196, 196, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 138, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--text-light);
    transform: translateY(-2px);
}

.gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    margin: 20px 0;
    border-radius: 2px;
}

.gold-line.center {
    margin: 20px auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

section {
    padding: 100px 5%;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 138, 0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 5%;
    box-shadow: var(--shadow-md);
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Great Vibes', 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
    transition: var(--transition);
    line-height: 1;
}

.logo-suffix {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-left: 8px;
    padding-bottom: 2px;
    /* Align bottom with the script text baseline */
    vertical-align: baseline;
}

.logo-text:hover {
    color: var(--accent-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li {
    min-width: 90px;
    text-align: center;
}

.nav-links a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

/* Adaptive header: compact nav on medium screens (769-1200px) */
@media (max-width: 1200px) {
    .navbar {
        padding: 14px 3%;
        gap: 12px;
    }

    .logo-text {
        font-size: 1.9rem;
    }

    .logo-suffix {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links li {
        min-width: 0;
    }

    .nav-links a {
        font-size: 11.5px;
        letter-spacing: 1px;
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-toggle {
    font-size: 13px;
    cursor: pointer;
    letter-spacing: 1px;
    white-space: nowrap;
}

.lang-toggle span {
    opacity: 0.4;
    transition: var(--transition);
    font-weight: 500;
}

.lang-toggle span.active {
    opacity: 1;
    color: var(--accent-dark);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 0;
    position: relative;
    background: linear-gradient(135deg, var(--bg-color) 0%, #F0E8E0 50%, var(--bg-color) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(232,196,196,0.15) 100%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    padding-right: 8%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-title span {
    font-style: italic;
    color: var(--primary-dark);
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--accent-dark);
    font-weight: 500;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
    height: 80vh;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    display: flex;
    align-items: center;
    gap: 8%;
    background-color: var(--bg-alt);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 20px 20px 0 var(--primary-color);
    transition: var(--transition);
}

.about-image:hover img {
    box-shadow: 15px 15px 0 var(--accent-color);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 5px;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
}

.stats-container {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* =========================================
   COLLECTIONS / GALLERY CAROUSEL
   ========================================= */
.gallery-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    touch-action: pan-y;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding: 20px 20px 40px 20px;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 auto;
    width: 260px;
    scroll-snap-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    opacity: 0.55;
    transform: scale(1);
}

.gallery-item.active {
    transform: scale(1.08);
    opacity: 1;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

/* Hover zoom */
.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250,247,242,0.95);
    border: 1px solid rgba(201,169,138,0.3);
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev { left: 15px; }
.gallery-next { right: 15px; }

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    background: var(--accent-color);
    width: 28px;
    border-radius: 4px;
}

.gallery-more {
    text-align: center;
    margin-top: 30px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.gallery-more a {
    color: var(--accent-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

.gallery-more a:hover {
    color: var(--primary-dark);
    border-color: var(--primary-color);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    padding: 20px;
    overflow: auto;
    background-color: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.lightbox.open .lightbox-img {
    transform: scale(1);
    opacity: 1;
}

.close-lightbox {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 2001;
    color: var(--text-dark);
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(250,247,242,0.7);
}

.close-lightbox:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.section-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 10px;
}

/* =========================================
   PROCESS / CARA PESAN SECTION
   ========================================= */
.process {
    background-color: var(--bg-alt);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 35px 20px;
    background: var(--text-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(232,196,196,0.3);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.process-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1.05rem;
    color: #666;
    padding: 24px 30px;
    background: var(--text-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.process-note strong {
    color: var(--accent-dark);
    font-weight: 600;
}

/* Services list (what we sew) */
.services-list {
    text-align: center;
    margin-top: 50px;
}

.services-title {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
}

.service-tag {
    display: inline-block;
    padding: 10px 22px;
    background: var(--bg-color);
    border: 1.5px solid rgba(201,169,138,0.35);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: default;
}

.service-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: var(--text-light);
    border-top: 1px solid rgba(201,169,138,0.15);
}

.contact-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.contact-header h2 {
    font-size: 2.8rem;
    margin-bottom: 5px;
}

.contact-header p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-grid {
    display: flex;
    gap: 6%;
    align-items: flex-start;
}

/* Stack contact columns below 1200px — full width, adaptive */
@media (max-width: 1200px) {
    .contact-grid {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }

    .contact-info, .contact-form {
        width: 100%;
        flex: none;
    }
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 0;
}

.contact-form {
    padding-top: 0; /* align first input with WhatsApp card top */
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--bg-color);
    border: 1.5px solid #e8e2da;
    transition: var(--transition);
    position: relative;
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card.whatsapp .contact-card-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

.contact-card.email .contact-card-icon {
    background: rgba(201, 169, 138, 0.15);
    color: var(--accent-dark);
}

.contact-card.instagram .contact-card-icon {
    background: rgba(225, 48, 108, 0.12);
    color: #E1306C;
}

.contact-card.whatsapp:hover {
    background: rgba(37, 211, 102, 0.06);
    border-color: #25D366;
}

.contact-card.email:hover {
    background: rgba(201, 169, 138, 0.08);
    border-color: var(--accent-color);
}

.contact-card.instagram:hover {
    background: rgba(225, 48, 108, 0.06);
    border-color: #E1306C;
}

.contact-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-card-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-card-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-card-action {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}

.contact-card.whatsapp .contact-card-action {
    background: #25D366;
    color: white;
}

.contact-card.email .contact-card-action {
    background: var(--accent-color);
    color: white;
}

.contact-card.instagram .contact-card-action {
    background: #E1306C;
    color: white;
}

.contact-response {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 12px 16px;
    background: rgba(201,169,138,0.08);
    border-radius: 8px;
    color: var(--accent-dark);
    font-size: 0.9rem;
}

.contact-response i {
    font-size: 16px;
}

.booking-note {
    padding: 16px 20px;
    background: var(--bg-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    color: #666;
    font-size: 0.95rem;
}

.booking-note i {
    font-size: 18px;
    color: var(--accent-color);
}

.map-link {
    margin-top: 12px;
}

.map-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    background: var(--bg-color);
    border: 1.5px solid #e8e2da;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.map-link a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.map-link i {
    color: #4285F4;
    font-size: 18px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0dbd5;
    background: var(--bg-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--text-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201,169,138,0.15);
    background: var(--text-light);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.date-field {
    position: relative;
    width: 100%;
}

.date-field .date-placeholder {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: #aaa;
    pointer-events: none;
    transition: var(--transition);
    z-index: 1;
}

.date-field input[type="date"] {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0dbd5;
    background: var(--bg-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--text-dark);
    -webkit-appearance: none;
    appearance: none;
    color-scheme: light;
}

.date-field input[type="date"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201,169,138,0.15);
    background: var(--text-light);
}

/* Hide placeholder when date has value or focused (browser shows its own) */
.date-field.has-value .date-placeholder {
    display: none;
}

.date-field input[type="date"]:focus ~ .date-placeholder {
    display: none;
}

.date-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: none;
    opacity: 0.6;
}

.contact-form .btn {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 15px;
}

/* =========================================
   FOOTER & FLOATING WA
   ========================================= */
footer {
    text-align: center;
    padding: 50px 5%;
    border-top: 1px solid rgba(201, 169, 138, 0.2);
    background: var(--bg-alt);
}

footer p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: wa-pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* =========================================
   SCROLL ANIMATIONS (fade-in on scroll)
   ========================================= */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE (MOBILE & TABLET)
   ========================================= */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
        min-height: auto;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-sub {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        height: 50vh;
        width: 100%;
    }
    
    .about {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-image img {
        box-shadow: 10px 10px 0 var(--primary-color);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact {
        flex-direction: column;
        gap: 40px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header stays fixed & visible — no hamburger */
    /* Two-row layout: row1 = logo + lang toggle, row2 = nav links */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        flex-wrap: wrap;
        padding: 10px 14px 8px;
        gap: 4px;
    }
    
    .navbar .logo {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    /* Row 2: menu links full width, centered, no overlap */
    .nav-links {
        display: flex;
        flex-wrap: nowrap;
        flex-basis: 100%;
        order: 3;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 2px;
        padding: 8px 0 2px;
        border-top: 1px solid rgba(201,169,138,0.2);
        margin-top: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .nav-links::-webkit-scrollbar {
        display: none;
    }
    
    .nav-links li {
        min-width: auto;
        flex: 0 0 auto;
        margin: 0;
    }
    
    .nav-links a {
        font-size: 11px;
        letter-spacing: 0.8px;
        padding: 6px 8px;
        text-transform: uppercase;
        white-space: nowrap;
        display: block;
    }
    
    .lang-toggle {
        font-size: 12px;
        flex: 0 0 auto;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        text-align: center;
    }
    
    .hero-sub {
        font-size: 0.92rem;
        padding: 0 10px;
    }
    
    .hero-image {
        height: 40vh;
        margin-top: 30px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* prevent iOS zoom */
    }
    
    .gallery-item {
        width: 240px;
    }
    
    .gallery-item img {
        height: 320px;
    }
    
    .gallery-track {
        padding: 20px 10px 40px 10px;
    }

    /* Mobile: contact grid full-width stacked */
    .contact-grid {
        flex-direction: column;
        width: 100%;
    }

    .contact-info, .contact-form {
        width: 100%;
        flex: none;
    }

    .contact-form form {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Hide native dd/mm/yyyy placeholder in date input when empty */
input[type="date"]::-webkit-datetime-edit,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: transparent;
}
/* Show the date text when value is filled */
.date-field.has-value input[type="date"]::-webkit-datetime-edit,
.date-field.has-value input[type="date"]::-webkit-datetime-edit-month-field,
.date-field.has-value input[type="date"]::-webkit-datetime-edit-day-field,
.date-field.has-value input[type="date"]::-webkit-datetime-edit-year-field {
    color: var(--text-dark);
}
