/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f7f4;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── TOP HEADER ─── */
.top-header {
    background: #1A3A5C;
    color: #ffffff;
    padding: 12px 0;
    font-size: 13px;
    font-weight: bold;
    border-bottom: 3px solid #E87722;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-info span {
    margin-right: 25px;
}

.header-tagline {
    font-size: 11px;
    letter-spacing: 1px;
    color: #f0c896;
}

/* ─── NAVBAR ─── */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(26, 58, 92, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    color: #555555;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #E87722;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 32, 53, 0.97) 0%, rgba(26, 58, 92, 0.93) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.6;
}

.hero-illustration svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.hero h2 {
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    color: #f0c896;
    font-weight: 400;
}

.hero h2 span {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #E87722;
}

.hero h1 {
    font-family: 'Georgia', serif;
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto 40px;
    opacity: 0.88;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #E87722;
    color: white;
}

.btn-primary:hover {
    background: #d06510;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232, 119, 34, 0.35);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebd58;
    transform: translateY(-2px);
}

/* ─── SERVICES ─── */
.services {
    padding: 85px 0;
    background: #f0ece4;
}

.services h2,
.target-market h2,
.about h2,
.contact h2 {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 34px;
    color: #1A3A5C;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666666;
    margin-bottom: 50px;
    font-size: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    background: #1A3A5C;
    border-radius: 6px;
    padding: 32px 25px;
    color: white;
    transition: all 0.3s ease;
    border-bottom: 3px solid #E87722;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232,119,34,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.service-card:hover {
    background: #0d2035;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(26, 58, 92, 0.25);
}

.service-icon {
    background: rgba(232, 119, 34, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(232, 119, 34, 0.35);
}

.service-card h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    color: #fff;
}

.service-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
}

/* ─── TARGET MARKET ─── */
.target-market {
    padding: 70px 0;
    background: white;
}

.section-divider {
    text-align: center;
    margin-bottom: 45px;
    border-bottom: 2px solid #E87722;
    line-height: 0.1em;
}

.section-divider span {
    background: white;
    padding: 0 22px;
    font-weight: bold;
    color: #1A3A5C;
    letter-spacing: 3px;
    font-size: 13px;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    text-align: center;
}

.market-card {
    padding: 32px 15px;
    background: #faf8f4;
    border: 1px solid #e0d8cc;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.market-card:hover {
    border-color: #E87722;
    background: #fff8f2;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(232, 119, 34, 0.12);
}

.market-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.market-card h4 {
    font-size: 14px;
    color: #1A3A5C;
    line-height: 1.5;
    font-weight: bold;
}

/* ─── ABOUT ─── */
.about {
    padding: 85px 0;
    background: #f0ece4;
}

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

.about-image {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    border-left: 5px solid #E87722;
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.2);
}

.about-image svg {
    width: 100%;
    height: 100%;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 5px;
    font-size: 28px;
}

.about-text h3 {
    font-family: 'Georgia', serif;
    font-size: 22px;
    color: #E87722;
    margin-bottom: 8px;
}

.credentials {
    font-size: 11px;
    font-weight: bold;
    color: #888;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.about-text p {
    font-size: 15px;
    color: #555555;
    margin-bottom: 18px;
    line-height: 1.75;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 2px solid #ddd;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: bold;
    color: #E87722;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
    margin-top: 4px;
    text-align: center;
}

/* ─── CONTACT ─── */
.contact {
    padding: 85px 0;
    background: white;
}

.contact-box {
    background: #f0ece4;
    border-radius: 8px;
    padding: 48px;
    border-top: 4px solid #E87722;
    max-width: 860px;
    margin: 0 auto;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 38px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 38px;
    text-align: center;
}

.contact-card-item h4 {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-link {
    font-family: 'Georgia', serif;
    font-size: 17px;
    color: #1A3A5C;
    text-decoration: none;
    font-weight: bold;
}

.highlight-link:hover {
    color: #E87722;
    text-decoration: underline;
}

.whatsapp-action-zone {
    text-align: center;
}

.whatsapp-action-zone h3 {
    font-family: 'Georgia', serif;
    font-size: 21px;
    color: #1A3A5C;
    margin-bottom: 10px;
}

.whatsapp-action-zone p {
    color: #666;
    margin-bottom: 26px;
    font-size: 14px;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.25);
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #1ebd58;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

/* ─── FOOTER ─── */
.footer {
    background: #0d2035;
    color: white;
    padding: 42px 0 25px;
    border-top: 4px solid #E87722;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 22px;
    margin-bottom: 22px;
}

.footer-logo-container {
    display: inline-block;
}

.footer-slogan {
    font-size: 14px;
    letter-spacing: 1px;
    color: #aaa;
}

.footer-slogan span {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #E87722;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #667;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .top-header .container,
    .navbar .container,
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        gap: 14px;
        margin-top: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 280px;
    }

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

    .about-stats {
        justify-content: center;
    }

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

    .contact-box {
        padding: 28px 18px;
    }

    .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
    }
}
