/* ===============================================
   ACM ELECTRICAL & TRADING - ENHANCED STYLESHEET
   Modern, Professional, & Interactive Design
   =============================================== */

/* CSS Custom Properties (Variables) - Enhanced Color Palette for Better Contrast */
:root {
    /* Enhanced Color Palette - Better Contrast for 2025 */
    --primary: #4A90E2; /* Deeper sky blue for better contrast */
    --secondary: #50C878; /* Vibrant emerald green */
    --accent: #FFB347; /* Warm peach instead of pale yellow */
    --text-dark: #1a1a1a; /* Stronger dark text */
    --text-light: #FFFFFF; /* Pure white for maximum contrast */
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary)); /* Enhanced gradient */
    
    /* Enhanced Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #4A90E2, #50C878);
    --gradient-secondary: linear-gradient(135deg, #50C878, #FFB347);
    --gradient-accent: linear-gradient(135deg, #FFB347, #4A90E2);
    --gradient-hero: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(80, 200, 120, 0.8));
    --gradient-glass: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    
    /* Enhanced Text Colors - Better Contrast */
    --text-primary: #1a1a1a; /* Stronger dark text */
    --text-secondary: #4a5568; /* Medium gray for secondary text */
    --text-light: #ffffff; /* Pure white */
    --text-white: #ffffff; /* Pure white */
    --text-muted: #718096; /* Lighter gray for muted text */
    
    /* Enhanced Background Colors */
    --bg-primary: #ffffff; /* Pure white backgrounds */
    --bg-secondary: #f8fafc; /* Very light gray */
    --bg-tertiary: #edf2f7; /* Light gray for sections */
    --bg-dark: #1a202c; /* Dark background */
    --bg-darker: #111827; /* Darker background */
    
    /* Enhanced Accent Colors */
    --success-color: #48bb78; /* Better green */
    --warning-color: #ed8936; /* Better orange */
    --error-color: #e53e3e; /* Better red */
    --info-color: #4299e1; /* Better blue */
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;
    --border-radius: 1rem;
    --border-radius-lg: 2rem;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-size-xs: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    
    /* Enhanced Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.20), 0 8px 16px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(74, 144, 226, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Loading Screen - Modern ACM Animation */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s ease-in-out;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: white;
}

.loader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle {
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    position: absolute;
}

.logo-inner {
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loader-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
    font-family: var(--font-primary);
}

.loader-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.3); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-md); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons - Enhanced for Better Readability */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-size-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-family: var(--font-secondary);
    min-width: 160px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--secondary);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.btn-outline {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.5);
}

.btn-glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin-bottom: 1.5rem;
}

.section-badge i {
    font-size: 1.2em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 1rem 0;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.sticky {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.logo-text h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
}

.logo-text span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 400;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: var(--transition-normal);
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

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

.btn-nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    overflow: hidden;
    background: var(--primary); /* Light blue bg */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -3;
}

.hero-particles {
    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="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.8;
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    padding: 0 2rem;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: var(--gradient-glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
}

.hero-ampersand {
    color: var(--secondary);
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle-container {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.typing-text {
    border-right: 3px solid var(--secondary);
    animation: typing 4s steps(40, end), blink 1s infinite;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    color: var(--text-dark);
}

.hero-description {
    font-size: var(--font-size-md);
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    margin-top: 2rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: var(--text-dark);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    animation: bounce 2s infinite;
}

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

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    50% { border-color: transparent }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

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

.about-image-container {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.about-image-main:hover .about-image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-glow);
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.about-image-floating {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 10;
}

.floating-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    text-align: center;
    min-width: 200px;
    border: 3px solid var(--primary);
}

.floating-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.floating-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.floating-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

.about-text h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: var(--font-size-2xl);
}

.about-intro {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-highlights {
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: white;
    font-size: 1.5rem;
}

.highlight-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--text-secondary);
    margin: 0;
}

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

.feature {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    color: white;
    font-size: 1.8rem;
}

.feature h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--font-size-sm);
}

.about-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Enhanced Statistics Section - Better Contrast & Design */
.stats-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary); /* Light background instead of primary */
    color: var(--text-primary);
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.stats-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1; /* Very subtle background image */
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(80, 200, 120, 0.05));
    z-index: -1;
}

/* Section Badge for "Our Achievements" */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

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

.stat-card {
    background: var(--bg-primary); /* White background for better contrast */
    backdrop-filter: none; /* Remove blur effect */
    border: 2px solid var(--primary);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
    background: linear-gradient(145deg, var(--bg-primary), var(--bg-secondary));
}

.stat-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-md);
}

.stat-icon i {
    font-size: 2.2rem;
    color: white;
}

.stat-number {
    font-size: 3.5rem; /* Slightly smaller for better balance */
    font-weight: 800;
    color: var(--text-primary); /* Dark text for better readability */
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    text-shadow: none; /* Remove text shadow for clarity */
}

.stat-label {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.stat-description {
    color: var(--text-secondary); /* Better contrast */
    font-size: var(--font-size-md);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

/* Stats Section Mobile Responsiveness */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: var(--font-size-lg);
    }
}

/* Enhanced Services Section */
.services {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.service-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: white;
}

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

.service-card {
    background: var(--accent);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

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

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

.service-card.premium {
    border: 2px solid var(--primary);
    position: relative;
}

.service-card.premium::before {
    height: 6px;
}

.service-card.emergency-card {
    background: linear-gradient(145deg, #fee2e2, #fef2f2);
    border-color: var(--error-color);
}

.service-card.emergency-card::before {
    background: linear-gradient(135deg, var(--error-color), #dc2626);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.emergency-icon {
    background: linear-gradient(135deg, var(--error-color), #dc2626);
}

.service-badge {
    padding: 0.5rem 1rem;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.service-badge.emergency {
    background: linear-gradient(135deg, var(--error-color), #dc2626);
    animation: pulse-emergency 2s infinite;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: var(--font-size-xl);
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-features i {
    color: var(--success-color);
    font-size: 1rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--primary);
    border-radius: var(--border-radius);
}

.price-from {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.price {
    color: var(--text-dark);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.btn-service {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: var(--transition-normal);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-emergency {
    background: linear-gradient(135deg, var(--error-color), #dc2626);
    animation: pulse-emergency 2s infinite;
}

.emergency-hotline {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #fee2e2, #fef2f2);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border: 1px solid var(--error-color);
}

.emergency-hotline i {
    color: var(--error-color);
    font-size: 1.5rem;
}

.emergency-hotline span {
    color: var(--text-primary);
    font-weight: 600;
}

/* Enhanced Gallery Section */
.gallery {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(173, 216, 230, 0.8), rgba(152, 251, 152, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
}

.gallery-content h4 {
    font-size: var(--font-size-xl);
    margin-bottom: 0.5rem;
}

.gallery-content p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: var(--text-light);
    color: var(--primary);
    transform: scale(1.1);
}

.gallery-cta {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.gallery-cta h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.gallery-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Enhanced Testimonials Section - Fixed Content Cutoff & Button Layout */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-secondary); /* Light gray background for better contrast */
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px; /* Increased from 1000px for more breathing room */
    margin: 0 auto;
    padding: 0 3rem; /* Extra side padding to prevent edge clipping */
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth easing */
    overflow: visible; /* Changed to visible to show full content */
}

.testimonial-card {
    min-width: 100%;
    opacity: 0.4; /* Slightly more visible for inactive cards */
    transition: all 0.4s ease;
    transform: scale(0.95);
    flex-shrink: 0; /* Prevent card shrinking */
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-content {
    background: var(--bg-primary); /* Pure white background */
    padding: 3.5rem 3rem; /* Increased padding to avoid text touching edges */
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: left; /* Better for reading quotes */
    position: relative;
    border: 2px solid var(--primary);
    margin: 0 1rem; /* Space between cards */
    min-width: 100%; /* Ensure full width within track */
    max-width: none; /* Remove any implicit max-width constraints */
    word-break: break-word; /* Stronger breaking for long words */
    hyphens: auto; /* Auto hyphenation for better flow */
    line-height: 1.8; /* More space between lines */
    word-wrap: break-word; /* Prevent text overflow */
    overflow-wrap: break-word;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 2rem; /* Move quote mark to left for better design */
    font-size: 4rem; /* Smaller quote mark */
    color: var(--primary);
    font-family: serif;
    opacity: 0.3; /* More subtle */
}

.stars {
    display: flex;
    justify-content: flex-start; /* Align left with text */
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.stars i {
    color: #FFB347; /* Gold color for stars - better contrast */
    font-size: 1.3rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

.testimonial-content p {
    font-size: 1.2rem; /* Slightly larger for readability */
    color: var(--text-primary); /* Darker text for better readability */
    line-height: 1.8; /* Enhanced line spacing */
    margin-bottom: 3rem; /* More space below quote */
    font-style: italic;
    text-align: justify; /* Even distribution to prevent ragged edges */
    word-wrap: break-word;
    hyphens: auto; /* Better word breaking */
    white-space: normal; /* Ensure normal text flow */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-start; /* Align left */
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    flex-shrink: 0; /* Prevent avatar shrinking */
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    display: block;
    margin-bottom: 0.3rem;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: var(--font-size-xs);
}

.testimonial-controls {
    display: flex;
    flex-direction: row; /* Always horizontal layout */
    align-items: center;
    justify-content: center;
    gap: 2rem; /* Balanced spacing */
    margin-top: 2.5rem;
}

.testimonial-btn {
    width: 60px; /* Larger buttons */
    height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem; /* Larger icons */
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10; /* Ensure buttons are clickable */
}

.testimonial-btn.prev {
    order: 0; /* Previous button first */
}

.testimonial-btn.next {
    order: 2; /* Next button last */
}

.testimonial-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow);
    background: var(--gradient-secondary);
}

.testimonial-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.testimonial-dots {
    display: flex;
    gap: 0.8rem; /* Tighter spacing for dots */
    order: 1; /* Dots between arrows */
}

.dot {
    width: 18px; /* Larger dots */
    height: 18px;
    background: #cbd5e0; /* Neutral inactive color */
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.3);
}

/* Enhanced Testimonials Mobile Responsiveness - Keep Horizontal Layout */
@media (max-width: 768px) {
    .testimonials-slider {
        padding: 0 1.5rem; /* Reduced side padding on mobile */
    }
    
    .testimonial-content {
        padding: 2.5rem 2rem; /* Reduced padding but still generous */
        margin: 0 0.5rem;
    }
    
    .testimonial-content::before {
        font-size: 3rem;
        top: -5px;
        left: 1rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem; /* Slightly smaller on mobile but still readable */
        margin-bottom: 2.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-info {
        text-align: center;
    }
    
    /* Keep controls horizontal even on mobile */
    .testimonial-controls {
        flex-direction: row; /* Force horizontal layout */
        gap: 1.5rem; /* Reduced spacing for mobile */
        margin-top: 2rem;
        flex-wrap: nowrap; /* Prevent wrapping */
    }
    
    .testimonial-btn {
        width: 50px; /* Smaller buttons on mobile */
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial-dots {
        gap: 0.6rem; /* Tighter dots spacing on mobile */
    }
    
    .dot {
        width: 15px; /* Smaller dots on mobile */
        height: 15px;
    }
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.review-stat {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.review-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.review-stars i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-secondary);
    font-weight: 600;
}

/* ==============================
   WORK SECTION STYLES
   ============================== */
.work-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.work-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.work-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: white;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.work-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.work-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.work-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.work-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(50%);
    transition: all 0.4s ease;
    text-align: center;
}

.work-item:hover .work-overlay {
    transform: translateY(0);
}

.work-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.work-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Mobile Responsiveness for Work Section */
@media (max-width: 768px) {
    .work-main img {
        height: 300px;
    }
    
    .work-info {
        padding: 1.5rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .work-item img {
        height: 200px;
    }
}

/* ==============================
   LOCATION SECTION STYLES
   ============================== */
.location-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.location-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.location-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.feature-item {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile Responsiveness for Location Section */
@media (max-width: 768px) {
    .location-overlay {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
    
    .map-container {
        padding: 0.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .location-buttons {
        flex-direction: column;
    }
    
    .location-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .location-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.8rem;
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: var(--font-size-lg);
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--border-radius);
    font-size: var(--font-size-md);
    transition: var(--transition-normal);
    font-family: var(--font-secondary);
    background: var(--bg-secondary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--text-light);
    box-shadow: 0 0 0 4px rgba(173, 216, 230, 0.1);
}

.map-container {
    margin-top: 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--text-dark);
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section h3 {
    color: var(--secondary);
    font-size: var(--font-size-xl);
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.video-close:hover {
    color: var(--primary);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.lightbox-title {
    color: white;
    font-size: var(--font-size-xl);
    margin-top: 2rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: var(--transition-normal);
}

/* Scroll to Top & WhatsApp Buttons */
.scroll-to-top,
.whatsapp-btn {
    position: fixed;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-normal);
    z-index: 9999;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top {
    bottom: 2rem;
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.whatsapp-btn {
    bottom: 6rem;
    background: #25D366;
    color: white;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

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

.rotate-hover:hover {
    transform: rotate(5deg);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* RESPONSIVE DESIGN */
/* Large Screens */
@media screen and (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

/* Tablet Screens */
@media screen and (max-width: 1024px) {
    :root {
        --section-padding: 4rem 0;
        --font-size-4xl: 2.5rem;
        --font-size-3xl: 2rem;
        --font-size-2xl: 1.8rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-content {
        padding: 0 1.5rem;
        max-width: 800px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-container {
        order: -1;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile fix */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
    
    .logo-text h2 {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .about-image-floating {
        position: static;
        margin-top: 2rem;
    }
    
    .floating-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .service-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        min-width: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        min-width: 150px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-controls {
        flex-direction: column;
        gap: 2rem;
    }
    
    .review-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .scroll-to-top,
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        right: 1rem;
    }
    
    .whatsapp-btn {
        bottom: 4rem;
    }
}

/* Small Mobile Screens */
@media screen and (max-width: 480px) {
    :root {
        --section-padding: 2rem 0;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.6rem;
        --font-size-2xl: 1.4rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .hero-features span {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        min-width: 140px;
        font-size: 0.9rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .map-container {
        margin-top: 2rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

/* Extra Small Mobile Screens */
@media screen and (max-width: 320px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .hero-content {
        padding: 0 0.8rem;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .service-card,
    .contact-form,
    .testimonial-content {
        padding: 1.5rem 1rem;
    }
    
    .work-info {
        padding: 1.5rem 1rem;
    }
    
    .work-overlay {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        min-width: 120px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-scroll,
    .footer,
    .scroll-to-top,
    .whatsapp-btn,
    .video-modal,
    .lightbox {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
        background: white !important;
        color: black !important;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .service-card,
    .testimonial-card,
    .contact-item {
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .gradient-text {
        color: var(--primary) !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary: #000080;
        --text-dark: #000000;
        --bg-secondary: var(--text-light);
    }
    
    .btn-primary {
        background: #000080;
        border: 2px solid #000080;
    }
    
    .service-card,
    .testimonial-content,
    .contact-item {
        border: 2px solid #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-particles {
        animation: none;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

button:focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile fix */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
    }
}
