/* ===== VARIABLES ===== */
:root {
    --navy: #0f1b2d;
    --navy-light: #162338;
    --navy-mid: #1a2d4a;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-dark: #a8872e;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f2f5;
    --gray-200: #e4e6ea;
    --gray-400: #8a8d91;
    --gray-600: #606770;
    --gray-800: #2d3436;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); color: var(--gray-800); line-height: 1.7; background: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15, 27, 45, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.3s;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; color: var(--gold); }
.logo-name { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.2; }
.logo-sub { display: block; font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.btn-nav { background: var(--gold) !important; color: var(--navy) !important; padding: 10px 24px !important; border-radius: 8px; font-weight: 600 !important; }
.btn-nav:hover { background: var(--gold-light) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 8px;
    font-weight: 600; font-size: 15px; transition: all 0.3s; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline { border: 2px solid rgba(255,255,255,0.4); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; text-align: center; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1e3a5f 100%);
    padding: 120px 0 80px;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: 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-content { position: relative; max-width: 720px; }
.hero-label {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: rgba(201, 168, 76, 0.15); color: var(--gold);
    font-size: 13px; font-weight: 600; letter-spacing: 1px; margin-bottom: 24px;
}
.hero h1 { font-family: var(--font-display); font-size: 52px; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.gold { color: var(--gold); }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 560px; }
.hero-btns { display: flex; gap: 16px; margin-bottom: 60px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; }
.stat-num { display: block; font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--gray-50); }
.section-label {
    display: inline-block; font-size: 13px; font-weight: 600; color: var(--gold);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-family: var(--font-display); font-size: 38px; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.section-desc { font-size: 16px; color: var(--gray-600); max-width: 600px; margin-bottom: 48px; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--white); border-radius: var(--radius); padding: 32px;
    box-shadow: var(--shadow); border: 1px solid var(--gray-200);
    transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin-bottom: 16px; }
.service-card ul { margin-bottom: 20px; }
.service-card li { font-size: 14px; color: var(--gray-600); padding: 4px 0; padding-left: 16px; position: relative; }
.service-card li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.service-link { font-size: 14px; font-weight: 600; color: var(--gold-dark); }
.service-link:hover { color: var(--gold); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.about-text p { color: var(--gray-600); margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.value { display: flex; gap: 12px; }
.value-icon { width: 28px; height: 28px; background: rgba(201,168,76,0.15); color: var(--gold-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.value strong { font-size: 14px; color: var(--navy); }
.value p { font-size: 13px; color: var(--gray-600); margin: 0; }
.about-cta-box {
    background: var(--navy); border-radius: var(--radius); padding: 40px; text-align: center;
    position: sticky; top: 100px;
}
.about-cta-box h3 { font-family: var(--font-display); font-size: 24px; color: var(--white); margin-bottom: 16px; }
.gold-big { color: var(--gold); font-size: 32px; }
.about-cta-box p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 24px; }
.small-text { font-size: 12px; color: var(--gray-400); margin-top: 12px; }
.small-text a { color: var(--gold); text-decoration: underline; }

/* ===== STEPS ===== */
.steps-grid { display: flex; align-items: flex-start; gap: 16px; }
.step {
    flex: 1; text-align: center; padding: 32px 20px;
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
}
.step-num { font-family: var(--font-display); font-size: 42px; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.step h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--gray-600); }
.step-arrow { font-size: 24px; color: var(--gold); margin-top: 48px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
    background: var(--white); border-radius: var(--radius); padding: 32px;
    box-shadow: var(--shadow); border-left: 3px solid var(--gold);
}
.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p { font-size: 15px; color: var(--gray-600); font-style: italic; margin-bottom: 20px; }
.testimonial-author strong { display: block; color: var(--navy); font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--gray-400); }

/* ===== BLOG PREVIEW ===== */
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
    background: var(--white); border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow); border: 1px solid var(--gray-200);
    transition: all 0.3s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-category {
    display: inline-block; padding: 3px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 600; color: white; margin-bottom: 14px; align-self: flex-start;
}
.blog-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-card p { font-size: 14px; color: var(--gray-600); flex: 1; margin-bottom: 16px; }
.blog-card .blog-read-more { font-size: 13px; font-weight: 600; color: var(--gold-dark); }
.blog-card .blog-read-more:hover { color: var(--gold); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon { font-size: 24px; width: 48px; height: 48px; background: rgba(201,168,76,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--gray-600); margin: 0; }
.contact-socials { margin-top: 32px; display: flex; gap: 12px; }
.social-link { padding: 8px 20px; border: 1px solid var(--gray-200); border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--navy); transition: all 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.contact-form-box { background: var(--gray-50); border-radius: var(--radius); padding: 36px; }
.contact-form-box h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 24px; }
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--gray-200); border-radius: 8px;
    font-family: var(--font-body); font-size: 14px; margin-bottom: 16px;
    background: var(--white); color: var(--gray-800); transition: border-color 0.2s;
}
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus { outline: none; border-color: var(--gold); }
.contact-form-box textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 60px 0 0; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { font-size: 24px; }
.footer-logo .logo-name { font-size: 18px; color: var(--white); }
.footer p { font-size: 14px; line-height: 1.7; }
.footer h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }
.footer ul li { margin-bottom: 8px; font-size: 14px; }
.footer ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; font-size: 13px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 60px; height: 60px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: all 0.3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero h1 { font-size: 36px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-cta-box { position: static; }
    .steps-grid { flex-wrap: wrap; }
    .step-arrow { display: none; }
    .step { min-width: calc(50% - 8px); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 72px; left: 0; right: 0; background: var(--navy);
        padding: 24px; gap: 16px; border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero h1 { font-size: 30px; }
    .hero-stats { gap: 24px; }
    .stat-num { font-size: 28px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-preview-grid { grid-template-columns: 1fr; }
    .step { min-width: 100%; }
    .about-values { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .btn { text-align: center; }
}
