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

:root {
    /* Colors - Warm & Elegant */
    --color-ivory: #FAF7F2;
    --color-beige: #E8DFD0;
    --color-warm-beige: #D4C5B0;
    --color-gold: #C9A961;
    --color-gold-dark: #B8964E;
    --color-charcoal: #2C2C2C;
    --color-charcoal-light: #4A4A4A;
    --color-white: #FFFFFF;
    --color-overlay: rgba(44, 44, 44, 0.5);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-ivory);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-charcoal);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--color-charcoal);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-charcoal-light);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-charcoal);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-charcoal);
    border: 2px solid var(--color-charcoal);
}

.btn-outline:hover {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-block {
    width: 100%;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(250, 247, 242, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: 1px;
}

.navbar:not(.scrolled) .logo-text {
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 450px;
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    background-color: white;
    padding: 6px 12px;
    border-radius: 4px;
}

.navbar.scrolled .logo-img {
    height: 80px;
    padding: 4px 10px;
}

.navbar:not(.scrolled) .logo-img {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal);
    transition: var(--transition-fast);
    position: relative;
    letter-spacing: 0.5px;
}

.navbar:not(.scrolled) .nav-link {
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: var(--transition-fast);
}

.navbar:not(.scrolled) .nav-toggle span {
    background-color: var(--color-white);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.75) 0%,
        rgba(201, 169, 97, 0.5) 50%,
        rgba(44, 44, 44, 0.7) 100%
    );
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    animation: slideZoom 8s ease-in-out;
}

@keyframes slideZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Watermark overlay */
.hero-slide::after {
    content: 'Mayur Photography';
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: rgba(201, 169, 97, 0.4);
    letter-spacing: 2px;
    font-weight: 300;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.2) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-md);
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.hero-title-line {
    display: block;
    animation: fadeInUp 1s ease-out backwards;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-beige);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 120%;
    background-color: var(--color-beige);
    border-radius: 2px;
    overflow: hidden;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, var(--color-warm-beige) 0%, var(--color-beige) 100%),
        url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Cpath fill="%23C9A961" opacity="0.1" d="M100 0L130 70L200 70L145 115L170 185L100 140L30 185L55 115L0 70L70 70Z"/%3E%3C/svg%3E');
    background-size: cover, 50%;
    background-position: center;
    background-repeat: no-repeat;
}

.about-photographer-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-content {
    padding: var(--spacing-md);
}

.about-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-charcoal-light);
    text-align: justify;
}

.about-text p:first-of-type {
    font-size: 1.2rem;
    color: var(--color-charcoal);
    text-align: justify;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-ivory);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

.gallery-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal-light);
    background-color: transparent;
    border: 1px solid var(--color-warm-beige);
    border-radius: 2px;
    transition: var(--transition-fast);
    cursor: pointer;
    letter-spacing: 0.5px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.gallery-tab:hover,
.gallery-tab.active {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 4/5;
    background-color: var(--color-beige);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-caption {
    color: var(--color-white);
    font-size: 0.9rem;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.no-images {
    text-align: center;
    padding: var(--spacing-xl) 0;
    color: var(--color-charcoal-light);
    font-size: 1.125rem;
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 30, 30, 0.98);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 2px;
    /* Natural display without artificial filters */
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    color: var(--color-white);
    margin-top: var(--spacing-md);
    font-size: 1rem;
    text-align: center;
    text-transform: capitalize;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    border-radius: 2px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    padding: var(--spacing-lg);
    background-color: var(--color-ivory);
    border-radius: 2px;
    transition: var(--transition-smooth);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--color-white);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--color-gold-dark);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-charcoal);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-charcoal-light);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-ivory) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    margin-bottom: var(--spacing-md);
}

.testimonial-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-charcoal-light);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.author-info h4 {
    font-size: 1.125rem;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-gold);
}

/* ===================================
   MODAL (BOOKING FORM)
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background-color: var(--color-white);
    border-radius: 2px;
    padding: var(--spacing-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--color-charcoal-light);
    cursor: pointer;
    transition: var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: var(--color-ivory);
    color: var(--color-charcoal);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-charcoal);
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--color-charcoal-light);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--color-beige);
    border-radius: 2px;
    background-color: var(--color-white);
    color: var(--color-charcoal);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

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

/* ===================================
   FLOATING WHATSAPP BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: none; /* Hidden by default on desktop */
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, #1a1a1a 100%);
    color: var(--color-beige);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.125rem;
}

.footer-logo {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.footer-logo-img {
    height: 130px;
    width: auto;
    max-width: 350px;
    margin-bottom: 1rem;
    filter: brightness(1.2);
    background-color: transparent;
    padding: 6px 12px;
    border-radius: 4px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    color: var(--color-warm-beige);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-gold);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-warm-beige);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact li {
    color: var(--color-warm-beige);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.disclaimer-banner {
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    padding: 1rem 1.5rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-banner svg {
    color: var(--color-gold);
    margin-top: 2px;
}

.disclaimer-banner p {
    color: var(--color-beige);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-banner strong {
    color: var(--color-gold);
}

.footer-bottom p {
    color: var(--color-warm-beige);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-note {
    font-style: italic;
    color: var(--color-gold);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    /* Mobile logo sizing */
    .logo-img {
        height: 50px !important;
        max-width: 200px;
        padding: 6px 12px;
    }
    
    .navbar.scrolled .logo-img {
        height: 40px !important;
        padding: 4px 10px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-link {
        color: var(--color-charcoal) !important;
        text-shadow: none !important;
        font-size: 1.125rem;
        padding: 1rem 0;
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .section-header {
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .section-label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero {
        height: 75vh;
        min-height: 600px;
        padding: 140px var(--spacing-md) 100px;
    }
    
    .hero-content {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1rem;
        margin: var(--spacing-sm) 0 var(--spacing-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .scroll-indicator {
        bottom: 25px;
        font-size: 0.7rem;
    }
    
    .gallery-section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-slide::after {
        font-size: 1rem;
        bottom: 25px;
        right: 25px;
        letter-spacing: 1px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: var(--spacing-md);
    }
    
    .gallery-item {
        aspect-ratio: 1;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 1rem;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 2rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Extra small mobile logo */
    .logo-img {
        height: 40px !important;
        max-width: 180px;
        padding: 4px 10px;
    }
    
    .navbar.scrolled .logo-img {
        height: 35px !important;
        padding: 3px 8px;
    }
    
    .footer-logo-img {
        height: 70px;
        max-width: 180px;
        padding: 8px 12px;
    }
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 550px;
        padding: 110px var(--spacing-sm) 90px;
    }
    
    .hero-content {
        max-width: 95%;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin: 0.75rem 0 1.5rem !important;
    }
    
    .hero-buttons {
        margin-bottom: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
        font-size: 0.65rem;
        gap: 8px;
    }
    
    .scroll-line {
        height: 35px;
    }
    
    .hero-slide::after {
        font-size: 0.75rem;
        bottom: 15px;
        right: 15px;
        letter-spacing: 0.5px;
    }
    
    .section-header {
        margin-bottom: var(--spacing-md);
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .gallery-section {
        padding: var(--spacing-md) 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: var(--spacing-sm);
    }
    
    .gallery-tabs {
        gap: 0.5rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
        justify-content: flex-start;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        overscroll-behavior-x: contain;
    }
    
    .gallery-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-tab {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        white-space: nowrap;
        min-height: 44px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .modal-content {
        padding: var(--spacing-md);
        width: 95%;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 16px;
        min-height: 48px;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .whatsapp-float {
        display: flex; /* Show on mobile */
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading State */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid var(--color-beige);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.contact-hero-content {
    text-align: center;
    z-index: 1;
}

.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: start;
}

/* Contact Info */
.contact-info-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-charcoal);
    margin-bottom: var(--spacing-sm);
}

.contact-info-text {
    color: var(--color-charcoal-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
}

.contact-detail-item h3 {
    font-size: 1.125rem;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.contact-detail-item p,
.contact-detail-item a {
    color: var(--color-charcoal-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-detail-item a:hover {
    color: var(--color-gold);
}

.contact-social {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-beige);
}

.contact-social h3 {
    font-size: 1.125rem;
    color: var(--color-charcoal);
    margin-bottom: var(--spacing-sm);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-charcoal);
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-links-contact a:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-charcoal);
    margin-bottom: var(--spacing-xs);
}

.contact-form-subtitle {
    color: var(--color-charcoal-light);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-charcoal);
    background-color: var(--color-ivory);
    border: 2px solid var(--color-beige);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        display: flex;
        flex-direction: column;
    }
    
    /* Show form first on mobile */
    .contact-form-wrapper {
        order: 1;
    }
    
    .contact-info {
        order: 2;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 35vh;
        margin-top: 70px;
    }

    .contact-form-wrapper {
        padding: var(--spacing-md);
    }

    .contact-detail-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Smooth Scroll */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
