* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, Arial, sans-serif;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

p {
    text-align: justify;
}


/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(11, 60, 93, 0.05);
    transition: box-shadow 0.3s ease;
}

.site-header:hover {
    box-shadow: 0 4px 16px rgba(11, 60, 93, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: auto;
    height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

/* LOGO */
.logo {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    background: linear-gradient(135deg, #0b3c5d 0%, #0d5a8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* DESKTOP NAV */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #334155;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

/* HOVER EFFECT */
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0b3c5d, #0d5a8f);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover {
    color: #0b3c5d;
}

.main-nav a:hover::after {
    width: 100%;
}

/* MEGA MENU */
.has-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 42px;
    left: -20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 20px;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
    box-shadow: 0 12px 32px rgba(11, 60, 93, 0.12);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.has-mega:hover .mega-menu {
    display: flex;
}

.mega-menu a {
    font-size: 14px;
    color: #1f2937;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mega-menu a:hover {
    background: rgba(11, 60, 93, 0.08);
    color: #0b3c5d;
    padding-left: 16px;
}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #475569;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.social-icon i {
    font-size: 14px;
}

.social-icon:hover {
    color: #0b3c5d;
    background: rgba(11, 60, 93, 0.08);
    transform: scale(1.15);
}

/* CONTACT BUTTON */
.contact-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #0b3c5d 0%, #0d5a8f 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(11, 60, 93, 0.15);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 60, 93, 0.25);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: #111827;
    border-radius: 2px;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    border-top: 2px solid #e5e7eb;
    backdrop-filter: blur(10px);
    animation: slideDownMobile 0.3s ease;
}

@keyframes slideDownMobile {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu a {
    padding: 14px 20px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(11, 60, 93, 0.06);
    color: #0b3c5d;
    padding-left: 28px;
}

/* MOBILE SERVICES */
.mobile-services-title,
.mobile-industries-title {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.mobile-services-title:hover,
.mobile-industries-title:hover {
    background: rgba(11, 60, 93, 0.04);
    color: #0b3c5d;
}

/* ACTIVE MOBILE */
.mobile-menu.active {
    display: flex;
}

/* MOBILE MEGA MENU */
.mobile-mega {
    display: none;
    background: #f9fafb;
    padding: 8px 0 12px;
}

.mobile-mega.open {
    display: block;
}

/* MOBILE MEGA MENU ITEMS */
.mobile-mega a {
    display: block;
    padding: 12px 20px 12px 42px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-mega a:hover {
    background: linear-gradient(90deg, rgba(11, 60, 93, 0.08) 0%, transparent 100%);
    border-left: 3px solid #0b3c5d;
    padding-left: 48px;
    color: #0b3c5d;
}

.mobile-mega {
    position: relative;
}

.mobile-mega::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #e5e7eb;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

/* FOOTER BASE */
.site-footer {
    background: #071a2f;
    color: #cbd5e1;
    padding: 36px 20px 14px; /* reduced top & bottom */
}

/* GRID */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 40px; /* reduced column gap */
}

/* LEFT */
.footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.brand-desc,
.brand-authority {
    font-size: 11px;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 8px;
    max-width: 480px;
    color: #cbd5e1;
}

/* FOOTER SOCIAL LINKS */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3) 0%, rgba(11, 60, 93, 0.2) 100%);
    color: #38bdf8;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.3);
}

/* CENTER & RIGHT HEADINGS */
.footer-links h4,
.footer-legal h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    color: #ffffff;
    text-transform: uppercase;
}

/* LINKS */
.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0b3c5d, #38bdf8);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #38bdf8;
}

.footer-links a:hover::after {
    width: 100%;
}

/* FOOTER EMAIL LINK */
.footer-email {
    color: #38bdf8;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-email::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0b3c5d, #0ea5e9);
    transition: width 0.3s ease;
}

.footer-email:hover {
    color: #0ea5e9;
}

.footer-email:hover::after {
    width: 100%;
}

/* LEGAL */
.footer-legal p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #cbd5e1;
}

.footer-legal strong {
    font-weight: 600;
    color: #ffffff;
}

/* BOTTOM */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 32px 0 0 0;
}

.footer-bottom {
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom-content p {
    margin: 0;
    text-align: left;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #38bdf8;
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #38bdf8;
}

.footer-bottom-links a:hover::before {
    width: 100%;
}

/* MOBILE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .brand-desc,
    .brand-authority {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-content p {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* RESPONSIVE - HEADER NAVIGATION */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .social {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }
}

/* ========================================
   DECISION CTA CARD
   ======================================== */

.decision-card {
    max-width: 820px;
    margin: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 56px 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(11, 60, 93, 0.1),
                0 0 0 1px rgba(11, 60, 93, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.decision-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 60, 93, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.decision-card:hover {
    box-shadow: 0 30px 90px rgba(11, 60, 93, 0.15),
                0 0 0 1px rgba(11, 60, 93, 0.08);
    transform: translateY(-4px);
}

.decision-card h2 {
    font-size: 32px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0b3c5d 0%, #0d5a8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.decision-copy {
    font-size: 16.8px;
    opacity: 0.85;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.decision-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #0b3c5d 0%, #38bdf8 50%, transparent 100%);
    margin: 20px auto 32px;
    border-radius: 2px;
}

.decision-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 26px;
    font-size: 12.5px;
    opacity: 0.75;
    margin-top: 18px;
}

.decision-proof span {
    position: relative;
    padding-left: 14px;
}

.decision-proof span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* RESPONSIVE - DECISION CARD */
@media (max-width: 900px) {
    .decision-card {
        padding: 38px 26px;
    }

    .decision-card h2 {
        font-size: 24px;
    }
}

/* ===================================== */
/* NEWSLETTER SECTION */
/* ===================================== */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 5px;
}

.newsletter-form input {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #38bdf8;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 12px 36px;
    background: #ffffff;
    color: #0b3c5d;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
}

.form-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .newsletter-section {
        padding: 50px 20px;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}
