/* ========================================
   MSPE Website - Main Stylesheet
   Multiple Service Provider Experts
   ======================================== */

/* ==================== CSS Variables ==================== */
:root {
    /* Primary Colors */
    --primary: #0a1628;
    --primary-light: #1a365d;
    --primary-dark: #050d17;
    
    /* Accent Colors */
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --accent-dark: #0284c7;
    --accent-glow: rgba(14, 165, 233, 0.3);
    
    /* Secondary Colors */
    --secondary: #0d9488;
    --secondary-light: #14b8a6;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-primary: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-section: 5rem;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-dark: #0a1628;
    --text-body: #64748b;
    --text-muted: #94a3b8;
    
    /* Background Colors */
    --bg-dark: #0a1628;
    --bg-light: #f8fafc;
    
    /* Border Color */
    --border-light: #e2e8f0;
    
    /* Spacing variables */
    --spacing-section: 5rem;
    
    /* Accent aliases */
    --accent-cyan: var(--accent);
    --secondary-teal: var(--secondary);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Common patterns */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-cyan), var(--secondary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

/* ==================== Utilities ==================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Ensure proper centering for all containers */
@media (min-width: 1280px) {
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ==================== Preloader ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    width: 100px;
    height: 100px;
    border: 3px solid transparent;
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    position: absolute;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Preloader Logo Style */
.preloader-logo .logo-image {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.5));
    animation: preloaderPulse 2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.8));
        transform: scale(1.05);
    }
}

/* ==================== Header & Navigation ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    background: transparent;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    gap: var(--spacing-sm);
}

/* ==================== Logo Styling ==================== */
.logo-image {
    height: 56px;
    width: 56px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 12px rgba(14, 165, 233, 0.5)) drop-shadow(0 0 24px rgba(14, 165, 233, 0.25));
    /* Remove any border/edge artifacts */
    border: none;
    outline: none;
    background: transparent;
    border-radius: 12px;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 12px rgba(14, 165, 233, 0.5)) drop-shadow(0 0 24px rgba(14, 165, 233, 0.25));
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(14, 165, 233, 0.7)) drop-shadow(0 0 32px rgba(14, 165, 233, 0.4));
    }
}

.nav-logo:hover .logo-image {
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.8)) drop-shadow(0 0 40px rgba(14, 165, 233, 0.5));
    transform: scale(1.08);
    animation: none;
}

/* Scrolled state - slightly smaller logo */
.header.scrolled .logo-image {
    height: 48px;
    width: 48px;
}

/* Logo Brand Text */
.logo-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #0ea5e9 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 0.625rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 2px;
}

.header.scrolled .logo-text {
    font-size: 1.25rem;
}

.header.scrolled .logo-tagline {
    font-size: 0.5625rem;
}

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

.nav-list {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: var(--spacing-sm) 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-base);
}

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

.nav-link i {
    font-size: 0.75rem;
    transition: var(--transition-base);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(5, 8, 16, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-md) 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-lg);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

.dropdown-menu li a:hover {
    background: rgba(0, 245, 255, 0.1);
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-sm);
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-base);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%; /* Add this line to ensure full width */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    height: 100%;
    padding-top: 80px;
    width: 100%;
}

.hero-text {
    animation: fadeInUp 0.8s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding-right: 2rem;
}

.hero-label {
    display: inline-block;
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent-light);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    white-space: nowrap;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: var(--spacing-xl);
    max-width: 640px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-buttons .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex: 1;
}

.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 200px;
    height: 200px;
    animation: orbit 20s linear infinite;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    animation: orbit 30s linear infinite reverse;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    animation: orbit 40s linear infinite;
}

.core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 50%;
    box-shadow: 0 0 60px var(--accent-glow);
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.25rem;
    color: var(--accent-light);
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    right: 20%;
    animation-delay: 4s;
}

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

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

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    z-index: 10;
}

.hero-control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.hero-control:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

/* ==================== Stats Section ==================== */
.stats {
    background: var(--primary);
    padding: var(--spacing-3xl) 0;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

/* ==================== Services Section ==================== */
.services {
    background: #050810;
}

.services .section-title {
    color: rgba(255, 255, 255, 0.95);
}

.services .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%; /* Add this to ensure cards take full height of grid cell */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: transparent;
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.service-icon i {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.1);
}

.service-card.featured .service-icon i {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-sm);
}

.service-card.featured .service-title {
    color: var(--white);
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    flex-grow: 1; /* Make description take available space to push link down */
}

.service-card.featured .service-description {
    color: var(--gray-300);
}

.service-features {
    margin-bottom: var(--spacing-lg);
    list-style: none;
    padding: 0;
}

/* Ensure service cards have single-column features */
.service-card .service-features {
    display: flex;
    flex-direction: column;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

.service-card.featured .service-features li {
    color: var(--gray-300);
}

.service-features li i {
    color: var(--accent);
    font-size: 0.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: auto;
    position: relative; /* Add this */
    z-index: 2; /* Add this */
}

.service-link i {
    transition: var(--transition-base);
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-card.featured .service-link {
    color: var(--accent-light);
}

/* ==================== Why Us Section ==================== */
.why-us {
    background: #050810;
}

.why-us .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.why-us .section-title {
    color: rgba(255, 255, 255, 0.95);
}

.why-us .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.features-list {
    display: grid;
    gap: var(--spacing-lg);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.feature-item:hover {
    background: rgba(0, 245, 255, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.feature-content h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Process Flow */
.process-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.process-step:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.process-step:hover .step-number,
.process-step:hover h4,
.process-step:hover p {
    color: var(--white);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-base);
}

.process-step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xs);
    transition: var(--transition-base);
}

.process-step p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

/* ==================== Philosophy Section ==================== */
.philosophy {
    background: var(--gray-50);
    padding: var(--spacing-section) 0;
}

/* Ensure sections without dark backgrounds have proper text colors */
.section:not(.services):not(.why-us):not(.clients):not(.news):not(.stats):not(.commitment):not(.testimonials) .section-title {
    color: var(--gray-900);
}

.section:not(.services):not(.why-us):not(.clients):not(.news):not(.stats):not(.commitment):not(.testimonials) .section-description {
    color: var(--gray-600);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.philosophy-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.philosophy-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.philosophy-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==================== Clients Section ==================== */
.clients {
    background: #050810;
}

.clients .section-title {
    color: rgba(255, 255, 255, 0.95);
}

.clients .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.clients-slider {
    overflow: hidden;
    padding: var(--spacing-lg) 0;
}

.clients-track {
    display: flex;
    gap: var(--spacing-xl);
    animation: scroll 30s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.client-logo:hover {
    box-shadow: var(--shadow-md);
}

.logo-placeholder {
    color: var(--gray-400);
    font-weight: 600;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 6 - var(--spacing-xl) * 6)); }
}

/* ==================== Commitment Section ==================== */
.commitment {
    background: var(--primary);
    padding: var(--spacing-section) 0;
}

.commitment .section-title {
    color: var(--white);
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-card .quote-icon {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.commitment-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-200);
}

.commitment-author {
    margin-top: 2rem;
}

.author-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.author-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.commitment-author h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.commitment-author p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.commitment-footer {
    margin-top: 2rem;
    color: var(--gray-300);
    line-height: 1.6;
}

/* ==================== Testimonials Section ==================== */
.testimonials {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></svg>');
    background-size: 100px;
}

.testimonials .section-label,
.testimonials .section-title {
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

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

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: var(--spacing-lg);
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--gray-200);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.author-info h4 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
}

.author-info p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.testimonial-dots {
    display: flex;
    gap: var(--spacing-sm);
}

/* ==================== News Section ==================== */
.news {
    background: #050810;
}

.news .section-title {
    color: rgba(255, 255, 255, 0.95);
}

.news .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
}

.news-date {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--accent);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    line-height: 1.2;
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.news-content {
    padding: var(--spacing-lg);
}

.news-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

.news-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
}

.news-link i {
    transition: var(--transition-base);
}

.news-link:hover i {
    transform: translateX(5px);
}

/* ==================== CTA Section ==================== */
.cta {
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

.cta-buttons .btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cta-buttons .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--accent);
}

/* ==================== Footer ==================== */
.footer {
    background: var(--primary);
    margin-top: 0;
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    line-height: 1;
    transition: var(--transition-base);
    text-align: left;
    text-decoration: none;
}

.footer-logo .logo-image {
    display: inline-block;
    height: 72px;
    width: 72px;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 0 16px rgba(14, 165, 233, 0.5)) drop-shadow(0 0 32px rgba(14, 165, 233, 0.3));
    border: none;
    outline: none;
    background: transparent;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoGlow 3s ease-in-out infinite;
}

.footer-logo:hover .logo-image {
    filter: drop-shadow(0 0 24px rgba(14, 165, 233, 0.7)) drop-shadow(0 0 48px rgba(14, 165, 233, 0.5));
    transform: scale(1.06);
    animation: none;
}

.footer-logo .logo-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #0ea5e9 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.08em;
}

.footer-logo .logo-tagline {
    font-size: 0.6875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
}

.footer-description {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.footer-links ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-links ul li a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.contact-list li {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.contact-list li i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: var(--transition-base);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ==================== Text & Spacing Fixes ==================== */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-muted {
    color: var(--text-muted) !important;
}

.tight-spacing {
    letter-spacing: -0.02em;
}

.normal-spacing {
    letter-spacing: normal;
}

.max-width-fit {
    max-width: fit-content;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.aspect-ratio-16-9 {
    aspect-ratio: 16/9;
    object-fit: cover;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* ==================== Back to Top ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: var(--z-dropdown);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-5px);
}

/* ==================== Typography Fixes ==================== */
h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    hyphens: auto;
}

.text-overflow-hidden {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .footer-main {
        padding: var(--spacing-2xl) 0 var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary);
        padding: 100px var(--spacing-xl) var(--spacing-xl);
        transition: var(--transition-slow);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(-100%);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: var(--spacing-lg);
        margin-top: var(--spacing-sm);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: var(--spacing-md) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.05);
        margin-top: var(--spacing-sm);
        border-radius: var(--radius-md);
    }
    
    .dropdown-menu li a {
        color: var(--gray-300);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .hero-content {
        text-align: center;
        flex-direction: column;
        justify-content: center;
    }

    .hero-text {
        align-items: center;
        padding-right: 0;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .footer-brand {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-links {
        order: 2;
    }
    
    .footer-contact {
        order: 3;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    /* Logo responsive - tablet */
    .logo-image {
        height: 48px;
        width: 48px;
    }
    
    .header.scrolled .logo-image {
        height: 42px;
        width: 42px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-tagline {
        font-size: 0.5625rem;
    }
    
    .header.scrolled .logo-text {
        font-size: 1.125rem;
    }
    
    .footer-logo .logo-image {
        height: 64px;
        width: 64px;
    }
    
    .footer-logo .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Logo responsive - mobile */
    .logo-image {
        height: 44px;
        width: 44px;
    }
    
    .header.scrolled .logo-image {
        height: 38px;
        width: 38px;
    }
    
    .logo-brand {
        display: none;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo .logo-brand {
        display: flex;
        align-items: center;
    }
    
    .footer-logo .logo-image {
        height: 56px;
        width: 56px;
    }
    
    .footer-logo .logo-text {
        font-size: 1.25rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        margin-top: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        margin-top: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dropdown-menu {
        min-width: auto;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ==================== Notifications ==================== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    box-shadow: var(--shadow-xl);
    max-width: 400px;
}

.notification-success {
    background: #10b981;
    color: white;
}

.notification-error {
    background: #ef4444;
    color: white;
}

.notification-info {
    background: var(--accent);
    color: white;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==================== Form Message ==================== */
.form-message {
    display: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-message i {
    margin-right: 0.5rem;
}

/* ==================== Preloader Hidden State ==================== */
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
