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

:root {
    /* Color Palette */
    --primary-color: #6B46C1; /* Purple */
    --secondary-color: #3B82F6; /* Light Blue */
    --accent-color: #EF4444; /* Red */
    --warning-color: #F59E0B; /* Yellow */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #FFFFFF;
    --bg-gray: #F9FAFB;
    --border-color: #E5E7EB;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-decoration: none;
    color: var(--text-dark);
}

.logo svg {
    flex-shrink: 0;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-link.cta-nav {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover,
.nav-link.cta-nav:focus {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.55) 0%, rgba(59, 130, 246, 0.45) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: white;
    padding: var(--spacing-lg) var(--spacing-md);
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-primary:hover,
.btn-primary:focus {
    background: #DC2626;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.hero-trust {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
}

.trust-icon {
    font-weight: 700;
    color: #10B981;
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 10px auto;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--bg-gray);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.service-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-sm);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

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

.service-frequency {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-frequency h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

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

.frequency-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 12px;
    z-index: 2;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    z-index: 0;
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: cover;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.about-image-container:hover .about-image {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: linear-gradient(180deg, rgba(107, 70, 193, 0.1) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 15px;
    z-index: 2;
}

/* Image Badges */
.image-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

.image-badge svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.image-badge-top {
    top: -15px;
    right: 20px;
    animation-delay: 0s;
}

.image-badge-bottom {
    bottom: -15px;
    left: 20px;
    animation-delay: 1.5s;
}

/* Decorative Shapes */
.image-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
    animation: pulseDecoration 4s ease-in-out infinite;
}

.image-decoration-1 {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    top: -40px;
    left: -40px;
    animation-delay: 0s;
}

.image-decoration-2 {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    bottom: -30px;
    right: -30px;
    animation-delay: 1.3s;
}

.image-decoration-3 {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    animation-delay: 2.6s;
}

/* Floating Icons */
.image-floating-icon {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.15;
    z-index: 0;
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
    color: var(--primary-color);
}

.floating-icon-2 {
    bottom: 20%;
    right: -25px;
    animation-delay: 2s;
    color: var(--secondary-color);
}

.floating-icon-3 {
    top: 60%;
    left: -20px;
    animation-delay: 4s;
    color: var(--accent-color);
}

.image-floating-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Animations */
@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseDecoration {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
        opacity: 0.2;
    }
}

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

.about-intro {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
}

.about-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.about-role {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-story {
    margin-bottom: var(--spacing-lg);
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
}

.story-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.story-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.story-link:hover,
.story-link:focus {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(107, 70, 193, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-gray);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.credential-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.credential-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.credential-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.credential-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.contact-link-inline {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link-inline:hover,
.contact-link-inline:focus {
    color: var(--secondary-color);
    text-decoration: underline;
}

.about-cta {
    margin-top: var(--spacing-md);
}

/* ============================================
   Works Section
   ============================================ */
.works {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
    position: relative;
}

.works-content {
    margin-top: var(--spacing-lg);
}

.works-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-family: var(--font-primary);
}

.filter-btn:hover,
.filter-btn:focus {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.work-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.work-item.hidden {
    display: none;
}

.work-media {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    background: var(--bg-gray);
}

.work-video,
.work-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-item:hover .work-video,
.work-item:hover .work-image {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 70, 193, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

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

.play-btn,
.view-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.play-btn:hover,
.view-btn:hover,
.play-btn:focus,
.view-btn:focus {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.play-btn svg,
.view-btn svg {
    width: 100%;
    height: 100%;
    padding: 15px;
}

.work-info {
    padding: var(--spacing-md);
    text-align: center;
}

.work-info h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.work-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
}

.lightbox-video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 3rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-prev:focus,
.lightbox-next:focus {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 32px;
    height: 32px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-card.highlight {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-sm);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.contact-card p {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-link:hover,
.contact-link:focus {
    text-decoration: underline;
    opacity: 0.8;
}

.contact-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.cta-note {
    margin-top: var(--spacing-sm);
    opacity: 0.9;
    font-size: 0.95rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.footer-logo svg {
    flex-shrink: 0;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
    color: white;
    text-decoration: underline;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover,
.social-link:focus {
    color: white;
    transform: translateX(5px);
}

.social-link svg {
    transition: var(--transition);
}

.social-link:hover svg,
.social-link:focus svg {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

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

/* ============================================
   Mobile Responsive Design
   ============================================ */
@media (max-width: 768px) {
    /* Navigation Mobile Improvements */
    .navbar {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
        padding: 0.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .menu-toggle span {
        transition: all 0.3s ease;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
    
    .nav-wrapper {
        padding: 1rem 0;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo svg {
        width: 40px;
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        display: block;
    }
    
    .nav-link.cta-nav {
        margin-top: 1rem;
        border-radius: 30px;
        padding: 1rem 2rem;
        border: none;
    }
    
    /* Hero Section Mobile Improvements */
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding-top: 70px;
        position: relative;
    }
    
    .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-video {
        object-fit: cover;
        object-position: center;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(107, 70, 193, 0.6) 0%, rgba(59, 130, 246, 0.5) 100%);
    }
    
    .hero-content {
        padding: var(--spacing-md) var(--spacing-sm);
        position: relative;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 70px);
    }
    
    .hero-headline {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-xs);
    }
    
    .hero-subheadline {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-xs);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-xs);
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1.05rem;
        border-radius: 30px;
    }
    
    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
        padding: 0 var(--spacing-xs);
    }
    
    .trust-item {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
        font-size: 0.85rem;
    }
    
    /* Services Section Mobile Improvements */
    .services {
        padding: var(--spacing-lg) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .works .section-header {
        margin-bottom: var(--spacing-md);
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .service-card {
        width: 100%;
        margin: 0;
        padding: var(--spacing-lg);
        border-radius: 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: var(--spacing-md);
    }
    
    .service-card h3 {
        font-size: 1.35rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .service-frequency {
        display: none; /* Hidden on mobile view */
    }
    
    /* About Section Mobile Improvements */
    .about {
        padding: var(--spacing-lg) 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        margin-top: var(--spacing-lg);
    }
    
    .about-image-wrapper {
        order: -1;
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .about-image-container {
        padding: 10px;
        border-radius: 20px;
    }
    
    .about-image {
        border-radius: 15px;
    }
    
    .image-badge {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
        border-radius: 40px;
    }
    
    .image-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .image-badge-top {
        top: -8px;
        right: 15px;
    }
    
    .image-badge-bottom {
        bottom: -8px;
        left: 15px;
    }
    
    .image-decoration {
        opacity: 0.06;
    }
    
    .image-decoration-1 {
        width: 70px;
        height: 70px;
        top: -15px;
        left: -15px;
    }
    
    .image-decoration-2 {
        width: 50px;
        height: 50px;
        bottom: -10px;
        right: -10px;
    }
    
    .image-decoration-3 {
        width: 35px;
        height: 35px;
        right: -8px;
    }
    
    .image-floating-icon {
        display: none;
    }
    
    .about-text {
        text-align: left;
        padding: 0 var(--spacing-sm);
    }
    
    .about-intro {
        text-align: center;
        margin-bottom: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
    }
    
    .about-name {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .about-role {
        font-size: 1.05rem;
    }
    
    .about-story {
        margin-bottom: var(--spacing-lg);
    }
    
    .story-text {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: var(--spacing-md);
    }
    
    .about-stats {
        display: none; /* Hidden on mobile view */
    }
    
    .about-credentials {
        display: none; /* Hidden on mobile view */
    }
    
    .about-cta {
        text-align: center;
        margin-top: var(--spacing-lg);
    }
    
    /* Works Section Mobile Improvements */
    .works {
        padding: var(--spacing-md) 0;
    }
    
    .works-content {
        margin-top: var(--spacing-md);
    }
    
    .works-filter {
        flex-wrap: wrap;
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 25px;
        flex: 1;
        min-width: calc(33.333% - 0.33rem);
    }
    
    .works-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .work-item {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .work-media {
        padding-top: 56.25%; /* 16:9 aspect ratio - more compact */
    }
    
    .work-info {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .work-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }
    
    .work-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .play-btn,
    .view-btn {
        width: 60px;
        height: 60px;
    }
    
    .lightbox {
        padding: var(--spacing-sm);
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    /* Contact Section Mobile Improvements */
    .contact {
        padding: var(--spacing-lg) 0;
    }
    
    .contact-content {
        padding: 0 var(--spacing-sm);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .contact-card {
        padding: var(--spacing-lg);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.25);
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        margin-bottom: var(--spacing-md);
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .contact-card p {
        font-size: 1rem;
    }
    
    .contact-link {
        font-size: 1.15rem;
    }
    
    .contact-cta {
        margin-top: var(--spacing-lg);
    }
    
    .cta-note {
        font-size: 0.9rem;
        margin-top: var(--spacing-sm);
    }
    
    /* Footer Mobile Improvements */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-section {
        padding-bottom: var(--spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: var(--spacing-md);
    }
    
    .footer-logo h3 {
        font-size: 1.1rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .footer-section ul li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: var(--spacing-md);
        line-height: 1.6;
    }
    
    /* Container Mobile Adjustments */
    .container {
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Devices */
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-headline {
        font-size: 1.85rem;
        line-height: 1.15;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .about-name {
        font-size: 1.65rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filter-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.25rem;
    }
    
    .works-grid {
        gap: 0.75rem;
    }
    
    .work-media {
        padding-top: 50%; /* Even more compact on very small screens */
    }
    
    .work-info {
        padding: 0.75rem var(--spacing-sm);
    }
    
    .work-info h3 {
        font-size: 1.05rem;
        margin-bottom: 0.2rem;
    }
    
    .work-info p {
        font-size: 0.85rem;
    }
    
    .works {
        padding: var(--spacing-sm) 0;
    }
    
    .works .section-header {
        margin-bottom: var(--spacing-sm);
    }
    
    .works-filter {
        margin-bottom: var(--spacing-sm);
    }
    
    .contact-card {
        padding: var(--spacing-md);
    }
    
    .footer-content {
        gap: var(--spacing-md);
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    /* Very Small Mobile Devices */
    .hero-headline {
        font-size: 1.65rem;
    }
    
    .hero-subheadline {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card,
    .contact-card {
        padding: var(--spacing-sm);
    }
}

/* ============================================
   Mobile Touch Improvements
   ============================================ */
@media (max-width: 768px) {
    /* Better touch targets */
    .btn,
    .filter-btn,
    .nav-link,
    .play-btn,
    .view-btn,
    .swipe-btn {
        min-height: 44px;
        min-width: 44px;
        -webkit-tap-highlight-color: rgba(107, 70, 193, 0.2);
    }
    
    /* Smooth scrolling on mobile */
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent text size adjustment on orientation change */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Better image rendering on mobile */
    img,
    video {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve button press feedback */
    .btn:active,
    .filter-btn:active,
    .nav-link:active {
        transform: scale(0.98);
    }
    
    /* Better card shadows on mobile */
    .service-card,
    .work-item,
    .contact-card,
    .stat-card {
        -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Better spacing for mobile sections */
    section {
        scroll-margin-top: 70px;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

