/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors inspired by logo */
    --navy-primary: #1a2850;
    --navy-dark: #0f1a3a;
    --navy-light: #2d3e6f;
    --silver: #c0c5ce;
    --silver-light: #e8eaed;
    --silver-dark: #a0a5ae;
    --accent-blue: #3a5ba0;
    --white: #ffffff;
    --black: #0a0f1f;
    
    /* Gradients */
    --gradient-navy: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--navy-light) 100%);
    --gradient-silver: linear-gradient(135deg, var(--silver-dark) 0%, var(--silver) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-display: 'Arial Black', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 40, 80, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: var(--navy-dark);
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 2px;
}

.logo img {
    height: 95px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--silver-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--silver);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--silver);
    transition: var(--transition);
    border-radius: 2px;
}


/* ========================================
   HERO SECTION WITH BOUNCER ANIMATIONS
   ======================================== */
/* ========================================
   HERO SECTION WITH BACKGROUND IMAGE
   ======================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/banner.jpeg');
    /* Alternative security/bouncer images you can use:
       url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070')
       url('https://images.unsplash.com/photo-1582139329536-e7284fece509?q=80&w=2080')
       url('https://images.unsplash.com/photo-1560415755-bd80d06eda60?q=80&w=2074')
    */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slowZoom 20s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Dark Transparent Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 31, 0.85) 0%,
        rgba(26, 40, 80, 0.75) 50%,
        rgba(15, 26, 58, 0.85) 100%
    );
    z-index: 1;
}

/* Alternative overlay options */
/* Solid dark overlay: */
/* background: rgba(10, 15, 31, 0.7); */

/* Gradient overlay from top to bottom: */
/* background: linear-gradient(180deg, rgba(10, 15, 31, 0.6) 0%, rgba(10, 15, 31, 0.9) 100%); */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
    padding: 0 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-stars {
    display: flex;
    gap: 15px;
    justify-content: center;
    font-size: 20px;
    color: var(--silver);
}

.badge-stars i {
    animation: starPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.badge-stars i:nth-child(2) {
    animation-delay: 0.3s;
    font-size: 24px;
}

.badge-stars i:nth-child(1),
.badge-stars i:nth-child(3) {
    font-size: 18px;
}

@keyframes starPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.7; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 1; 
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.tagline-line {
    width: 60px;
    height: 2px;
    background: var(--silver);
    animation: expandLine 1s ease-out 0.8s both;
    box-shadow: 0 0 10px rgba(192, 197, 206, 0.5);
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 60px; }
}

.hero-tagline p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--silver);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: var(--silver-light);
    animation: fadeInUp 1s ease-out 0.8s both;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--silver);
    color: var(--navy-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--silver);
    border: 2px solid var(--silver);
}

.btn-secondary:hover {
    background: var(--silver);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

/* Security Features */
.security-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.feature-item i {
    color: var(--silver);
    font-size: 18px;
    animation: checkBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.feature-item:nth-child(1) i {
    animation-delay: 0s;
}

.feature-item:nth-child(2) i {
    animation-delay: 0.3s;
}

.feature-item:nth-child(3) i {
    animation-delay: 0.6s;
}

@keyframes checkBounce {
    0%, 100% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.2);
    }
    20% {
        transform: scale(1);
    }
}

.feature-item span {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    50% { 
        transform: translateX(-50%) translateY(15px); 
    }
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--silver);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--silver);
    border-radius: 2px;
    animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
    0% { 
        opacity: 1; 
        top: 8px; 
    }
    100% { 
        opacity: 0; 
        top: 24px; 
    }
}

/* ========================================
   RESPONSIVE DESIGN - HERO SECTION
   ======================================== */
@media (max-width: 968px) {
    .hero-title {
        font-size: 44px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-background {
        background-position: center center;
    }
    
    .security-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .hero-tagline p {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .tagline-line {
        width: 40px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .security-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-background {
        background-position: 40% center;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(10, 15, 31, 0.88) 0%,
            rgba(26, 40, 80, 0.82) 50%,
            rgba(15, 26, 58, 0.88) 100%
        );
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 550px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .hero-tagline {
        gap: 15px;
    }
    
    .hero-tagline p {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .tagline-line {
        width: 30px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .btn {
        font-size: 13px;
        padding: 12px 24px;
        letter-spacing: 1px;
    }
    
    .feature-item {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .feature-item i {
        font-size: 14px;
    }
    
    .feature-item span {
        font-size: 12px;
    }
    
    .scroll-indicator {
        bottom: 25px;
    }
    
    .mouse {
        width: 24px;
        height: 40px;
    }
    
    .badge-stars {
        gap: 12px;
    }
    
    .badge-stars i {
        font-size: 16px;
    }
    
    .badge-stars i:nth-child(2) {
        font-size: 20px;
    }
    
    .hero-overlay {
        background: rgba(10, 15, 31, 0.85);
    }
}

/* Reduce animation motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-background {
        animation: none;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* For very high resolution displays */
@media (min-width: 1920px) {
    .hero-title {
        font-size: 64px;
    }
    
    .hero-description {
        font-size: 20px;
        max-width: 800px;
    }
}


/* Security Features */
.security-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--silver);
    font-size: 18px;
    animation: checkBounce 2s ease-in-out infinite;
}

.feature-item:nth-child(1) i {
    animation-delay: 0s;
}

.feature-item:nth-child(2) i {
    animation-delay: 0.3s;
}

.feature-item:nth-child(3) i {
    animation-delay: 0.6s;
}

@keyframes checkBounce {
    0%, 100% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.2);
    }
    20% {
        transform: scale(1);
    }
}

.feature-item span {
    color: var(--silver-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    50% { 
        transform: translateX(-50%) translateY(15px); 
    }
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--silver);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--silver);
    border-radius: 2px;
    animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
    0% { 
        opacity: 1; 
        top: 8px; 
    }
    100% { 
        opacity: 0; 
        top: 24px; 
    }
}

/* ========================================
   RESPONSIVE DESIGN - HERO SECTION
   ======================================== */
@media (max-width: 968px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .security-icon {
        width: 50px;
        height: 50px;
    }
    
    .security-icon i {
        font-size: 22px;
    }
    
    .security-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .hero-tagline p {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .tagline-line {
        width: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
    
    .security-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Hide some floating icons on mobile for performance */
    .icon-5,
    .icon-6 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
        letter-spacing: 1px;
    }
    
    .hero-tagline p {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .btn {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .security-icon {
        width: 40px;
        height: 40px;
    }
    
    .security-icon i {
        font-size: 18px;
    }
    
    /* Hide more icons on very small screens */
    .icon-3,
    .icon-4 {
        display: none;
    }
    
    .feature-item {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .feature-item i {
        font-size: 14px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .mouse {
        width: 24px;
        height: 40px;
    }
}

/* Reduce animation motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-header.light .section-subtitle {
    color: var(--silver);
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy-dark);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.section-header.light .section-title {
    color: var(--white);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-silver);
    margin: 0 auto;
    border-radius: 2px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-blue);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--navy-primary);
}

.card-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.card-icon i {
    font-size: 28px;
    color: var(--silver);
}

.about-card h3 {
    font-size: 24px;
    color: var(--navy-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.about-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--navy-light);
}

/* ========================================
   STATISTICS SECTION
   ======================================== */
.stats {
    padding: 100px 0;
    background: var(--gradient-navy);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(255, 255, 255, 0.02) 100px,
        rgba(255, 255, 255, 0.02) 200px
    );
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(58, 91, 160, 0.2) 0%, transparent 70%);
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(192, 197, 206, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-icon i {
    font-size: 35px;
    color: var(--silver);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.stat-number::after {
    content: '+';
    color: var(--silver);
}

.stat-label {
    font-size: 18px;
    color: var(--silver-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--silver-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--accent-blue);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--navy-primary);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.service-icon i {
    font-size: 32px;
    color: var(--silver);
}

.service-card h3 {
    font-size: 24px;
    color: var(--navy-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--navy-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0;
    color: var(--navy-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features i {
    color: var(--accent-blue);
    font-size: 14px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--gradient-navy);
    padding: 30px;
    border-radius: 15px;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 24px;
    color: var(--silver);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--silver-light);
}

.info-card a {
    color: var(--silver-light);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 45px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--silver-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid var(--silver-light);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--white);
    color: var(--navy-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(58, 91, 160, 0.1);
}

.form-group i {
    position: absolute;
    right: 20px;
    top: 18px;
    color: var(--accent-blue);
    font-size: 18px;
}

.form-group textarea + i {
    top: 20px;
}

.contact-form button {
    width: 100%;
    background: var(--gradient-navy);
    color: var(--silver);
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--navy-dark);
    color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gradient-navy);
    color: var(--silver-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo img {
    height: 102px;
    width: 105px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo h3 {
    font-size: 20px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--silver);
    font-weight: 600;
    letter-spacing: 2px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--silver-light);
    text-decoration: none;
    line-height: 2.2;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--silver);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--silver);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 73px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 73px);
        background: var(--navy-dark);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .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(7px, -7px);
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-tagline p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 42px;
    }
}
