/* Professional Homepage Styling - Enhanced Version with Modern Updates */
:root {
    /* Color System - Professional & Modern */
    --primary-900: #0f172a;
    --primary-800: #1e293b;
    --primary-700: #334155;
    --primary-600: #475569;
    --primary-500: #64748b;
    --primary-400: #94a3b8;
    --primary-300: #cbd5e1;
    --primary-200: #e2e8f0;
    --primary-100: #f1f5f9;
    --primary-50: #f8fafc;
    
    --accent-600: #2563eb;
    --accent-500: #3b82f6;
    --accent-400: #60a5fa;
    --accent-300: #93c5fd;
    --accent-200: #dbeafe;
    
    --success-500: #10b981;
    --warning-500: #f59e0b;
    --error-500: #ef4444;
    
    --white: #ffffff;
    --black: #000000;
    
    /* Purple Gradient - Inspired by Original */
    --purple-600: #7c3aed;
    --purple-500: #8b5cf6;
    --purple-400: #a78bfa;
    --purple-300: #c4b5fd;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Borders & 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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--primary-800);
    background: var(--white);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* MODERN ENHANCED HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #0e4b99 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 45% 10%, rgba(34, 211, 238, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 75% 40%, rgba(251, 146, 60, 0.05) 0%, transparent 25%);
    animation: floatParticles 15s ease-in-out infinite;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(168, 85, 247, 0.02) 50%, transparent 70%);
    animation: overlayFloat 12s ease-in-out infinite;
}

@keyframes overlayFloat {
    0%, 100% { transform: translateX(-2px) translateY(-2px); opacity: 1; }
    50% { transform: translateX(2px) translateY(2px); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 3rem 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out 0.3s both;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: clamp(1.25rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    animation: slideInRight 1s ease-out 0.5s both;
    margin-bottom: 0.75rem;
}

.title-location {
    display: inline-block;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    background-color: rgba(59, 130, 246, 0.1);
    animation: slideInUp 1s ease-out 0.7s both;
    margin-top: 1rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 2.5rem auto;
    max-width: 650px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta.primary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(99, 102, 241, 0.9) 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.hero-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 1) 0%, rgba(99, 102, 241, 1) 100%);
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-cta.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.scroll-arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.scroll-arrow {
    width: 2px;
    height: 2rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.8);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-bold);
    color: var(--primary-900);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--primary-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Album Slider */
.album-slider {
    padding: var(--space-24) 0;
    background: var(--primary-50);
}

.slider-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: var(--white);
}

.slider-wrapper {
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.6) 40%, 
        rgba(0, 0, 0, 0.3) 70%, 
        transparent);
    color: var(--white);
    padding: var(--space-8);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.slide:hover .slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slide-overlay h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.slide-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--space-4);
    line-height: 1.5;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: var(--radius-full);
    color: var(--primary-800);
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.slider-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.prev {
    left: var(--space-6);
}

.next {
    right: var(--space-6);
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
    padding: var(--space-4);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--primary-300);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.dot.active {
    background: var(--accent-500);
    transform: scale(1.2);
}

.dot:hover:not(.active) {
    background: var(--primary-400);
    transform: scale(1.1);
}

/* MODERN ENHANCED CATEGORIES SECTION */
.categories-section {
    padding: 6rem 0;
    background: #fafbfc;
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 231, 235, 0.8);
    position: relative;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.7) 0%, 
        rgba(30, 41, 59, 0.5) 50%, 
        rgba(59, 130, 246, 0.6) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.category::after {
    content: attr(data-category);
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    z-index: 2;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.category:hover::before {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.8) 0%, 
        rgba(99, 102, 241, 0.6) 50%, 
        rgba(168, 85, 247, 0.7) 100%);
}

.category:focus {
    outline: 3px solid var(--accent-300);
    outline-offset: 2px;
}

/* Loading State */
.loading-placeholder {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 4rem 2rem;
    color: #64748b;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.loading-spinner {
    width: 3rem;
    height: 3rem;
    border: 3px solid rgba(59, 130, 246, 0.1);
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-placeholder p {
    font-size: 1.125rem;
    font-weight: var(--font-weight-medium);
    margin: 0;
    text-align: center;
}

/* MODERN ENHANCED PHOTOGRAPHY SERVICES */
.photography-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(229, 231, 235, 0.6);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.02) 0%, 
        rgba(99, 102, 241, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-card:focus {
    outline: 3px solid var(--accent-300);
    outline-offset: 2px;
}

.service-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(99, 102, 241, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.9);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
    filter: saturate(1.1);
}

.service-content {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #3b82f6;
}

.service-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-content p {
    color: #475569;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-card:hover .service-link {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link svg {
    transform: translateX(3px);
}

/* Enhanced About Section */
.about-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.about-intro {
    display: flex;
    margin-bottom: var(--space-16);
    justify-content: center;
}

.about-text {
    background: var(--primary-50);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--accent-500);
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    width: 100%;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--primary-700);
    margin-bottom: var(--space-6);
}

.about-text p:last-child {
    margin-bottom: 0;
}



.features-section h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-900);
    margin-bottom: var(--space-8);
    text-align: center;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.feature-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-200);
    transition: all var(--transition-normal);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-300);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    display: block;
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-900);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.feature-card p {
    color: var(--primary-600);
    margin: 0;
    line-height: 1.6;
}

.about-cta {
    background: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-500) 100%);
    color: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-6);
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    font-size: 1rem;
}

.btn-cta.primary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-cta.primary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-cta.secondary {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-cta.secondary:hover {
    background: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatParticles {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-6);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 280px;
    }
    
    .slide {
        height: 350px;
    }
    
    .slider-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .prev {
        left: var(--space-4);
    }
    
    .next {
        right: var(--space-4);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        padding: 0 1rem;
    }
    
    .category {
        min-height: 280px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-4: 0.75rem;
        --space-6: 1rem;
        --space-8: 1.5rem;
        --space-12: 2rem;
        --space-16: 2.5rem;
        --space-24: 4rem;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .slide {
        height: 280px;
    }
    
    .slide-overlay {
        padding: var(--space-4);
    }
    
    .category {
        min-height: 240px;
    }
    
    .category::after {
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
        font-size: 1.25rem;
    }
    
    .service-card {
        margin: 0 var(--space-2);
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .about-text {
        padding: var(--space-4);
    }
    
    .about-cta {
        padding: var(--space-6);
    }
    
    .container {
        padding: 0 var(--space-4);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-particles,
    .hero-gradient-overlay,
    .scroll-arrow {
        animation: none !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --primary-50: #ffffff;
        --primary-100: #f0f0f0;
        --primary-900: #000000;
        --accent-500: #0000ff;
    }
    
    .hero {
        background: linear-gradient(135deg, #000080 0%, #4B0082 50%, #800080 100%);
    }
}

/* Focus Styles for Accessibility */
.hero-cta:focus,
.category:focus,
.service-card:focus,
.slider-btn:focus,
.dot:focus,
.btn-cta:focus {
    outline: 3px solid var(--accent-400);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-particles,
    .hero-gradient-overlay,
    .slider-btn,
    .slider-dots {
        display: none !important;
    }
    
    .hero {
        background: var(--primary-800) !important;
        min-height: auto !important;
        padding: 2rem !important;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* Update your existing .services-grid CSS to support 3 cards */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 2rem auto 0;
    }
}