/* ===================================
   Modern CSS Variables & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Deep Blue to Teal Gradient */
    --primary-color: #0f4c75;
    --primary-light: #3282b8;
    --primary-dark: #0a3556;
    --secondary-color: #1b9aaa;
    --accent-color: #06ffa5;
    --accent-gradient: linear-gradient(135deg, #0f4c75 0%, #1b9aaa 50%, #06ffa5 100%);
    
    /* Neutral Colors */
    --dark-color: #0a192f;
    --text-dark: #112240;
    --text-light: #8892b0;
    --text-lighter: #ccd6f6;
    --bg-light: #f8f9fc;
    --bg-dark: #0a192f;
    --bg-card: #172a45;
    --border-color: #e2e8f0;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(15, 76, 117, 0.08);
    --shadow-md: 0 4px 12px rgba(15, 76, 117, 0.12);
    --shadow-lg: 0 8px 24px rgba(15, 76, 117, 0.16);
    --shadow-xl: 0 16px 48px rgba(15, 76, 117, 0.24);
    --shadow-glow: 0 0 40px rgba(6, 255, 165, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    --gradient-accent: linear-gradient(135deg, #1b9aaa 0%, #06ffa5 100%);
    --gradient-dark: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 25, 47, 0) 0%, rgba(10, 25, 47, 0.8) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: var(--accent-color);
    color: white;
}

::-moz-selection {
    background: var(--accent-color);
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Section Badges
   =================================== */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.section-badge:hover::before {
    width: 200px;
    height: 200px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Modern Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
    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.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--shadow-md), 0 0 20px rgba(6, 255, 165, 0.3);
    }
    50% {
        box-shadow: var(--shadow-xl), 0 0 40px rgba(6, 255, 165, 0.6);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover, .btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   Navigation - Modern Glass Effect
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled::after {
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-main {
    height: 35px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-icon {
    height: 32px;
    width: auto;
    max-width: 32px;
    object-fit: contain;
    display: none;
}

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

.nav-menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
    font-size: 0.9375rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    transition: width 0.3s ease;
}

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

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-nav-cta {
    padding: 12px 28px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section - Ultra Modern
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background: var(--gradient-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    opacity: 0.85;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(27, 154, 170, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6, 255, 165, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 16s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -100px) scale(0.8);
    opacity: 0.3;
    }
    75% {
        transform: translate(50px, -75px) scale(1.1);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 80px 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-badge svg {
    color: var(--accent-color);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 30px;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s backwards;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.title-accent {
    color: white;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-lighter);
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.stat-item-hero {
    text-align: center;
}

.stat-number-hero {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label-hero {
    font-size: 0.9375rem;
    color: var(--text-lighter);
    opacity: 0.8;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Trust Section - Modernized
   =================================== */
.trust-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.trust-banner {
    margin-bottom: 60px;
    text-align: center;
}

.trust-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.logo-scroll {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-placeholder {
    padding: 15px 30px;
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    box-shadow: var(--shadow-glow);
}

.trust-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===================================
   Services Section - Card with Images
   =================================== */
.services-overview {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(100px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(27, 154, 170, 0.2);
    border-color: var(--primary-light);
}

.service-card:hover::after {
    opacity: 0.03;
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.5;
}

.service-content {
    padding: 40px 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.service-link svg {
    transition: transform 0.3s ease;
}

/* ===================================
   Why Choose Us - With Image
   =================================== */
.why-choose-us {
    padding: 120px 0;
    background: white;
    overflow: hidden;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr 400px;
    gap: 60px;
    align-items: center;
}

.why-image {
    position: relative;
}

.why-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

.why-text h2 {
    font-size: 2.75rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.why-text .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefits-list li {
    margin-bottom: 28px;
    padding-left: 40px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.benefits-list strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-size: 1.125rem;
    font-weight: 600;
}

.benefits-list span {
    color: var(--text-light);
    line-height: 1.6;
}

.why-stats {
    align-self: stretch;
}

.stats-card {
    background: var(--gradient-primary);
    color: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-card h4 {
    font-size: 1.75rem;
    margin-bottom: 40px;
    color: white;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* ===================================
   Industries - Modern Grid
   =================================== */
.industries {
    padding: 120px 0;
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.industry-item {
    background: white;
    padding: 36px 30px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--dark-color);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.5s ease;
    opacity: 0.1;
}

.industry-item:hover::before {
    left: 0;
}

.industry-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

/* ===================================
   CTA Section - Gradient Background
   =================================== */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-accent);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: white;
}

.cta-content p {
    font-size: 1.375rem;
    margin-bottom: 50px;
    color: var(--text-lighter);
}

/* ===================================
   Footer - Modern Design
   =================================== */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
    opacity: 0.5;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 200px;
    background: radial-gradient(circle, rgba(27, 154, 170, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

/* Footer Animated Text Logo */
.footer-brand {
    margin-bottom: 24px;
}

.footer-logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: flex;
    gap: 4px;
}

.logo-letter {
    display: inline-block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo-letter:nth-child(1) { animation-delay: 0s; }
.logo-letter:nth-child(2) { animation-delay: 0.1s; }
.logo-letter:nth-child(3) { animation-delay: 0.2s; }
.logo-letter:nth-child(4) { animation-delay: 0.3s; }
.logo-letter:nth-child(5) { animation-delay: 0.4s; }
.logo-letter:nth-child(6) { animation-delay: 0.5s; }
.logo-letter:nth-child(7) { animation-delay: 0.6s; }
.logo-letter:nth-child(8) { animation-delay: 0.7s; }
.logo-letter:nth-child(9) { animation-delay: 0.8s; }

@keyframes letterFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.footer-logo-text:hover .logo-letter {
    animation-play-state: paused;
    transform: scale(1.1);
}

.footer-logo-text:hover .logo-letter:nth-child(odd) {
    background: linear-gradient(135deg, #06ffa5 0%, #1b9aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-text:hover .logo-letter:nth-child(even) {
    background: linear-gradient(135deg, #1b9aaa 0%, #0f4c75 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-domain {
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 16px;
    font-size: 1.0625rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-domain:hover {
    color: #06ffa5;
    letter-spacing: 1px;
    transform: translateX(3px);
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: white;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-col ul li a::before {
    content: '▸';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 12px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    left: 0;
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.footer-social a:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(6, 255, 165, 0.3);
}

.footer-social a:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social a svg {
    position: relative;
    z-index: 1;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: var(--gradient-dark);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-accent);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.12;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.18;
    }
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.page-header p {
    font-size: 1.375rem;
    color: var(--text-lighter);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.contact-form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.0625rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(15, 76, 117, 0.1);
    transform: translateY(-1px);
}

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

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    box-shadow: var(--shadow-glow);
}

.contact-info-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    word-break: break-word;
}

.contact-info-card a:hover {
    color: var(--accent-color);
}

.response-time {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 14px;
    background: rgba(27, 154, 170, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Office Locations */
.office-locations {
    padding: 100px 0;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.location-card {
    background: white;
    padding: 50px 36px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.location-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(27, 154, 170, 0.03) 0%, transparent 100%);
    transition: top 0.5s ease;
}

.location-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card:hover::after {
    top: 0;
}

.location-flag {
    font-size: 3.5rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    display: inline-block;
    transition: transform 0.3s ease;
}

.location-card:hover .location-flag {
    transform: scale(1.1) rotate(5deg);
}

.location-card h3 {
    font-size: 1.625rem;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.location-address {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.location-contact {
    margin-bottom: 20px;
}

.location-contact p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.9375rem;
}

.location-contact a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-contact a:hover {
    color: var(--secondary-color);
}

.location-hours {
    color: var(--text-light);
    font-size: 0.9375rem;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Map Section */
.map-section {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.map-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: white;
}

.map-overlay p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   About Page Styles
   =================================== */
.company-overview {
    padding: 100px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
}

.overview-text h2 {
    font-size: 2.75rem;
    margin-bottom: 28px;
}

.overview-text .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.7;
}

.overview-text p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-box {
    background: var(--bg-light);
    padding: 40px 34px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.stat-box h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.stat-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
}

.value-card {
    background: white;
    padding: 50px 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: white;
    box-shadow: var(--shadow-glow);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-photo {
    width: 160px;
    height: 160px;
    background: var(--gradient-accent);
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.member-photo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1.0625rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.7;
}

/* Global Presence */
.global-presence {
    padding: 100px 0;
    background: var(--bg-light);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
}

.office-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.office-card h3 {
    font-size: 1.625rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.office-address {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.office-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Services Detail Page */
.services-detail {
    padding: 100px 0;
    background: white;
}

.service-detail-card {
    margin-bottom: 70px;
    padding: 60px;
    background: var(--bg-light);
    border-radius: 24px;
    border-left: 6px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-detail-content {
    max-width: 950px;
}

.service-detail-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-accent);
    border-radius: 18px;
    display: flex;
        align-items: center;
        justify-content: center;
    margin-bottom: 32px;
    color: white;
    box-shadow: var(--shadow-glow);
}

.service-detail-card h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.service-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.service-features h3 {
    font-size: 1.625rem;
    margin-bottom: 28px;
    color: var(--dark-color);
}

.service-features ul {
    list-style: none;
}

.service-features li {
    margin-bottom: 24px;
    padding-left: 36px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.service-features li::before {
    content: '▸';
    position: absolute;
        left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.service-features strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.process-step {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
}

.process-step h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: 120px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--dark-color);
    font-size: 1.125rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 30px 36px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 600;
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 36px 30px 36px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .why-content {
        grid-template-columns: 1fr;
    }

    .why-stats {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-grid,
    .overview-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .logo-main {
        height: 30px;
        max-width: 150px;
    }
    
    .logo-icon {
        height: 28px;
        max-width: 28px;
    }
    
    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 24px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 24px;
        height: calc(100vh - 78px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

@media (max-width: 640px) {
    .hero {
        min-height: 80vh;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .logo-main {
        height: 26px;
        max-width: 130px;
    }
    
    .logo-icon {
        height: 24px;
        max-width: 24px;
    }
    
    .nav-container {
        padding: 14px 20px;
    }

    .services-grid,
    .industries-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo-text {
        font-size: 2rem;
        letter-spacing: 1.5px;
        gap: 3px;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-form-container,
    .service-detail-card {
        padding: 30px 20px;
    }
    
    .location-card {
        padding: 36px 24px;
    }
    
    .testimonial-card {
        padding: 40px 28px;
    }
    
    .faq-question {
        padding: 24px 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 24px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.0625rem;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
        gap: 2px;
    }
    
    .footer-tagline {
        font-size: 0.9375rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blur-in {
    animation: blurIn 0.8s ease forwards;
}

@keyframes blurIn {
    from {
        filter: blur(10px);
        opacity: 0;
    }
    to {
        filter: blur(0);
        opacity: 1;
    }
}

