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

/* Brand Colors for Carlo Cartage Ltd. - 2025 Edition */
:root {
    --brand-blue: #4A67E5;
    --brand-red: #FF5A5A;
    --dark-blue: #2C3E8D;
    --light-blue: #6B7FEA;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --background: #ffffff;
    --surface: #f8fafc;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brand-red);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - 2025 Modern Design */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('../images/hero/slide-1-shipping.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: var(--brand-blue);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(74, 103, 229, 0.05) 0%, 
        rgba(255, 90, 90, 0.05) 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    text-align: left;
    color: white;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    margin-left: 0;
    margin-right: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease 0.1s both;
}

.hero-content h1 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease 0.2s both;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    animation: slideInUp 1s ease 0.3s both;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--brand-red), #E54545);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 1s ease 0.4s both;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background: linear-gradient(135deg, #FF6B6B, var(--brand-red));
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: left;
    flex-wrap: wrap;
    align-items: center;
}

.cta-button-secondary {
    background: linear-gradient(135deg, var(--brand-blue), var(--dark-blue)) !important;
    gap: 0.5rem;
    display: inline-flex;
    align-items: center;
}

.cta-button-secondary:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--brand-blue)) !important;
}



/* Our Customers Section */
.customers {
    padding: 2.5rem 0;
    background: #ffffff;
    color: #333;
    position: relative;
    overflow: hidden;
}

.customers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(74, 103, 229, 0.02) 0%, rgba(255, 90, 90, 0.02) 50%, rgba(0, 0, 0, 0.01) 100%);
    z-index: 1;
}

.customers .container {
    position: relative;
    z-index: 2;
}

.customers-header {
    text-align: center;
    margin-bottom: 2rem;
}

.customers-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 103, 229, 0.1);
    border: 1px solid rgba(74, 103, 229, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.customers-badge i {
    color: var(--brand-blue);
}

.customers-logo-section {
    text-align: center;
    margin: 1rem 0;
}

.customers-ccl-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.35s both;
}

.customers-ccl-logo:hover {
    transform: scale(1.05);
}

.customers .section-title {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 0.75rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.customers .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    color: #666;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s both;
}

.customers-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 0;
}

.customer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease calc(0.3s + var(--delay, 0s)) both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    height: 100px;
}

.customer-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 103, 229, 0.03), transparent);
    transition: left 0.6s ease;
}

.customer-logo-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(74, 103, 229, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.customer-logo-item:hover::before {
    left: 100%;
}

.customer-logo {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) opacity(0.7);
    position: relative;
    z-index: 2;
}

.customer-logo-item:hover .customer-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.customers-cta {
    text-align: center;
    background: rgba(74, 103, 229, 0.05);
    border: 1px solid rgba(74, 103, 229, 0.1);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
    animation: fadeInUp 1s ease 0.8s both;
}

.customers-cta h3 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.customers-cta p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.customers-cta .cta-button {
    background: linear-gradient(135deg, var(--brand-blue), var(--dark-blue));
    color: white;
}

.customers-cta .cta-button:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
}

/* Responsive Design */
@media (max-width: 768px) {
    .customers {
        padding: 2rem 0;
    }
    
    .customers-header {
        margin-bottom: 1.5rem;
    }
    
    .customers-ccl-logo {
        height: 50px;
        max-width: 180px;
    }
    
    .customers-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .customer-logo-item {
        padding: 0.75rem;
        height: 80px;
    }
    
    .customer-logo {
        max-width: 130px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .customers-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .customer-logo-item {
        height: 70px;
        padding: 0.5rem;
    }
    
    .customer-logo {
        max-width: 100px;
        max-height: 45px;
    }
}

/* Services Section - Advanced 2025 Design */
.services {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: #3a3a3a;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 103, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 90, 90, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(107, 127, 234, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(26, 26, 46, 0.4) 50%, 
        rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.services-badge i {
    color: var(--brand-blue);
    font-size: 1rem;
}

.section-title {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: white;
    animation: fadeInUp 1s ease 0.3s both;
}

.section-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fadeInUp 1s ease calc(0.5s + var(--delay, 0s)) both;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.featured {
    grid-column: span 2;
    background: rgba(74, 103, 229, 0.05);
    border-color: rgba(74, 103, 229, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent);
    transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(74, 103, 229, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card-inner {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--brand-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.05) rotate(3deg);
    background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-badge {
    background: linear-gradient(135deg, var(--brand-red), #E54545);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.2;
}

.service-card p {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: auto;
    font-weight: 400;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature i {
    color: var(--brand-blue);
    font-size: 0.8rem;
}

.service-highlight {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    align-self: flex-start;
}

.services-cta {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
    animation: fadeInUp 1s ease 0.8s both;
}

.services-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.services-cta-text {
    text-align: left;
}

.services-cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.cta-image:hover {
    transform: scale(1.05);
}

.services-cta h3 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.services-cta p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.5;
}

/* Services Responsive Design */
@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }
    
    .services-header {
        margin-bottom: 2rem;
    }
    
    .services-badge {
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-card.featured {
        grid-column: span 1;
    }
    
    .service-card-inner {
        padding: 1.25rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }
    
    .service-icon {
        font-size: 1.75rem;
    }
    
    .service-features {
        align-items: center;
    }
    
    .services-cta {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
    }
    
    .services-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-cta-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 2.5rem 0;
    }
    
    .service-card-inner {
        padding: 1rem;
    }
    
    .services-cta {
        padding: 1.25rem 0.75rem;
    }
    
    .services-cta-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Services Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #3a3a3a;
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.about-logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.about-logo-image {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
    drop-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.about-logo-image:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 6px 16px rgba(255, 255, 255, 0.3));
}

/* Contact Section - Clean 2025 Design */
.contact {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: #3a3a3a;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(74, 103, 229, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 90, 90, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(13, 30, 45, 0.2) 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.contact-badge i {
    color: var(--brand-blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-info-item i {
    font-size: 1.1rem;
    color: var(--brand-blue);
    width: 20px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: white;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(74, 103, 229, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select option {
    background: #1a3a52;
    color: white;
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--brand-red), #E54545);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(255, 90, 90, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    margin-top: 0.5rem;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #FF6B6B, var(--brand-red));
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(255, 90, 90, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #333;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--brand-blue);
    font-family: 'Oswald', 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--brand-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(74, 103, 229, 0.1);
    border-radius: 50%;
    color: var(--brand-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 103, 229, 0.2);
}

.social-links a:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 103, 229, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        max-width: 200px;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--brand-red);
    }
    
    .nav-menu a::after {
        bottom: -3px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }
    
    .services {
        padding: 3rem 0;
    }
    
    .about-logo-image {
        height: 80px;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .service-card {
        padding: 1.25rem 1rem;
        margin: 0 0.25rem;
    }



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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .carousel-arrows {
        display: none;
    }

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

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}