/* ========================================================
   PLEAT ROOM - SAREE PRE-PLEATING & DRAPING SERVICE
   LUXURY AESTHETIC STYLESHEET
   ======================================================== */

:root {
    --primary: #591629;         /* Royal Plum Maroon */
    --primary-dark: #3E0C1B;    /* Deep Crimson Velvet */
    --primary-light: #7E263E;   /* Muted Berry */
    --gold: #C5A059;            /* Antique Zari Gold */
    --gold-light: #F2E3C6;      /* Soft Champagne */
    --gold-dark: #9E7D36;       /* Bronze Gold */
    --bg-warm: #FAF8F5;         /* Warm Silk Ivory */
    --bg-cream: #F3EFEA;        /* Soft Linen */
    --surface: #FFFFFF;         /* Pure Card White */
    --text-main: #242224;       /* Deep Charcoal */
    --text-muted: #6B6568;      /* Gentle Slate */
    --border: #E8E2D9;          /* Subtle Sand Border */
    --whatsapp-green: #25D366;  /* WhatsApp Official */
    --shadow-sm: 0 2px 8px rgba(74, 18, 36, 0.04);
    --shadow-md: 0 10px 30px rgba(74, 18, 36, 0.08);
    --shadow-lg: 0 20px 40px rgba(74, 18, 36, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --font-heading: 'Marcellus', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-warm);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    padding-bottom: 70px; /* Space for mobile sticky footer */
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ========================================================
   TOP ANNOUNCEMENT BAR
   ======================================================== */
.announcement-bar {
    background-color: var(--primary-dark);
    color: var(--gold-light);
    font-size: 0.825rem;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    font-weight: 600;
}

.top-contact-link:hover {
    color: #FFFFFF;
}

/* ========================================================
   HEADER & NAVIGATION
   ======================================================== */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 2px 10px rgba(74, 21, 37, 0.15);
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-sub {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.brand-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 900px) {
    .nav-menu {
        display: flex;
        align-items: center;
    }
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.3rem 0;
}

.nav-link:hover {
    color: var(--primary);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.header-wa-icon-mobile {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--whatsapp-green);
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    flex-shrink: 0;
}

.header-wa-icon-mobile:hover {
    transform: scale(1.05);
}

.mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.3rem;
}

@media (min-width: 900px) {
    .mobile-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-cta-desktop {
        display: none !important;
    }
    .header-wa-icon-mobile {
        display: inline-flex;
    }
    .brand-name {
        font-size: 1.45rem;
    }
    .brand-sub {
        font-size: 0.6rem;
    }
    .brand-tag {
        font-size: 0.65rem;
    }
}

/* ========================================================
   BUTTONS & BADGES
   ======================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    text-decoration: none;
    line-height: 1.25;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    min-height: 44px;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
    min-height: 38px;
    gap: 0.4rem;
}

.btn-md {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    min-height: 46px;
}

.btn-lg {
    padding: 0.95rem 2rem;
    font-size: 1rem;
    min-height: 50px;
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
    border: 1px solid var(--primary-dark);
    box-shadow: 0 4px 15px rgba(89, 22, 41, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(89, 22, 41, 0.35);
}

.btn-secondary {
    background-color: var(--gold);
    color: #FFFFFF;
    border: 1px solid var(--gold-dark);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.25);
}

.btn-secondary:hover {
    background-color: var(--gold-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.35);
}

.btn-outline-plum {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.btn-outline-plum:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(89, 22, 41, 0.2);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    color: #FFFFFF;
}

.btn-wa {
    background: var(--whatsapp-green);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
    background: #1EBE5D;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-outline:hover {
    background: var(--primary);
    color: #FFFFFF;
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero-section {
    padding: 3rem 0 4rem;
    background: radial-gradient(circle at top left, #FAF5ED 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.badge-google {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.google-badge-icon {
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.15;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

.gold-gradient {
    color: var(--gold-dark);
    background: linear-gradient(135deg, var(--gold-dark) 0%, #E2BA6E 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.highlight-item svg {
    color: var(--gold-dark);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero-image-card {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #FFFFFF;
}

.main-hero-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.floating-stat-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
}

.stat-bottom-left {
    bottom: 1.5rem;
    left: 1.5rem;
}

.stat-top-right {
    top: 1.5rem;
    right: 1.5rem;
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-num {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    line-height: 1.1;
}

.stat-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================================
   INFO STRIP (Google Business Data)
   ======================================================== */
.info-strip {
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.strip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .strip-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.strip-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-cream);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-instagram-box {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.25);
}

.strip-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.strip-item p, .strip-item a {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.strip-link {
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
}

.strip-link:hover {
    color: #E1306C;
}

.strip-item a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ========================================================
   SECTIONS GENERAL
   ======================================================== */
.section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-dark);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-dark);
    line-height: 1.25;
    margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.6rem;
    }
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ========================================================
   ABOUT SECTION
   ======================================================== */
.about-section {
    background-color: var(--bg-warm);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.about-image-stack {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(89, 22, 41, 0.92);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
}

.exp-label {
    font-size: 0.85rem;
    color: #FFFFFF;
    margin-top: 0.25rem;
}

.about-p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 600px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}

.af-item {
    display: flex;
    gap: 1rem;
}

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

.af-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.af-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.25rem;
}

.about-actions .btn {
    box-shadow: 0 4px 15px rgba(89, 22, 41, 0.15);
}

/* ========================================================
   SERVICES SECTION
   ======================================================== */
.services-section {
    background-color: var(--surface);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.featured-service {
    background: #FFFFFF;
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.badge-featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.service-features {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li svg {
    color: var(--gold-dark);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.service-footer {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    margin-top: auto;
}

.service-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.service-btn:hover {
    color: var(--gold-dark);
    gap: 0.5rem;
}

/* ========================================================
   HOW IT WORKS
   ======================================================== */
.steps-section {
    background-color: var(--bg-cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 600px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background: var(--surface);
    padding: 2.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--bg-warm);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================================
   GALLERY
   ======================================================== */
.gallery-section {
    background-color: var(--surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
}

.gallery-item.large {
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(62, 12, 27, 0.85) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #FFFFFF;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: #FFFFFF;
    opacity: 0.9;
}

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

.gallery-cta {
    margin-top: 3.5rem;
}

.portfolio-banner-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-md);
    text-align: left;
}

@media (max-width: 800px) {
    .portfolio-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

.pbc-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #E1306C;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.4rem;
}

.pbc-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.pbc-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 580px;
}

.pbc-action {
    flex-shrink: 0;
}

/* ========================================================
   REVIEWS SECTION
   ======================================================== */
.reviews-section {
    background-color: var(--bg-warm);
}

.google-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.google-rating-summary .stars {
    color: #FFB800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.google-rating-summary .score {
    color: var(--primary-dark);
}

.google-rating-summary .platform {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.review-header h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.1rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    color: #FFB800;
    letter-spacing: 2px;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

/* ========================================================
   BOOKING FORM SECTION
   ======================================================== */
.booking-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #FFFFFF;
    width: 100%;
    overflow: hidden;
}

.booking-card {
    background: #FFFFFF;
    color: var(--text-main);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    max-width: 760px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 0.4rem 0;
}

.booking-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 2;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    box-sizing: border-box;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input, .form-group select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-warm);
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(89, 22, 41, 0.1);
}

.form-note {
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ========================================================
   CONTACT & MAP SECTION
   ======================================================== */
.contact-section {
    background-color: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-detail-card {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    transition: var(--transition);
}

.contact-detail-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

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

.cdc-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-detail-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.contact-detail-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.contact-detail-card .phone-link {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}

.contact-detail-card .sub-text {
    font-size: 0.78rem;
    color: var(--gold-dark);
    margin-top: 0.25rem;
    display: block;
}

.cdc-action {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.card-btn-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.link-action {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.4rem;
}

.link-action svg {
    width: 14px;
    height: 14px;
}

.tag-status {
    display: inline-block;
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    margin-top: 0.3rem;
}

.map-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.map-header {
    padding: 1rem 1.25rem;
    background: var(--bg-cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.map-header-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4285F4;
}

.map-area {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.map-footer {
    padding: 1rem;
    background: #FFFFFF;
}

/* ========================================================
   FAQ SECTION
   ======================================================== */
.faq-section {
    background-color: var(--bg-warm);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: left;
    cursor: pointer;
}

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--gold-dark);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
    background-color: var(--primary-dark);
    color: #FFFFFF;
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1.2fr;
    }
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-brand-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: #FFF;
    flex-shrink: 0;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 0;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #E0D3D7;
    margin-bottom: 0.5rem;
}

.footer-by {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

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

.footer-socials a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: #D3C4C8;
    font-size: 0.9rem;
}

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

.footer-studio-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 9999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    color: #EADCD3;
    margin-bottom: 1.5rem;
}

.footer-studio-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
}

.footer-studio-badge strong {
    color: var(--gold-light);
    font-weight: 600;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #D3C4C8;
    line-height: 1.45;
}

.footer-contact-list li i {
    width: 17px;
    height: 17px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-contact-list a {
    color: #EADCD3;
    transition: var(--transition);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: #CBB9BE;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-love-msg {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #D8CBD0;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
}

.heart-pulse {
    display: inline-block;
    color: #FF4D6D;
    animation: heartBeat 1.8s ease-in-out infinite;
    font-size: 0.95rem;
    line-height: 1;
    transform-origin: center;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.22);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.15);
    }
    70% {
        transform: scale(1);
    }
}

.designer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    color: #CBB9BE;
    font-size: 0.85rem;
}

.credit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.35);
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.credit-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1A050D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1;
}

.credit-badge .credit-name {
    color: var(--gold-light);
    transition: color 0.2s ease;
}

.credit-badge svg {
    color: var(--gold);
    transition: transform 0.2s ease, color 0.2s ease;
}

.credit-badge:hover {
    background: rgba(197, 160, 89, 0.25);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.25);
}

.credit-badge:hover .credit-name {
    color: #FFFFFF;
}

.credit-badge:hover svg {
    color: #FFFFFF;
    transform: translate(1.5px, -1.5px);
}

/* ========================================================
   STICKY MOBILE BOTTOM BAR (High Conversion for India GMB)
   ======================================================== */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid var(--border);
    display: flex;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .mobile-sticky-bar {
        display: none;
    }
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
}

.sticky-call {
    background: var(--primary);
    color: #FFFFFF;
}

.sticky-wa {
    background: var(--whatsapp-green);
    color: #FFFFFF;
}

/* ========================================================
   MOBILE AUDIT & RESPONSIVENESS ENHANCEMENTS
   ======================================================== */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .announcement-bar {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
    }

    .announcement-content {
        justify-content: center;
        text-align: center;
        gap: 0.25rem;
    }

    .top-contact-link {
        display: none;
    }

    .badge-google {
        font-size: 0.72rem;
        padding: 0.35rem 0.75rem;
        line-height: 1.35;
    }

    .section {
        padding: 3.25rem 0;
    }

    .hero-section {
        padding: 1.75rem 0 3rem;
    }

    .hero-title {
        font-size: 2.15rem;
        line-height: 1.2;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .about-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .about-actions .btn {
        width: 100%;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 1.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .booking-header h2 {
        font-size: 1.6rem;
    }

    .form-group input, 
    .form-group select {
        font-size: 16px; /* Prevents auto-zoom on mobile iOS & Android */
        min-height: 48px;
    }

    .portfolio-banner-card {
        padding: 1.75rem 1.25rem;
    }

    .pbc-action, .pbc-action .btn {
        width: 100%;
    }

    .card-btn-row {
        width: 100%;
        display: flex;
    }

    .card-btn-row .btn {
        flex: 1;
    }

    .cdc-action .btn {
        width: 100%;
    }

    .mobile-sticky-bar {
        padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 0.85rem;
    }

    .footer-love-msg,
    .designer-credit {
        justify-content: center;
        text-align: center;
    }
}
