.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 55px;   /* Adjust as needed */
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
}


/* ==========================================================================
   SUITABLE EDGE - GLOBAL STYLES
   ========================================================================== */

:root {
    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    --primary-dark: #091527;
    --primary-blue: #1E3A8A;
    --orange-main: #FF6B00;
    --orange-hover: #E56000;
    --orange-light: #FFF0E6;
    --orange-bg: #FFF8F3;
    --text-dark: #0F172A;
    --text-mid: #475569;
    --gray-light: #F8FAFC;
    --gray-border: #E2E8F0;
    --white: #FFFFFF;
    
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 32px rgba(9, 21, 39, 0.07);
    --shadow-lg: 0 24px 48px rgba(9, 21, 39, 0.12);
    --shadow-orange: 0 8px 24px rgba(255, 107, 0, 0.32);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: #FFFFFF;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, 
.logo-text, 
.btn-primary, 
.btn-secondary, 
.btn-nav,
.nav-links a {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

.orange { color: var(--orange-main); }
.text-orange { color: var(--orange-main); }
.text-center { text-align: center; }

/* ===== LOGO STYLES ===== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--orange-main);
    color: var(--white);
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-orange);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.42);
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--primary-dark);
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--gray-border);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--orange-main);
    color: var(--orange-main);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-nav {
    background: var(--orange-main);
    color: var(--white) !important;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-orange);
}

.btn-nav:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-nav) {
    color: var(--text-mid);
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-main);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:not(.btn-nav):hover,
.nav-links a.active {
    color: var(--orange-main);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 4px 8px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--gray-border);
        gap: 18px;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }
}




/* ===== FOOTER ===== */
footer {
    background: #060D19;
    color: var(--white);
    padding: 80px 0 32px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 55px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 900;
}

.footer-brand h3 span { 
    color: var(--orange-main); 
}

.footer-brand .tagline { 
    font-size: 0.72rem; 
    font-weight: 800; 
    font-family: var(--font-heading); 
    color: var(--orange-main); 
    letter-spacing: 2px; 
    margin-bottom: 20px; 
}

.footer-brand p { 
    color: rgba(255, 255, 255, 0.68); 
    font-size: 0.94rem; 
    max-width: 350px; 
    margin-bottom: 26px; 
}

.social-links { 
    display: flex; 
    gap: 12px; 
}

.social-links a {
    width: 42px; 
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover { 
    background: var(--orange-main); 
    transform: translateY(-3px);
}

.footer-links h4 { 
    font-size: 1.12rem; 
    font-weight: 800; 
    margin-bottom: 24px; 
    color: var(--white); 
}

.footer-links a { 
    display: block; 
    color: rgba(255, 255, 255, 0.68); 
    margin-bottom: 12px; 
    font-size: 0.94rem; 
}

.footer-links a:hover { 
    color: var(--orange-main); 
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links { 
    display: flex; 
    gap: 24px; 
}

.legal-links a { 
    color: rgba(255, 255, 255, 0.6); 
}

.legal-links a:hover { 
    color: var(--orange-main); 
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 50px 0 24px;
    }
    
    .footer-grid {
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .footer-links h4 {
        margin-bottom: 16px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .legal-links {
        gap: 8px 16px;
        font-size: 0.8rem;
    }
}