@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700;900&display=swap');

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
    --primary: #0A1F44;
    --primary-dark: #071630;
    --primary-light: #1a3a6b;
    --gold: #C9A84C;
    --gold-light: #e2c46a;
    --white: #FFFFFF;
    --off-white: #F5F7FA;
    --light-gray: #EAEEF3;
    --text-dark: #1a1a2e;
    --text-medium: #5a6070;
    --text-light: #9098a9;
    --shadow: 0 4px 24px rgba(10, 31, 68, 0.10);
    --shadow-hover: 0 10px 36px rgba(10, 31, 68, 0.18);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-medium); line-height: 1.8; }

/* ===========================
   UTILITY
   =========================== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    margin-bottom: 14px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    text-align: center;
    color: var(--text-medium);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

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

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

/* ===========================
   TOP BAR
   =========================== */
.topbar {
    background: var(--primary-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar a {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.topbar a:hover { color: var(--gold); }
.topbar a i { color: var(--gold); font-size: 0.78rem; }

.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem;
}
.topbar-social a:hover { background: var(--gold); color: var(--primary); }

/* ===========================
   HEADER / NAV
   =========================== */
.header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(10, 31, 68, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(10, 31, 68, 0.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px; height: 44px;
    background: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.logo-text .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1.1;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
    background: var(--off-white);
}

.nav-menu > li > a.active {
    color: var(--gold);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    min-width: 230px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--gold);
    z-index: 200;
}

.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.875rem;
    color: var(--text-dark);
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown li a i {
    color: var(--gold);
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

.dropdown li a:hover {
    background: var(--off-white);
    color: var(--primary);
    padding-left: 18px;
}

.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.85rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #0A1F44 0%, #0d2855 60%, #1a3a6b 100%);
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 40%);
    z-index: 1;
}

.hero-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge i { font-size: 0.75rem; }

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.hero h1 span { color: var(--gold); }

.hero-desc {
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
}

.hero-trust-item i { color: var(--gold); }

.hero-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
}

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip {
    background: var(--gold);
    padding: 24px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 12px 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(10, 31, 68, 0.15);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.75;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===========================
   ABOUT PREVIEW
   =========================== */
.about-preview {
    padding: 90px 0;
    background: var(--white);
}

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

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.about-img-placeholder i {
    font-size: 5rem;
    color: rgba(201,168,76,0.4);
    display: block;
    margin-bottom: 12px;
}

.about-accent-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.about-accent-card .number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.about-accent-card .label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-tag { display: block; }

.about-text {
    margin: 20px 0 28px;
    font-size: 1.02rem;
}

.about-list {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.about-list li i { color: var(--gold); font-size: 0.85rem; }

/* ===========================
   SERVICES
   =========================== */
.services-section {
    padding: 90px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 68px; height: 68px;
    background: rgba(10, 31, 68, 0.05);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i { color: var(--gold); }

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.service-link:hover { gap: 10px; }

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-section {
    padding: 90px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.why-section .section-tag { background: rgba(201,168,76,0.15); }
.why-section .section-title { color: var(--white); }

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

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
    border-color: rgba(201,168,76,0.3);
}

.why-icon {
    width: 52px; height: 52px;
    background: rgba(201,168,76,0.12);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}

.why-icon i { font-size: 1.35rem; color: var(--gold); }

.why-card h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.why-card p {
    color: rgba(255,255,255,0.62);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* ===========================
   PROCESS
   =========================== */
.process-section {
    padding: 90px 0;
    background: var(--white);
}

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
    position: relative;
    z-index: 2;
}

.process-step h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
    padding: 90px 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: transparent;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i { color: var(--gold); font-size: 0.85rem; }

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-text::before { content: '"'; font-size: 1.5rem; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.testimonial-text::after { content: '"'; font-size: 1.5rem; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 0; vertical-align: -0.4em; margin-left: 2px; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

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

.cta-inner h2 {
    color: var(--primary);
    margin-bottom: 16px;
}

.cta-inner p {
    color: rgba(10,31,68,0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10,31,68,0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.75);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand .logo-text .tagline { opacity: 0.8; }

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin: 20px 0 24px;
}

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

.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer-social a:hover { background: var(--gold); color: var(--primary); border-color: var(--gold); }

.footer-col h5 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i { color: var(--gold); font-size: 0.72rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact-item span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-bottom {
    padding: 20px 0;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ===========================
   FLOATING WHATSAPP
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.whatsapp-tooltip {
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 40px; height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    border: none;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--primary); transform: translateY(-3px); }

/* ===========================
   PAGE HERO (INNER PAGES)
   =========================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.82rem;
}

.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.breadcrumb .current { color: var(--gold); }

.page-hero h1 {
    color: var(--white);
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 540px;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-story { padding: 90px 0; }

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-mission {
    padding: 80px 0;
    background: var(--off-white);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.vm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow);
}

.vm-card h3 {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vm-card h3 i { color: var(--gold); }

.values-section { padding: 80px 0; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.value-card:hover h4,
.value-card:hover p { color: var(--white); }

.value-icon {
    width: 60px; height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow);
}

.value-icon i { font-size: 1.35rem; color: var(--gold); }

.value-card h4 { margin-bottom: 8px; transition: var(--transition); }
.value-card p { font-size: 0.875rem; transition: var(--transition); }

.team-section { padding: 80px 0; background: var(--off-white); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.team-avatar {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex; align-items: center; justify-content: center;
}

.team-avatar-initial {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.team-info { padding: 24px; }
.team-info h4 { margin-bottom: 4px; }
.team-info .role { font-size: 0.8rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.team-info p { font-size: 0.85rem; }

/* ===========================
   SERVICES PAGE
   =========================== */
.services-page { padding: 80px 0; }

.service-category {
    margin-bottom: 64px;
    scroll-margin-top: 100px;
}

.service-cat-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.service-cat-icon {
    width: 64px; height: 64px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.service-cat-icon i { font-size: 1.6rem; color: var(--gold); }

.service-cat-header h2 { margin-bottom: 4px; }
.service-cat-header p { font-size: 0.95rem; }

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.service-item:hover {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.service-item-icon {
    width: 42px; height: 42px;
    background: rgba(201,168,76,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}

.service-item-icon i { color: var(--gold); font-size: 1rem; }

.service-item h4 { margin-bottom: 8px; font-size: 0.95rem; }
.service-item p { font-size: 0.85rem; color: var(--text-medium); }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-page { padding: 80px 0; }

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.contact-card-icon {
    width: 62px; height: 62px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i { color: var(--gold); font-size: 1.3rem; }

.contact-card h4 { margin-bottom: 10px; }
.contact-card p, .contact-card a {
    font-size: 0.9rem;
    color: var(--text-medium);
    display: block;
    line-height: 1.7;
}
.contact-card a:hover { color: var(--gold); }

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrap {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.9rem; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius);
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--gold);
    cursor: pointer;
}

.form-check label {
    font-size: 0.82rem;
    color: var(--text-medium);
    cursor: pointer;
    line-height: 1.5;
}

.form-check label a { color: var(--gold); font-weight: 700; }

.form-submit { width: 100%; justify-content: center; }

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 700;
    display: none;
}

.form-message.success {
    background: rgba(37,211,102,0.12);
    color: #1a7a3c;
    border: 1px solid rgba(37,211,102,0.3);
    display: block;
}

.form-message.error {
    background: rgba(220,53,69,0.1);
    color: #c0392b;
    border: 1px solid rgba(220,53,69,0.25);
    display: block;
}

.contact-info-wrap h3 { margin-bottom: 8px; }
.contact-info-wrap > p { font-size: 0.9rem; margin-bottom: 28px; }

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--light-gray);
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    display: block;
    filter: grayscale(0.2);
}

.whatsapp-cta-box {
    background: linear-gradient(135deg, #1a3a24 0%, #25D366 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.whatsapp-cta-box:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.whatsapp-cta-icon {
    font-size: 2.4rem;
    color: var(--white);
    flex-shrink: 0;
}

.whatsapp-cta-box h4 { color: var(--white); margin-bottom: 4px; }
.whatsapp-cta-box p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.whatsapp-cta-box a.btn {
    margin-top: 12px;
    background: var(--white);
    color: #1a7a3c;
    font-size: 0.85rem;
    padding: 10px 20px;
}

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

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===========================
   TOPBAR BOOK BUTTON
   =========================== */
.topbar-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--primary) !important;
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    white-space: nowrap;
}
.topbar-book-btn:hover {
    background: var(--gold-light);
    transform: none;
}
.topbar-book-btn i { color: var(--primary) !important; font-size: 0.75rem; }

/* ===========================
   CALENDLY SECTION
   =========================== */
.calendly-section {
    margin: 0 0 56px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--light-gray);
}

.calendly-section-header {
    text-align: center;
    margin-bottom: 28px;
}

.calendly-section-header .section-tag { margin-bottom: 12px; }
.calendly-section-header h3 { margin-bottom: 8px; }
.calendly-section-header p { font-size: 0.92rem; max-width: 480px; margin: 0 auto; }

.calendly-embed-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--light-gray);
    background: var(--white);
    min-height: 630px;
}

.calendly-placeholder {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 2px dashed var(--light-gray);
    padding: 40px;
    text-align: center;
}

.calendly-placeholder-icon {
    width: 72px; height: 72px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.calendly-placeholder-icon i { font-size: 1.8rem; color: var(--gold); }
.calendly-placeholder h4 { margin-bottom: 6px; }
.calendly-placeholder p { font-size: 0.875rem; max-width: 340px; }

.calendly-setup-note {
    margin-top: 16px;
    padding: 12px 18px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.calendly-setup-note i { color: var(--gold); flex-shrink: 0; }
.calendly-setup-note code {
    background: rgba(10,31,68,0.08);
    padding: 1px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.78rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .topbar-book-btn { display: none; }
    .calendly-section { padding: 24px 16px; }
    .calendly-embed-wrap { min-height: 500px; }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
    .topbar-left { display: none; }

    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 32px;
        gap: 0;
        box-shadow: -4px 0 30px rgba(10,31,68,0.15);
        transition: right 0.35s ease;
        overflow-y: auto;
    }

    .nav-menu.open { right: 0; }

    .nav-menu > li { width: 100%; }

    .nav-menu > li > a {
        padding: 14px 8px;
        border-radius: 0;
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--gold);
        border-radius: 0;
        padding: 0;
        display: none;
        min-width: 100%;
    }

    .dropdown.open { display: block; }

    .nav-cta { display: none; }

    .hero { min-height: 70vh; }
    .hero-actions { flex-direction: column; }
    .hero-trust { gap: 16px; }
    .hero-divider { display: none; }

    .about-grid,
    .about-story-grid,
    .contact-main { grid-template-columns: 1fr; gap: 36px; }

    .about-accent-card { right: 16px; }

    .services-grid,
    .why-grid,
    .process-steps,
    .values-grid,
    .team-grid,
    .vm-grid,
    .service-items-grid { grid-template-columns: 1fr; }

    .testimonials-grid { grid-template-columns: 1fr; }

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

    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .form-row { grid-template-columns: 1fr; }

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

    .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-buttons { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .whatsapp-float a { width: 50px; height: 50px; font-size: 1.45rem; }
}
