/* ===================================================
   SHIVPRIYA GHEE — Premium Website Stylesheet
   Palette: Charcoal #1C1C1C | Gold #C9A84C | Cream #FDF6E3
   =================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
    --gold:       #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark:  #A07C2E;
    --charcoal:   #1C1C1C;
    --charcoal-2: #2E2E2E;
    --cream:      #FDF6E3;
    --cream-2:    #F5EDD6;
    --white:      #FFFFFF;
    --text-dark:  #2C2C2C;
    --text-mid:   #5A5A5A;
    --text-light: #8A8A8A;
    --border:     #E8DFC8;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Montserrat', system-ui, sans-serif;
    --font-hindi: 'Hind', 'Noto Sans Devanagari', sans-serif;

    --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
    --radius:     16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--charcoal);
    line-height: 1.25;
}

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

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

.section-pad { padding: 100px 0; }

/* ---------- UTILITY ---------- */
.gold-text  { color: var(--gold); }
.italic     { font-style: italic; }

/* ---------- BUTTONS ---------- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.4px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

.btn-outline-gold {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
}
.btn-outline-gold:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---------- SECTION HEADERS ---------- */
.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-header { margin-bottom: 60px; }

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-sub {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-mid);
    font-size: 15px;
}

/* =============================================
   NAVIGATION
   ============================================= */
#mainNav {
    background: rgba(28, 28, 28, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: all var(--transition);
    z-index: 1000;
}

#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.brand-wrap { display: flex; flex-direction: column; line-height: 1.2; }

.brand-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 11px;
    color: rgba(201,168,76,0.85);
    font-family: var(--font-hindi);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

#mainNav .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--gold) !important;
    background: rgba(201,168,76,0.1);
}

.nav-cta {
    font-size: 13px;
    padding: 10px 22px;
    margin-left: 10px;
}

.navbar-toggler {
    border: 1px solid rgba(201,168,76,0.4);
    padding: 6px 10px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,168,76,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #080601;
    transform: scale(1.05);
    transition: transform 8s ease;
    z-index: 0;
}

.hero-section:hover .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,8,2,0.88) 0%,
        rgba(28,28,28,0.72) 50%,
        rgba(10,8,2,0.55) 100%
    );
    z-index: 1;
}

.hero-section .container { position: relative; z-index: 2; padding-top: 0; }

.hero-content { padding: 40px 0; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 36px;
    max-width: 540px;
    letter-spacing: 0.3px;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color var(--transition);
    animation: bounce 2s infinite;
}
.hero-scroll a:hover { color: var(--gold); }
.hero-scroll .scroll-text { font-weight: 600; }
.hero-scroll i { font-size: 16px; }

/* ---------- HERO JAR (right side) ---------- */
.hero-jar-wrap {
    position: relative;
    width: 380px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-jar-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.22) 0%, transparent 70%);
    border-radius: 50%;
    animation: jarPulse 4s ease-in-out infinite;
}

@keyframes jarPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%       { transform: scale(1.08); opacity: 1; }
}

.hero-jar-img {
    width: 300px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(201,168,76,0.3));
    animation: jarFloat 5s ease-in-out infinite;
}

@keyframes jarFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

.hero-jar-badge {
    position: absolute;
    background: rgba(28,28,28,0.85);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    white-space: nowrap;
    z-index: 3;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-jar-badge i { color: var(--gold); font-size: 13px; }

.hero-jar-badge-1 { top: 60px;  right: 10px; animation: badgeFloat 4s 0s   ease-in-out infinite; }
.hero-jar-badge-2 { top: 50%;   left: 0px;   animation: badgeFloat 4s 1.3s ease-in-out infinite; }
.hero-jar-badge-3 { bottom: 80px; right: 20px; animation: badgeFloat 4s 2.6s ease-in-out infinite; }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

/* ---------- TAGLINE ROTATOR ---------- */
.tagline-rotator {
    position: relative;
    height: 28px;
    overflow: hidden;
    margin-bottom: 20px;
}

.tagline-rotator .tagline {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-hindi);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.tagline-rotator .tagline.active {
    opacity: 1;
    transform: translateY(0);
}

.tagline-rotator .tagline.exit {
    opacity: 0;
    transform: translateY(-12px);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* =============================================
   USP SECTION
   ============================================= */
.usp-section {
    background: var(--charcoal);
    padding: 40px 0;
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.usp-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.usp-icon-wrap {
    width: 46px;
    height: 46px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
    transition: all var(--transition);
}
.usp-item:hover .usp-icon-wrap {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.08);
}

.usp-text h6 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}
.usp-text p {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin: 0;
}

.usp-divider {
    width: 1px;
    height: 40px;
    background: rgba(201,168,76,0.2);
    flex-shrink: 0;
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-section { background: var(--cream); }

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.product-card-premium {
    border: 2px solid var(--gold);
    box-shadow: 0 4px 24px rgba(201,168,76,0.18);
}

.product-ribbon {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--charcoal);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
}
.product-ribbon-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.product-img-wrap {
    position: relative;
    height: 280px;
    background: var(--cream-2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }

.product-img-wrap.img-placeholder::after {
    content: attr(data-label);
    font-size: 14px;
    color: var(--text-mid);
}

.img-placeholder-text {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(201,168,76,0.9);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: none;
}
.product-img-wrap.img-placeholder .img-placeholder-text { display: block; }

/* Size overlay on product image */
.product-size-overlay {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(28,28,28,0.82);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
}
.product-size-overlay-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold-light);
}

/* Discount badge */
.product-discount-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    background: #E74C3C;
    color: white;
    border-radius: 14px;
    padding: 8px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    box-shadow: 0 4px 14px rgba(231,76,60,0.35);
}
.discount-pct {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}
.discount-val {
    font-size: 18px;
    font-weight: 900;
    font-family: var(--font-serif);
}
.discount-note {
    font-size: 8px;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

/* Gold size badge variant */
.product-size-badge-gold {
    background: rgba(201,168,76,0.15);
    color: var(--gold-dark);
    border: 1px solid rgba(201,168,76,0.3);
}

.product-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.product-size-badge {
    display: inline-block;
    background: var(--cream-2);
    color: var(--text-mid);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.product-desc {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-mid);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}
.product-features li:last-child { border-bottom: none; }
.product-features li i {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.process-section .section-tag { color: var(--gold-light); }
.process-section .section-title { color: var(--white); }
.process-section .section-sub { color: rgba(255,255,255,0.55); }

.process-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
}

.process-step-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-connector {
    flex: 0 0 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    margin-top: 60px;
    opacity: 0.4;
}

.process-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(201,168,76,0.12);
    line-height: 1;
    margin-bottom: -10px;
}

.process-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: all var(--transition);
    width: 100%;
}
.process-step-item:hover .process-card {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-4px);
}

.process-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(201,168,76,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    margin: 0 auto 14px;
    transition: all var(--transition);
}
.process-step-item:hover .process-icon-wrap {
    background: var(--gold);
    color: var(--charcoal);
}

.process-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.process-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.process-cta-text {
    color: rgba(255,255,255,0.72) !important;
    font-size: 15px;
    font-family: var(--font-sans);
}
.process-cta-text strong {
    color: var(--white) !important;
    font-weight: 700;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-section { background: var(--cream); }

.benefits-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.benefits-main-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    background: var(--cream-2);
}

.benefits-badge-card {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    line-height: 1.2;
}
.benefits-badge-card .big-letter {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 900;
}
.benefits-badge-card .badge-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}

.benefits-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}
.benefits-float-card i { font-size: 18px; }

.benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    transition: all var(--transition);
    height: 100%;
}
.benefit-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-3px);
}

.benefit-card i {
    font-size: 22px;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}
.benefit-card h6 {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.benefit-card p {
    font-size: 13px;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.5;
}

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

.lead-para {
    font-size: 16px;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 36px;
    padding: 28px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
    flex-shrink: 0;
}

.about-img-grid {
    position: relative;
    padding-bottom: 80px;
    padding-right: 80px;
}

.about-img-main {
    border-radius: var(--radius);
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    background: var(--cream-2);
    min-height: 200px;
}

.about-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
    background: var(--gold);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section { background: var(--cream); }

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, var(--cream), var(--white));
    box-shadow: 0 4px 20px rgba(201,168,76,0.15);
}

.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }

.testimonial-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.author-info strong {
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--charcoal);
}
.author-info small {
    color: var(--text-light);
    font-size: 12px;
}

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

.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: none;
}

.faq-accordion .accordion-button {
    background: var(--white);
    color: var(--charcoal);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    padding: 20px 24px;
    box-shadow: none !important;
    border-radius: 12px !important;
    transition: all var(--transition);
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--cream), var(--cream-2));
    color: var(--gold-dark);
    border-radius: 12px 12px 0 0 !important;
}

.faq-accordion .accordion-button::after {
    filter: invert(70%) sepia(40%) saturate(400%) hue-rotate(10deg);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(55%) sepia(50%) saturate(600%) hue-rotate(10deg);
}

.faq-accordion .accordion-body {
    background: var(--cream);
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.7;
    padding: 18px 24px;
    border-top: 1px solid var(--border);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { background: var(--cream); }

.contact-info { display: flex; flex-direction: column; gap: 10px; }

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-mid);
}
.contact-info-item i { font-size: 18px; flex-shrink: 0; }
.contact-info-item a { color: var(--text-mid); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--gold); }

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h5 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--charcoal);
}

.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--cream);
    transition: all var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
    background: var(--white);
    outline: none;
}
.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.map-embed { overflow: hidden; border-radius: 12px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--charcoal-2);
    color: rgba(255,255,255,0.6);
    padding-top: 70px;
    font-size: 13px;
}

.footer-top { padding-bottom: 50px; }

.footer-brand .brand-name {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
}

.footer-desc {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    line-height: 1.7;
    max-width: 300px;
}

.social-links { display: flex; gap: 10px; }

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: all var(--transition);
}
.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}
.social-btn-wa:hover { background: #25D366; border-color: #25D366; }

.footer-heading {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-cert {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}
.footer-cert i { color: var(--gold); }

.footer-location {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin-bottom: 10px;
}
.footer-location i { color: var(--gold); }

.footer-wa-link {
    display: inline-flex;
    align-items: center;
    color: #25D366;
    font-size: 14px;
    font-weight: 600;
    transition: opacity var(--transition);
}
.footer-wa-link:hover { opacity: 0.8; }

.footer-hr {
    border-color: rgba(255,255,255,0.08);
    margin: 0;
}

.footer-bottom {
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
.footer-bottom p { margin: 0; }

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.float-wa-icon {
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: all var(--transition);
    animation: pulse-wa 2.5s infinite;
}

.float-wa:hover .float-wa-icon {
    background: #20ba58;
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.float-wa-tooltip {
    background: var(--charcoal);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transform: translateX(10px);
    transition: all var(--transition);
}
.float-wa:hover .float-wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-wa {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .section-pad { padding: 70px 0; }
    .process-connector { display: none; }
    .process-timeline { gap: 20px; }
    .process-step-item { min-width: calc(50% - 10px); }
    .usp-divider { display: none; }
    .benefits-badge-card { top: -10px; right: -10px; }
    .benefits-float-card { bottom: -10px; left: -10px; font-size: 12px; padding: 10px 14px; }
    #mainNav .navbar-collapse {
        background: var(--charcoal);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        border: 1px solid rgba(201,168,76,0.15);
    }
    .nav-cta { margin-left: 0; margin-top: 10px; display: block; text-align: center; }
    .about-img-grid { padding-bottom: 60px; padding-right: 60px; }
    .about-img-small { width: 150px; height: 150px; }
}

@media (max-width: 767px) {
    .section-pad { padding: 60px 0; }
    .hero-title { font-size: 2.4rem; }
    .usp-item { min-width: calc(50% - 10px); }
    .process-step-item { min-width: 100%; }
    .float-wa-tooltip { display: none; }
    .about-stats { flex-direction: column; gap: 20px; text-align: center; }
    .stat-divider { width: 60px; height: 1px; }
    .contact-form-card { padding: 24px; }
    .benefits-badge-card, .benefits-float-card { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; text-align: center; }
    .about-img-grid { padding-bottom: 0; padding-right: 0; }
    .about-img-small { display: none; }
}
