/* ===========================================================
   Classic Care – Authorised Faber Service Centre
   Premium UI Stylesheet
   =========================================================== */

:root {
    --green-900: #062018;
    --green-800: #0a2c22;
    --green-700: #0e3b2e;
    --green-600: #14513e;
    --green-500: #1a6b51;
    --green-400: #2d8a6a;
    --gold: #d4af37;
    --gold-light: #f1d272;
    --gold-soft: rgba(212, 175, 55, 0.15);
    --black: #0c0c0c;
    --dark: #1a1a1a;
    --white: #ffffff;
    --gray-100: #f7f8f8;
    --gray-200: #e9ecef;
    --gray-500: #6c757d;
    --gray-700: #2b2b2b;

    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 10px 35px rgba(212, 175, 55, 0.35);

    --radius: 14px;
    --radius-lg: 20px;

    --font-head: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Poppins', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: #333;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--green-900);
}

a { text-decoration: none; transition: all 0.3s ease; }

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

.text-gold { color: var(--gold) !important; }

.section-padding {
    padding: 110px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 18px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    margin-bottom: 18px;
    background: var(--gold-soft);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
    color: var(--green-900);
}

.section-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
}

/* ===========================================================
   Preloader
   =========================================================== */
#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.fade-out { opacity: 0; visibility: hidden; }

.loader-wrap {
    text-align: center;
    color: var(--white);
}
.loader-ring {
    width: 70px;
    height: 70px;
    border: 4px solid rgba(255,255,255,0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 0.9s linear infinite;
}
.loader-brand {
    font-family: var(--font-head);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.loader-logo-faber {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}
.loader-logo-cc {
    height: 60px;
    width: auto;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 10px;
}
.loader-cc {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

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

/* ===========================================================
   Top Bar
   =========================================================== */
.top-bar {
    background: var(--green-900);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.top-bar a { color: rgba(255,255,255,0.85); margin-left: 16px; }
.top-bar a:hover { color: var(--gold); }
.top-bar .divider { margin: 0 12px; opacity: 0.4; }
.top-bar .tb-label { color: var(--gold); font-weight: 600; }
.top-bar .container > div { white-space: nowrap; }
.top-bar .top-bar-right a { margin-left: 10px; }
@media (max-width: 1300px) {
    .top-bar { font-size: 0.78rem; }
    .top-bar .tb-mail { display: none; }
}

/* ===========================================================
   Navbar
   =========================================================== */
.custom-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 14px 0;
    transition: all 0.4s ease;
    top: 42px; /* below top bar */
}
.custom-navbar.scrolled {
    top: 0;
    padding: 10px 0;
    background: rgba(14, 59, 46, 0.97);
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
@media (max-width: 991.98px) {
    .custom-navbar { top: 0; }
}

.brand-logo { display: flex; flex-direction: column; line-height: 1.05; }
.brand-cc {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--green-900);
    letter-spacing: 0.5px;
}
.brand-dot { color: var(--gold); }
.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-top: 2px;
}
.brand-sub strong { color: var(--gold); letter-spacing: 3px; }

/* Navbar logo images */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
}
.nav-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}
.nav-logo-faber { height: 30px; }
.nav-logo-cc { height: 46px; }
.nav-logo-divider {
    display: inline-block;
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.7;
}
.custom-navbar.scrolled .nav-logo-faber {
    filter: brightness(0) invert(1);
}
.custom-navbar.scrolled .nav-logo-cc {
    background: var(--white);
    padding: 4px 8px;
    border-radius: 8px;
}

.custom-navbar.scrolled .brand-cc,
.custom-navbar.scrolled .nav-link {
    color: var(--white);
}
.custom-navbar.scrolled .brand-sub { color: rgba(255,255,255,0.7); }

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--green-900);
    margin: 0 6px;
    padding: 8px 12px !important;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    width: 0; height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
.navbar-nav .nav-link:hover { color: var(--gold); }
.custom-navbar.scrolled .nav-link:hover { color: var(--gold); }

.navbar-toggler {
    border: none; padding: 6px 10px; outline: none !important;
    box-shadow: none !important;
}
.toggler-bar {
    display: block; width: 26px; height: 2px;
    background: var(--green-900); margin: 5px 0;
    transition: all 0.3s ease;
}
.custom-navbar.scrolled .toggler-bar { background: var(--white); }

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.4s cubic-bezier(.2,.7,.2,1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn-lg { padding: 14px 32px; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-900);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(212,175,55,0.5);
    color: var(--green-900);
}

.btn-gold-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--green-900);
    transform: translateY(-2px);
}

.btn-dark-green {
    background: var(--green-700);
    color: var(--white);
    border: 2px solid var(--green-700);
}
.btn-dark-green:hover {
    background: var(--green-900);
    border-color: var(--green-900);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--green-900);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
}
.btn-whatsapp:hover { background: #128C7E; border-color: #128C7E; color: var(--white); transform: translateY(-2px); }

/* Glow effect */
.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.6s ease;
}
.btn-glow:hover::before { left: 100%; }

/* ===========================================================
   HERO SECTION
   =========================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 30%, rgba(212,175,55,0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(45,138,106,0.25), transparent 50%),
        linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 60%, var(--black) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 160px 0 100px;
}

.hero-particles {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(212,175,55,0.5), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 80% 20%, rgba(212,175,55,0.4), transparent),
        radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 90% 50%, rgba(212,175,55,0.3), transparent);
    animation: drift 20s linear infinite;
}
@keyframes drift {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(6,32,24,0.6) 100%);
    z-index: 0;
}

.hero-inner { position: relative; z-index: 2; }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge {
    display: inline-flex; align-items: center;
    padding: 6px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--gold-light);
    backdrop-filter: blur(8px);
    letter-spacing: 1px;
}

.hero-logos { gap: 18px; }
.logo-block {
    padding: 14px 22px;
    border-radius: 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.logo-block img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}
.logo-block.faber-logo {
    background: var(--white);
    border: 2px solid var(--gold);
}
.logo-block.faber-logo img { height: 36px; }
.logo-block.cc-logo {
    background: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.logo-block.cc-logo img { height: 50px; }
.logo-x {
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 700;
}
.hero-auth-tag {
    display: inline-block;
    margin-left: 6px;
    padding: 6px 14px;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 18px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 580px;
}

/* Glass cards */
.hero-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px 0;
}
.glass-card {
    display: flex; align-items: center; gap: 16px;
    padding: 22px 26px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: var(--white);
    transition: transform 0.4s ease;
}
.glass-card:hover { transform: translateY(-5px) scale(1.02); border-color: var(--gold); }
.gc-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-900);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}
.gc-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1;
}
.glass-card p {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.5px;
}

.float-1 { animation: floaty 6s ease-in-out infinite; }
.float-2 { animation: floaty 7s ease-in-out infinite 1s; margin-left: 30px; }
.float-3 { animation: floaty 8s ease-in-out infinite 2s; }

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

/* Scroll down */
.scroll-down {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 44px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    z-index: 2;
}
.scroll-down span {
    display: block;
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    margin: 6px auto 0;
    animation: scrolldown 1.6s infinite;
}
@keyframes scrolldown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(18px); opacity: 0; }
}

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

.about-image-wrap {
    position: relative;
    padding: 30px;
}
.about-image-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 8rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.about-image-main::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(212,175,55,0.2), transparent 40%),
        repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,0.03) 20px 22px);
}
.about-badge {
    position: absolute;
    bottom: 0; right: 0;
    background: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--gold);
}
.ab-num {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-900);
}
.ab-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
}
.about-shape-1, .about-shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}
.about-shape-1 {
    top: 0; left: 0;
    width: 120px; height: 120px;
    background: var(--gold-soft);
}
.about-shape-2 {
    bottom: 40px; left: -10px;
    width: 80px; height: 80px;
    background: rgba(45,138,106,0.15);
}

.stat-box {
    text-align: center;
    padding: 18px 10px;
    background: var(--gray-100);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.stat-box:hover {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}
.stat-box h3 {
    font-size: 1.8rem;
    color: var(--green-700);
    margin-bottom: 4px;
    font-weight: 800;
}
.stat-box h3 small { font-size: 0.9rem; color: var(--gold); }
.stat-box span { font-size: 0.78rem; color: var(--gray-500); letter-spacing: 1px; }

/* ===========================================================
   SERVICES SECTION
   =========================================================== */
.services-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, #fff 100%);
    position: relative;
}

.bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle, rgba(14,59,46,0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.5;
    pointer-events: none;
}
.bg-pattern.light {
    background-image:
        radial-gradient(circle, rgba(212,175,55,0.08) 1px, transparent 1px);
}

.services-section .container { position: relative; z-index: 1; }

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(.2,.7,.2,1);
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-700), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }

.sc-icon {
    width: 80px; height: 80px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 2rem;
    transition: all 0.5s ease;
    box-shadow: 0 10px 25px rgba(14,59,46,0.25);
}
.service-card:hover .sc-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-900);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--green-900);
}
.service-card p {
    color: var(--gray-500);
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 20px;
}
.sc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--green-700);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.sc-btn i { transition: transform 0.3s ease; }
.sc-btn:hover { color: var(--gold); }
.sc-btn:hover i { transform: translateX(5px); }

/* Special cards */
.special-card {
    text-align: center;
    padding: 30px 24px;
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    color: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    border: 1px solid rgba(212,175,55,0.2);
    height: 100%;
}
.special-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.special-card-link { display: block; text-decoration: none; }
.special-card-link:hover h5 { color: var(--gold); }
.special-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 14px;
}
.special-card h5 { color: var(--white); margin-bottom: 8px; }
.special-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* ===========================================================
   WHY CHOOSE US
   =========================================================== */
.why-section {
    background:
        linear-gradient(135deg, rgba(14,59,46,0.97), rgba(6,32,24,0.97)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d4af37' stroke-width='0.4' opacity='0.25'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z'/%3E%3C/g%3E%3C/svg%3E");
    color: var(--white);
}
.why-section .section-title { color: var(--white); }
.why-section .section-tag { color: var(--gold); }

.why-card {
    padding: 36px 28px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}
.why-card:hover::after { opacity: 1; }

.why-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--gold-soft);
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}
.why-card:hover .why-icon {
    background: var(--gold);
    color: var(--green-900);
    transform: scale(1.1);
}
.why-card h5 { color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
.why-card p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin: 0; position: relative; z-index: 1; }

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

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px; left: 8%; right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.process-step {
    position: relative;
    text-align: center;
    padding: 20px 12px;
    z-index: 1;
}
.ps-num {
    position: absolute;
    top: 0; right: 10px;
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(14,59,46,0.06);
    line-height: 1;
}
.ps-icon {
    width: 90px; height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-700);
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
}
.process-step:hover .ps-icon {
    background: var(--green-700);
    color: var(--gold);
    transform: scale(1.08) rotate(-5deg);
}
.process-step h5 { color: var(--green-900); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--gray-500); margin: 0; }

@media (max-width: 991.98px) {
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .process-timeline::before { display: none; }
}
@media (max-width: 575.98px) {
    .process-timeline { grid-template-columns: 1fr; }
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonial-section {
    background: linear-gradient(180deg, #fff 0%, var(--gray-100) 100%);
}

.testi-card {
    background: var(--white);
    padding: 34px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 10px; right: 28px;
    font-size: 5rem;
    line-height: 1;
    color: var(--gold-soft);
    font-family: Georgia, serif;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }

.stars { color: var(--gold); margin-bottom: 14px; }
.testi-card p {
    color: #444;
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.testi-user { display: flex; align-items: center; gap: 12px; }
.tu-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
}
.testi-user h6 { margin: 0; color: var(--green-900); font-size: 1rem; }
.testi-user span { font-size: 0.8rem; color: var(--gray-500); }

.custom-carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green-700) !important;
    color: var(--gold) !important;
    border: none;
    display: flex; align-items: center; justify-content: center;
    opacity: 1 !important;
    top: 50%; transform: translateY(-50%);
    transition: all 0.3s ease;
}
.custom-carousel-btn:hover { background: var(--gold) !important; color: var(--green-900) !important; }
.carousel-control-prev.custom-carousel-btn { left: -22px; }
.carousel-control-next.custom-carousel-btn { right: -22px; }
@media (max-width: 767.98px) {
    .carousel-control-prev.custom-carousel-btn { left: 5px; }
    .carousel-control-next.custom-carousel-btn { right: 5px; }
}

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

.areas-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: var(--gray-100);
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--green-900);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}
.area-pill i { color: var(--gold); }
.area-pill:hover {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.area-pill:hover i { color: var(--gold); }

.map-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.map-frame iframe { display: block; filter: saturate(0.95); }
.map-pulse {
    position: absolute;
    top: 50%; left: 50%;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(212,175,55,0.6);
    animation: pulse 2s infinite;
    pointer-events: none;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
    70% { box-shadow: 0 0 0 30px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.gi-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(212,175,55,0.5);
    font-size: 4rem;
    transition: transform 0.7s ease;
}
.gallery-item:hover .gi-img { transform: scale(1.15); }

.gi-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,32,24,0.92) 0%, transparent 60%);
    display: flex; align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-overlay span {
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.05rem;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gi-overlay span { transform: translateY(0); }

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

.custom-accordion .accordion-item {
    background: var(--gray-100);
    border: 1px solid transparent;
    border-radius: var(--radius) !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.custom-accordion .accordion-item:hover { border-color: var(--gold); }

.custom-accordion .accordion-button {
    background: transparent;
    color: var(--green-900);
    font-family: var(--font-head);
    font-weight: 600;
    padding: 20px 26px;
    box-shadow: none !important;
    border: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--green-700);
    color: var(--white);
}
.custom-accordion .accordion-button::after {
    background: var(--gold-soft);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    width: 32px; height: 32px;
}
.custom-accordion .accordion-body {
    padding: 22px 26px;
    color: #555;
    line-height: 1.75;
    background: var(--white);
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-section {
    background: linear-gradient(180deg, var(--gray-100), #fff);
    position: relative;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    color: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    height: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.contact-info-card::after {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
}
.contact-info-card h4 { color: var(--white); position: relative; }

.contact-line {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.contact-line:last-of-type { border-bottom: none; }
.cl-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gold-soft);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-line span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}
.contact-line a, .contact-line p {
    color: var(--white);
    font-weight: 500;
    margin: 0;
    display: block;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-line a:hover { color: var(--gold); }

.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; position: relative; }

.contact-form {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}
.contact-form .form-label {
    font-weight: 500;
    color: var(--green-900);
    font-size: 0.88rem;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.contact-form .form-control,
.contact-form .form-select {
    border: 1.5px solid #e3e3e3;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--gray-100);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--gold-soft);
}

.form-msg {
    text-align: center;
    font-weight: 500;
    margin-top: 8px;
    padding: 10px;
    border-radius: 8px;
}
.form-msg.success { color: #1a6b51; background: rgba(45,138,106,0.1); }
.form-msg.error { color: #b00020; background: rgba(176,0,32,0.08); }

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}
.map-embed iframe { display: block; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
    background:
        linear-gradient(180deg, var(--green-900), var(--black));
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.site-footer .brand-cc { color: var(--white); font-size: 1.7rem; }
.site-footer .brand-sub { color: rgba(255,255,255,0.5); }

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo-cc {
    height: 70px;
    width: auto;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 10px;
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.footer-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
}
.footer-auth span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.footer-logo-faber {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-text { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.7; }

.footer-title {
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-list a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}
.footer-list a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: 5px; flex-shrink: 0; }

.social-icons { display: flex; gap: 10px; margin-top: 18px; }
.social-icons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: var(--gold);
    color: var(--green-900);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-hr {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

/* ===========================================================
   FLOATING ELEMENTS
   =========================================================== */
.float-whatsapp {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 30px rgba(37,211,102,0.45);
    z-index: 999;
    transition: transform 0.3s ease;
}
.float-whatsapp:hover { transform: scale(1.1); color: var(--white); }
.fw-pulse {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: pulseWa 2s infinite;
}
@keyframes pulseWa {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

.back-to-top {
    position: fixed;
    bottom: 28px; left: 28px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--green-700);
    color: var(--gold);
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    cursor: pointer;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--green-900); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 991.98px) {
    .section-padding { padding: 80px 0; }
    .hero-section { padding: 130px 0 80px; }
    .hero-title { font-size: 2.2rem; }

    .navbar-collapse {
        background: var(--white);
        margin-top: 16px;
        padding: 16px 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
    }
    .custom-navbar.scrolled .navbar-collapse {
        background: var(--green-900);
    }
    .navbar-nav .nav-link { padding: 10px 0 !important; }
    .navbar-nav .nav-link::after { display: none; }
}

@media (max-width: 575.98px) {
    .section-padding { padding: 60px 0; }
    .hero-section { padding: 110px 0 60px; }
    .hero-cta .btn { width: 100%; }
    .hero-cards { padding: 0; }
    .float-2 { margin-left: 0; }
    .glass-card { padding: 18px; }
    .gc-num { font-size: 1.4rem; }

    .float-whatsapp { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 20px; }
    .back-to-top { bottom: 20px; left: 20px; width: 40px; height: 40px; }

    .contact-form, .contact-info-card { padding: 26px 22px; }
    .about-image-main { font-size: 5rem; }
    .about-badge { padding: 14px 18px; }
    .ab-num { font-size: 1.4rem; }
}
