:root {
    --navy: #0d3b52;
    --navy-light: #1a4d63;
    --navy-dark: #0a2a3a;
    --gold: #d4af37;
    --gold-light: #f4b860;
    --white: #ffffff;
    --text: #1a1a1a;
    --muted: #666666;
    --light-bg: #f8fafb;
    --border: #e0e0e0;
    --shadow: 0 15px 40px rgba(13, 59, 82, 0.15);
    --shadow-sm: 0 5px 15px rgba(13, 59, 82, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.3px !important;
    border: none !important;
}

.btn-primary {
    background: var(--gold) !important;
    color: var(--navy) !important;
}

.btn-primary:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm) !important;
}

.btn-outline-gold {
    color: var(--gold) !important;
    border: 2px solid var(--gold) !important;
    background: transparent !important;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white) !important;
    color: var(--navy) !important;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm) !important;
}

/* ==================== HEADER ==================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

header .navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.navbar-brand img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 50%;
}

.navbar-brand-text h1 {
    font-size: 1.1rem;
    line-height: 1.1;
    margin: 0;
    color: var(--white);
}

.navbar-brand-text span {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar-nav {
    gap: 32px;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    box-shadow: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 600;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
    height: 420px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(13, 59, 82, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.hero-badge h3 {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-badge p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* ==================== TRUST STRIP ==================== */
.trust-strip {
    background: var(--navy-dark);
    padding: 22px 0;
    border-bottom: 2px solid var(--gold);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item span:first-child {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ==================== ABOUT ==================== */
.about-intro {
    padding: 80px 0;
    background: var(--light-bg);
}

.about-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.about-intro p {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight {
    color: var(--gold);
    font-weight: 700;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* ==================== INFO CARDS ==================== */
.info-card {
    background: var(--white);
    padding: 22px;
    border-radius: 16px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

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

.info-card h3 {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.info-card .detail {
    font-size: 0.88rem;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 400;
}

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

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}

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

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card-body {
    padding: 24px;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

/* ==================== PRODUCTS ==================== */
.products {
    padding: 80px 0;
    background: var(--light-bg);
}

.product-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 700;
}

.product-info p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(212, 175, 55, 0.12);
    color: var(--navy);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==================== FOUNDER ==================== */
.founder {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.founder-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.founder-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.founder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        0deg,
        rgba(10, 42, 58, 0.95) 0%,
        transparent 60%
    );
    padding: 30px 24px 24px;
}

.founder-overlay h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.founder-overlay span {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.founder-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 800;
}

.founder-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.founder-content p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
}

/* ==================== CONTACT STRIP ==================== */
.contact-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.contact-item h3 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== COMPLIANCE ==================== */
.compliance {
    padding: 80px 0;
}

.compliance-item {
    background: var(--light-bg);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    border-top: 4px solid var(--gold);
    transition: 0.3s;
    height: 100%;
}

.compliance-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.compliance-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.compliance-item h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.compliance-item p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ==================== GLOBAL ==================== */
.global {
    padding: 80px 0;
    background: var(--navy-dark);
    color: var(--white);
}

.global-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}

.global-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.global-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.8;
}

.regions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.region-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.region-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
}

.region-item span:first-child {
    font-size: 1.5rem;
}

.region-item strong {
    color: var(--gold);
    display: block;
    font-size: 0.9rem;
}

.region-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* ==================== CTA ==================== */
.cta {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

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

/* ==================== FOOTER ==================== */
footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 50px 0 30px;
    border-top: 3px solid var(--gold);
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 10px;
    line-height: 1.7;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .trust-items {
        justify-content: flex-start;
    }

    .founder-image img {
        height: 300px;
    }

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

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

    .cta h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
