/* CSS Variables - Professional Color Palette */
:root {
    --primary-black: #000000;
    --primary-red: #cd3032;
    --dark-gray: #0f0f0f;
    --medium-gray: #1a1a1a;
    --light-gray: #252525;
    --white: #ffffff;
    --text-light: #a1a1a1;
    --text-muted: #707070;
    --text-dark: #2a2a2a;
    --bg-primary: #111111;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #222222;
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.5);
    --shadow-dark: rgba(0, 0, 0, 0.7);
    --gradient-red: linear-gradient(135deg, #e11d48 0%, #dc2626 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    --gradient-black: linear-gradient(135deg, #2a2a2a 0%, #111111 100%);
    --border-dark: #333333;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--bg-primary);
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main content padding for pages other than index */
main {
    padding-top: 7rem;
}

/* Override for index page - no top padding needed due to hero section */
.index-page main {
    padding-top: 0;
}

/* Professional Button Design */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    transition: var(--transition-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    outline: none;
}

.btn:focus {
    outline: none;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
}

.btn-primary i {
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.btn-primary:hover i {
    transform: translateX(2px);
}

/* Global Section Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-subtitle {
    display: inline-block;
    color: var(--primary-red);
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-red);
    border-radius: 2px;
}

section h1.section-title, .section-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 auto;
}


/* Global Mobile Responsive Styles */
@media (max-width: 768px) {

    /* Hero Section Mobile Adjustments */
    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .slide-content .container {
        padding: 0 1rem;
    }

    .content-wrapper {
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
    }

    .slide-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }

    .slide-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.4;
    }

    .slide-cta {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }

    /* Navigation arrows - hide on mobile */
    .slider-nav {
        display: none;
    }

    /* Slider dots - adjust for mobile */
    .slider-dots {
        bottom: 4rem;
        gap: 0.5rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Scroll indicator - hide on mobile */
    .scroll-indicator {
        display: none;
    }

    /* Container adjustments */
    .container {
        padding: 0 1rem;
    }

    /* Section spacing adjustments */
    .services,
    .packages,
    .gallery,
    .about,
    .blog,
    .contact {
        padding: 4rem 0;
    }

    /* Section header adjustments */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .bottom-bar {
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
        text-align: center;
        height: auto;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .service-features {
        margin-bottom: 0.5rem;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }

    .service-cta {
        font-size: 0.9rem;
    }

    /* Packages */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .package-card {
        padding: 1.5rem 1.75rem;
    }

    .package-card.popular {
        transform: translateY(0) scale(1);
    }

    .package-header {
        margin-bottom: 1.25rem;
    }

    .package-name {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .package-amount {
        font-size: 2.5rem;
    }

    .package-currency {
        font-size: 1.25rem;
    }

    .package-period {
        font-size: 0.9rem;
    }

    .package-features {
        margin-bottom: 1.5rem;
    }

    .package-features li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .package-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Gallery */
    .gallery-container {
        height: 70vh;
        max-height: 500px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px; /* hem yatay hem dikey boşluk */
    }

    .gallery-item.tall {
        grid-row-end: span 25;
    }

    .gallery-item.medium {
        grid-row-end: span 18;
    }

    .gallery-item.short {
        grid-row-end: span 15;
    }

    .gallery-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .gallery-category {
        font-size: 0.8rem;
    }

    .gallery-zoom {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .gallery-more-text {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .gallery-more-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }


    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-description h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .about-description p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        text-align: center;
        padding: 1.25rem 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin: 0 auto 0.75rem;
    }

    .feature-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .about-cta {
        gap: 0.75rem;
        justify-content: center;
    }

    .about-hero-image img {
        height: 300px;
    }

    .about-visual {
        margin-top: 0;
        margin-bottom: 0;
    }


    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Global styles for very small screens */

    /* Hero section for very small screens */
    .slide-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0.5rem;
    }

    .slide-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .slide-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }

    .slide-cta {
        font-size: 0.85rem;
        padding: 0.7rem 1.1rem;
    }

    /* Hero height adjustment for small screens */
    .hero {
        min-height: 500px;
    }

    /* Services - Single column for small screens */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .service-card {
        padding: 1.25rem 0.75rem;
        height: auto;
    }

    /* Packages for small screens */
    .packages-grid {
        max-width: 350px;
        gap: 0.75rem;
    }

    .package-card {
        padding: 1.25rem 2rem;
    }

    .package-header {
        margin-bottom: 1rem;
    }

    .package-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .package-amount {
        font-size: 2.2rem;
    }

    .package-currency {
        font-size: 1.1rem;
    }

    .package-period {
        font-size: 0.85rem;
    }

    .package-features {
        margin-bottom: 1.25rem;
    }

    .package-features li {
        padding: 0.4rem 0;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .package-features li::before {
        width: 16px;
        height: 16px;
    }

    .package-features li::after {
        font-size: 0.7rem;
    }

    .package-cta {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Packages footer */
    .packages-footer {
        margin-top: 2rem;
    }

    .packages-note {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .packages-actions .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto 0.75rem;
    }

    .service-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .service-description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .service-features {
        margin-bottom: 0.05rem;
    }

    .service-features li {
        font-size: 0.8rem;
        padding: 0.2rem 0;
    }

    .service-features li::before {
        width: 6px;
        height: 6px;
    }

    .service-cta {
        font-size: 0.85rem;
    }

    /* Gallery - 2 columns for small screens */
    .gallery-container {
        height: 60vh;
        max-height: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
        padding: 0.3rem;
    }

    .gallery-item.tall {
        grid-row-end: span 20;
    }

    .gallery-item.medium {
        grid-row-end: span 15;
    }

    .gallery-item.short {
        grid-row-end: span 12;
    }

    .gallery-title {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .gallery-category {
        font-size: 0.75rem;
    }

    .gallery-zoom {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    .gallery-more-text {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .gallery-more-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    /* Gallery fade overlay adjustment */
    .gallery-fade-overlay {
        height: 150px;
        padding-bottom: 1.5rem;
    }

    /* Lightbox mobile optimizations */
    .lightbox-container {
        max-width: 95vw;
        max-height: 95vh;
    }

    .lightbox-close {
        top: -50px;
        font-size: 1.5rem;
        padding: 0.3rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: -50px;
    }

    .lightbox-next {
        right: -50px;
    }

    .lightbox-content {
        max-height: 60vh;
    }

    .lightbox-title {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .lightbox-category {
        font-size: 0.9rem;
    }

    .lightbox-thumbnails {
        margin-top: 1.5rem;
        gap: 0.3rem;
    }

    .lightbox-thumb {
        width: 50px;
        height: 50px;
    }



    .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }


    /* Blog */
    .blog-nav {
        display: none;
    }
}

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

/* Focus States for Accessibility */
.nav-link:focus,
.btn:focus,
.contact-phone:focus,
.mobile-menu-btn:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
    border-radius: 4px;
}


/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-black: #000000;
        --text-light: #000000;
        --shadow-light: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.5);
    }
}


/* Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out;
    opacity: 0.7;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.6), 0 0 40px rgba(225, 29, 72, 0.3);
    transform: translate(-50%, -50%);
}

.cursor-follower.large {
    width: 40px;
    height: 40px;
    opacity: 0.5;
    background: transparent;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease-out;
}

/* Hide cursor follower on mobile */
@media (max-width: 768px) {
    .cursor-follower {
        display: none;
    }
}

/* Logo theme control - Dark logo default, light logo on scroll */
.light-logo {
    display: none;
}
.dark-logo {
    display: inline-block;
}

/* When header is scrolled, keep showing dark logo since background is now dark */
.header.scrolled .light-logo {
    display: none !important;
}
.header.scrolled .dark-logo {
    display: inline-block !important;
}

/* Smooth logo transition */
.logo-img {
    transition: opacity 0.3s ease;
}

/* Footer always shows dark logo (default) */
.footer .light-logo {
    display: none;
}
.footer .dark-logo {
    display: inline-block;
}

/* Scroll Animations for Home Page */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
}

/* Fade up animation */
.scroll-animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate-fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Slide left animation */
.scroll-animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.scroll-animate-slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Slide right animation */
.scroll-animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.scroll-animate-slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Individual items with delay */
.scroll-animate-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s ease;
}

.scroll-animate-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Service cards animation */
.service-card.scroll-animate-item {
    transform: translateY(40px) scale(0.9) rotateX(15deg);
}

.service-card.scroll-animate-item.animate {
    transform: translateY(0) scale(1) rotateX(0deg);
}

.service-card.animate:hover {
    transform: translateY(-10px) scale(1.05) rotateX(-5deg);
}

/* Gallery items animation */
.gallery-item.scroll-animate-item {
    transform: translateY(50px) scale(0.8) rotateY(10deg);
}

.gallery-item.scroll-animate-item.animate {
    transform: translateY(0) scale(1) rotateY(0deg);
}

.gallery-item.animate:hover {
    transform: translateY(-5px) scale(1.02) rotateY(-2deg);
}

/* Blog cards animation */
.blog-card.scroll-animate-item {
    transform: translateY(40px) scale(0.9) rotateX(10deg);
}

.blog-card.scroll-animate-item.animate {
    transform: translateY(0) scale(1) rotateX(0deg);
}

.blog-card.animate:hover {
    transform: translateY(-8px) scale(1.03) rotateX(-3deg);
}

/* About items animation */
.about-item.scroll-animate-item {
    transform: translateY(30px) scale(0.95) rotateZ(2deg);
}

.about-item.scroll-animate-item.animate {
    transform: translateY(0) scale(1) rotateZ(0deg);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-animate-slide-left,
    .scroll-animate-slide-right {
        transform: translateY(30px);
    }

    .scroll-animate-slide-left.animate,
    .scroll-animate-slide-right.animate {
        transform: translateY(0);
    }

    .service-card.scroll-animate-item,
    .gallery-item.scroll-animate-item,
    .blog-card.scroll-animate-item,
    .about-item.scroll-animate-item {
        transform: translateY(30px) scale(0.95);
    }

    .service-card.scroll-animate-item.animate,
    .gallery-item.scroll-animate-item.animate,
    .blog-card.scroll-animate-item.animate,
    .about-item.scroll-animate-item.animate {
        transform: translateY(0) scale(1);
    }
}

/* Section CTA Styles */
.section-cta-centered {
    text-align: center;
    margin-top: 3rem;
}
/* Header Styles - Professional Design */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: var(--transition-medium);
}

.navbar {
    padding: 0.95rem 0;
}

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

/* Professional Logo Design */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-medium);
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-red);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
    transition: var(--transition-medium);
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

/* Hide mobile-only items on desktop */
.nav-item.mobile-only {
    display: none;
}

.nav-item {
    position: relative;
}
a.nav-link {
    margin: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
    outline: none;
}

.nav-link:focus {
    outline: none;
}

.nav-link.active {
    color: var(--primary-red);
    font-weight: var(--font-weight-semibold);
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-red);
    transition: var(--transition-medium);
    transform: translateX(-50%);
    border-radius: 1px;
}

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

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

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Phone Info Styles */
.phone-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
}

.phone-info:hover {
    transform: translateY(-1px);
    color: var(--white);
}

.phone-info i {
    color: var(--primary-red);
    font-size: 1.4rem;
}

.phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.phone-number {
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

.phone-first {
    font-size: 1.1rem;
}

.phone-second {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
}

/* Header scroll state styles */
.header.scrolled {
    position: fixed;
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none;
    box-shadow: none;
}


.header.scrolled .nav-link {
    color: #ffffff;
}

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

.header.scrolled .logo-name,
.header.scrolled .logo-subtitle {
    color: #ffffff;
}

.header.scrolled .phone-info,
.header.scrolled .phone-number {
    color: #ffffff;
}

.header.scrolled .phone-info:hover {
    color: #ffffff;
}

.header.scrolled .phone-info i {
    color: var(--primary-red);
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    padding: 0.5rem;
    border-radius: var(--border-radius);
}

.contact-phone:hover {
    color: var(--primary-red);
    background-color: var(--light-gray);
}

.contact-phone i {
    font-size: 0.8rem;
}

/* Simple Modern Hamburger Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    border-radius: 6px;
    transition: all 0.2s ease;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    outline: none;
}

.mobile-menu-btn:focus {
    outline: none;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Active state for hamburger */
.mobile-menu-btn:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
}

.hamburger-line {
    width: 26px;
    height: 2.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header mobile adjustments - thinner header */
    .header {
        background: transparent;
        backdrop-filter: none;
        position: absolute;
        border-bottom: none;
    }
    .nav-item {
        width: 100%;
    }

    /* Make logo smaller only on mobile */
    .logo-img {
        max-width: 80px !important;
    }

    /* Only add background when scrolled or on non-home pages */
    .header.scrolled,
    body:not(.index-page) .header {
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(15px);
        position: fixed;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar {
        padding: 1.5rem 0;
    }

    .nav-container {
        padding: 0 1.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Logo adjustments for mobile - bigger */
    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-icon i {
        font-size: 1rem;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    /* Hide desktop navigation items on mobile - fixed width issues */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.3s ease-in-out;
        z-index: 9998;
        overflow: hidden;
        box-sizing: border-box;
    }

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

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        min-height: 44px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--border-radius);
        transition: var(--transition-medium);
        box-sizing: border-box;
    }

    .nav-link:hover,
    .nav-link:focus {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
        outline: none;
    }

    .nav-link:active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(0.98);
    }

    .nav-link.active {
        color: var(--white);
    }

    .nav-menu::after {
        content: '';
        display: block;
        width: 80%;
        max-width: 300px;
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
        margin: 1rem 0;
    }

    .nav-menu .mobile-contact {
        background: var(--gradient-red);
        color: var(--white);
        border-radius: var(--border-radius);
        padding: 1rem 2rem;
        text-decoration: none;
        font-weight: var(--font-weight-semibold);
        transition: var(--transition-medium);
        width: 100%;
        text-align: center;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-sizing: border-box;
        margin: auto;
    }

    .nav-menu .mobile-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
    }

    .nav-item.mobile-only {
        display: block;
    }

    .phone-info {
        display: none;
    }

    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 9999;
    }

    .header.scrolled .hamburger-line {
        background-color: #ffffff;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Even smaller logo on very small screens */
    .logo-img {
        max-width: 80px !important;
    }

    main {
        padding-top: 5rem;
    }

    /* Logo for very small screens */
    .logo-icon {
        width: 20px;
        height: 20px;
    }

    .logo-icon i {
        font-size: 0.6rem;
    }

    .logo-name {
        font-size: 0.7rem;
    }

    .logo-subtitle {
        font-size: 0.35rem;
    }

    .mobile-menu-btn {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
    }

    .hamburger-line {
        width: 22px;
        height: 2px;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        width: 90%;
        max-width: 280px;
    }

    .nav-menu .mobile-contact {
        width: 90%;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
    }
}
/* Hero Section / Slider - Professional Design */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
    transform: translateX(100%);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

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

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    transition: var(--transition-slow);
}

.slide.active .slide-image {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(15, 15, 15, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 3;
    padding-top: 0;
}

.slide-content .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.content-wrapper {
    max-width: 600px;
    animation: slideInUp 1s ease-out;
}

.slide-subtitle {
    display: inline-block;
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s both;
}

section h1.slide-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.slide-actions {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.slide-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: var(--primary-red);
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.slide-cta:hover {
    background: var(--gradient-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.4);
    color: var(--white);
}

/* Clean Minimal Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 4px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    opacity: 0.8;
}

.slider-nav:hover {
    background: var(--primary-red);
    opacity: 1;
    transform: translateY(-50%);
}

.prev-slide {
    left: 2rem;
}

.next-slide {
    right: 2rem;
}

/* Simple Clean Dots */
.slider-dots {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.8;
    z-index: 5;
    animation: bounce 2s infinite;
    width: fit-content;
    text-align: center;
}

.scroll-indicator i {
    font-size: 1rem;
}

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

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

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 70vh;
    }

    .slide-content .container {
        padding: 0 1rem;
    }

    .content-wrapper {
        max-width: 100%;
        text-align: center;
    }

    .slide-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .slide-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .slide-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .slide-cta {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
        border-radius: 6px;
        font-weight: 600;
        min-width: 160px;
        text-align: center;
    }

    /* Hide arrows on mobile - swipe only */
    .slider-nav {
        display: none;
    }

    /* Clean mobile dots */
    .slider-dots {
        bottom: 2.5rem;
        gap: 0.5rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
}

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

    .slide-content .container {
        padding: 0 0.75rem;
    }

    .slide-title {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
        margin-bottom: 0.75rem;
    }

    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .slide-cta {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        min-width: 140px;
        text-align: center;
    }

    .slider-dots {
        bottom: 2rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .scroll-indicator {
        display: none;
    }
}/* Services Section */
.services {
    padding: 1.5rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Tablet and above */
@media (min-width: 768px) {
    .services {
        padding: 2.5rem 0;
    }
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(15, 15, 15, 0.5) 100%);
    transform: skewX(-15deg);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Tablet */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        margin-top: 4rem;
    }
}

.service-card {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-medium);
    border: 1px solid var(--border-dark);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Tablet and above */
@media (min-width: 768px) {
    .service-card {
        padding: 2.5rem 2rem;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

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

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: var(--transition-medium);
    position: relative;
}

/* Tablet and above */
@media (min-width: 768px) {
    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }
}

.service-card:hover .service-icon {
    background: var(--gradient-red);
    color: var(--white);
    transform: scale(1.1);
}

.service-card:hover .service-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-icon 1.5s ease-out;
}

.service-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

/* Tablet and above */
@media (min-width: 768px) {
    .service-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.service-card:hover .service-title {
    color: var(--primary-red);
}

.service-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Tablet and above */
@media (min-width: 768px) {
    .service-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}

.service-features {
    list-style: none;
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

/* Tablet and above - back to list style */
@media (min-width: 768px) {
    .service-features {
        text-align: left;
        display: block;
        gap: unset;
    }
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
    transition: var(--transition-fast);
    width: fit-content;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tablet and above - back to list style */
@media (min-width: 768px) {
    .service-features li {
        gap: 0.75rem;
        padding: 0.5rem 0;
        font-size: 0.95rem;
        width: auto;
        background: transparent;
        border-radius: 0;
        border: none;
    }
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Tablet and above */
@media (min-width: 768px) {
    .service-features li::before {
        width: 8px;
        height: 8px;
    }
}

.service-card:hover .service-features li {
    color: var(--white);
    transform: translateX(5px);
}

/* Mobile hover - no transform to avoid layout issues */
@media (max-width: 767px) {
    .service-card:hover .service-features li {
        transform: none;
    }
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.service-cta:hover {
    gap: 0.75rem;
    color: var(--white);
}

.service-cta i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

/* Service Card Animations */
@keyframes pulse-icon {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out both;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Empty State Styles */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    margin: 3rem auto;
    max-width: 500px;
    transition: var(--transition-medium);
}

.empty-state:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary-red);
    opacity: 0.7;
    position: relative;
    overflow: hidden;
}

.empty-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, var(--primary-red) 90deg, transparent 180deg);
    animation: rotate 3s linear infinite;
    opacity: 0.3;
}

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

.empty-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 1rem;
}

.empty-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 400px;
}

.empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: var(--gradient-red);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.empty-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-medium);
}

.empty-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 127, 0.3);
}

.empty-cta:hover::before {
    left: 100%;
}

.empty-cta i {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.empty-cta:hover i {
    transform: translateX(3px);
}

/* Mobile responsiveness for empty state */
@media (max-width: 768px) {
    .empty-state {
        padding: 3rem 1rem;
        margin: 2rem auto;
    }

    .empty-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .empty-title {
        font-size: 1.25rem;
    }

    .empty-description {
        font-size: 0.9rem;
    }

    .empty-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
}

/* Fade up animation */
.scroll-animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate-fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Individual items with delay */
.scroll-animate-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s ease;
}

.scroll-animate-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Service card specific animations */
.service-card.scroll-animate-item {
    transform: translateY(40px) scale(0.95);
}

.service-card.scroll-animate-item.animate {
    transform: translateY(0) scale(1);
}

.service-card.animate .service-icon {
    animation: serviceIconBounce 0.6s ease 0.3s both;
}

@keyframes serviceIconBounce {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}/* Packages Section */
.packages {
    padding: 3rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Tablet and above */
@media (min-width: 768px) {
    .packages {
        padding: 6rem 0;
    }
}

.packages::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(37, 37, 37, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.packages .container {
    position: relative;
    z-index: 2;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Tablet */
@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
}

.package-card {
    padding: 1.5rem 1.25rem;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 15px 50px var(--shadow-medium);
    border: 1px solid var(--border-dark);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-card {
        padding: 2.5rem 2rem;
    }
}

.package-card.popular {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 25px 70px rgba(225, 29, 72, 0.2);
    border: 2px solid var(--primary-red);
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-card.popular {
        transform: translateY(0) scale(1.05);
    }
}

.package-card.popular::before {
    content: 'En Popüler';
    position: absolute;
    top: 1.8rem;
    right: -2.5rem;
    background: var(--gradient-red);
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px var(--shadow-medium);
}

.package-card.popular:hover {
    transform: translateY(-10px) scale(1.05);
}

.package-header {
    margin-bottom: 1.25rem;
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-header {
        margin-bottom: 2rem;
    }
}

.package-name {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-name {
        font-size: 1.5rem;
    }
}

.package-card.popular .package-name {
    color: var(--primary-red);
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.package-amount {
    font-size: 2.25rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-red);
    line-height: 1;
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-amount {
        font-size: 3rem;
    }
}

.package-currency {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-light);
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-currency {
        font-size: 1.5rem;
    }
}

.package-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-features {
        padding-left: 0;
    }
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-features {
        margin-bottom: 2.5rem;
    }
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-dark);
    transition: var(--transition-fast);
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-features li {
        gap: 1rem;
        padding: 0.75rem 0;
        font-size: 1rem;
    }
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-features li::before {
        width: 20px;
        height: 20px;
    }
}

.package-features li::after {
    content: '✓';
    position: absolute;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: var(--font-weight-bold);
    margin-left: -16px;
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-features li::after {
        font-size: 0.75rem;
        margin-left: -20px;
    }
}

.package-card:hover .package-features li {
    color: var(--white);
    transform: translateX(5px);
}

.package-cta {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius);
    transition: var(--transition-medium);
    text-decoration: none;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
}

/* Tablet and above */
@media (min-width: 768px) {
    .package-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.package-card.popular .package-cta {
    background: var(--gradient-red);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.3);
}

.package-cta:hover {
    background: var(--gradient-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.4);
}

.package-card.popular .package-cta:hover {
    background: var(--primary-black);
    border-color: var(--primary-black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.packages-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Tablet and above */
@media (min-width: 768px) {
    .packages-footer {
        margin-top: 3rem;
    }
}

.packages-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Tablet and above */
@media (min-width: 768px) {
    .packages-note {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}

.packages-note i {
    color: var(--primary-red);
}

.packages-actions {
    margin-top: 1rem;
}

/* Package Card Animations */
.package-card {
    animation: fadeInUp 0.8s ease-out both;
}

.package-card:nth-child(2) {
    animation-delay: 0.2s;
}

.package-card:nth-child(3) {
    animation-delay: 0.4s;
}

.package-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.package-card.popular.visible {
    transform: translateY(0) scale(1.05);
}/* Yeni Temiz Galeri Stilleri */
.gallery {
    background: var(--primary-black);
    padding: 8rem 0;
    position: relative;
}

.gallery .section-header {
    margin-bottom: 4rem;
}

.gallery .section-subtitle {
    color: var(--primary-red);
}

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

.gallery .section-description {
    color: #e0e0e0;
}

/* Filtre Butonları */
.gallery-categories {
    background: var(--primary-black);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

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

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-medium);
    font-weight: var(--font-weight-medium);
}

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

/* Basit Grid Yapısı */
.gallery-container,
.gallery-page-container {
    position: relative;
    padding: 0 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1400px;
}

/* Galeri Öğeleri */
.gallery-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition-medium);
}

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

/* Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.9) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

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

.gallery-info {
    margin-top: auto;
    align-self: flex-end;
}

.gallery-zoom {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-medium);
}

.gallery-zoom:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.3rem;
    color: var(--white);
}

.gallery-category {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
    color: white;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin: 0;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-item {
    animation: slideUp 0.6s ease forwards;
}

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

/* Responsive */
@media (max-width: 768px) {
    .gallery-container,
    .gallery-page-container {
        padding: 0 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .lightbox-content {
        padding: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 1.5rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
}/* About Section */
.about {
    padding: 8rem 0;
    background: var(--primary-black);
    position: relative;
}

.about .section-header {
    margin-bottom: 4rem;
}

.about .section-subtitle {
    color: var(--primary-red);
}

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

.about .section-description {
    color: #e0e0e0;
}

/* Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.about-stats .stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
}

.about-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #d0d0d0;
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
}

/* Main Content */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-description h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-semibold);
}

.about-description p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Feature Cards Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-medium);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), #ff4757);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--white);
}

.feature-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-semibold);
}

.feature-card p {
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta .btn {
    width: fit-content;
}

/* Visual Section */
.about-visual {
    position: relative;
}

/* Image Slider - Container Animation Style */
.about-image-slider {
    width: 100%;
    height: 680px;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Image containers */
.image-container {
    position: absolute;
    overflow: hidden;
    border-radius: 12px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

/* Container positions and initial sizes */
.image-container:nth-child(1) {
    top: 4px;
    left: 4px;
    animation: container1Animation 20s infinite ease-in-out;
}

.image-container:nth-child(2) {
    top: 4px;
    right: 4px;
    animation: container2Animation 20s infinite ease-in-out;
}

.image-container:nth-child(3) {
    bottom: 4px;
    right: 4px;
    animation: container3Animation 20s infinite ease-in-out;
}

.image-container:nth-child(4) {
    bottom: 4px;
    left: 4px;
    animation: container4Animation 20s infinite ease-in-out;
}

/* Container 1 (Top-left) Animation */
@keyframes container1Animation {
    0%   { width: calc(70% - 4px); height: calc(40% - 4px); }
    25%  { width: calc(70% - 4px); height: calc(60% - 4px); }
    50%  { width: calc(30% - 4px); height: calc(60% - 4px); }
    75%  { width: calc(30% - 4px); height: calc(40% - 4px); }
    100% { width: calc(70% - 4px); height: calc(40% - 4px); }
}

/* Container 2 (Top-right) Animation */
@keyframes container2Animation {
    0%   { width: calc(30% - 4px); height: calc(40% - 4px); }
    25%  { width: calc(30% - 4px); height: calc(60% - 4px); }
    50%  { width: calc(70% - 4px); height: calc(60% - 4px); }
    75%  { width: calc(70% - 4px); height: calc(40% - 4px); }
    100% { width: calc(30% - 4px); height: calc(40% - 4px); }
}

/* Container 3 (Bottom-right) Animation */
@keyframes container3Animation {
    0%   { width: calc(30% - 4px); height: calc(60% - 4px); }
    25%  { width: calc(30% - 4px); height: calc(40% - 4px); }
    50%  { width: calc(70% - 4px); height: calc(40% - 4px); }
    75%  { width: calc(70% - 4px); height: calc(60% - 4px); }
    100% { width: calc(30% - 4px); height: calc(60% - 4px); }
}

/* Container 4 (Bottom-left) Animation */
@keyframes container4Animation {
    0%   { width: calc(70% - 4px); height: calc(60% - 4px); }
    25%  { width: calc(70% - 4px); height: calc(40% - 4px); }
    50%  { width: calc(30% - 4px); height: calc(40% - 4px); }
    75%  { width: calc(30% - 4px); height: calc(60% - 4px); }
    100% { width: calc(70% - 4px); height: calc(60% - 4px); }
}

/* .about-image-slider:hover {
    transform: scale(1.02);
    transition: var(--transition-medium);
} */

.image-container {
    border-radius: 10px;
}

.image-container:nth-child(1),
.image-container:nth-child(2) {
    top: -3px;
}

.image-container:nth-child(3),
.image-container:nth-child(4) {
    bottom: -3px;
}

.image-container:nth-child(1),
.image-container:nth-child(4) {
    left: -3px;
}

.image-container:nth-child(2),
.image-container:nth-child(3) {
    right: -3px;
}

/* Medium screens - 3 columns */
@media (max-width: 1024px) {
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-bottom: 4rem;
    }


}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }

    .about .section-header {
        margin-bottom: 2.5rem;
    }

    .about .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .about .section-description {
        font-size: 1rem;
    }

    /* About Stats Mobile */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .about-stats .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .about-stats .stat-number {
        font-size: 1.8rem !important;
        margin-bottom: 0.25rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-description h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .about-description p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        text-align: center;
        padding: 1.25rem 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin: 0 auto 0.75rem;
    }

    .feature-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .about-cta {
        gap: 0.75rem;
        justify-content: center;
    }

    .about-image-slider {
        height: 680px;
    }

    .image-container {
        border-radius: 10px;
    }

    .image-container:nth-child(1),
    .image-container:nth-child(2) {
        top: -2px;
    }

    .image-container:nth-child(3),
    .image-container:nth-child(4) {
        bottom: -2px;
    }

    .image-container:nth-child(1),
    .image-container:nth-child(4) {
        left: -2px;
    }

    .image-container:nth-child(2),
    .image-container:nth-child(3) {
        right: -2px;
    }

    .about-visual {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    /* About for small screens */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .about-stats .stat-item {
        padding: 1.25rem 0.75rem;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .about-stats .stat-number {
        font-size: 1.5rem !important;
        margin-bottom: 0.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-description h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .about-description p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }

    .about-features-grid {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .feature-card {
        padding: 1rem 0.75rem;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card h4 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .about-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .about-image-slider {
        height: 680px;
    }

    .image-container {
        border-radius: 12px;
    }

    .image-container:nth-child(1),
    .image-container:nth-child(2) {
        top: -1px;
    }

    .image-container:nth-child(3),
    .image-container:nth-child(4) {
        bottom: -1px;
    }

    .image-container:nth-child(1),
    .image-container:nth-child(4) {
        left: -1px;
    }

    .image-container:nth-child(2),
    .image-container:nth-child(3) {
        right: -1px;
    }

    .about-visual {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* About Values Section */
.about-values {
    margin-top: 5rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-values-title {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-bold);
}

.about-values-description {
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-value-item {
    text-align: center;
    padding: 1.5rem;
}

.about-value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.about-value-title {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.about-value-description {
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
}

/* Fade up animation */
.scroll-animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate-fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.scroll-animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.scroll-animate-slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.scroll-animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.scroll-animate-slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Individual items with delay */
.scroll-animate-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s ease;
}

.scroll-animate-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive animations */
@media (max-width: 768px) {
    .scroll-animate-slide-left,
    .scroll-animate-slide-right {
        transform: translateY(30px);
    }

    .scroll-animate-slide-left.animate,
    .scroll-animate-slide-right.animate {
        transform: translateY(0);
    }
}/* Blog Section */
.blog {
    padding: 8rem 0;
    background: var(--primary-black);
    position: relative;
}

.blog .section-header {
    margin-bottom: 4rem;
}

.blog .section-subtitle {
    color: var(--primary-red);
}

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

.blog .section-description {
    color: #e0e0e0;
}


/* Blog Container */
.blog-container {
    position: relative;
    margin-bottom: 3rem;
}

/* Blog Slider */
.blog-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

/* Blog Cards */
.blog-card {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
    scroll-snap-align: start;
    /* animation: blogCardFloat 6s ease-in-out infinite; */
}

.blog-card:nth-child(2) {
    animation-delay: -2s;
}

.blog-card:nth-child(3) {
    animation-delay: -4s;
}

.blog-card:nth-child(4) {
    animation-delay: -1s;
}

.blog-card:nth-child(5) {
    animation-delay: -3s;
}

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

.blog-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--white);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-medium);
}

.blog-read-more:hover {
    color: #ff4757;
    transform: translateX(5px);
}

/* Navigation Arrows */
.blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-medium);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.blog-nav:focus {
    outline: none;
}

.blog-nav:hover {
    background: #ff4757;
    transform: translateY(-50%) scale(1.1);
}

.blog-prev {
    left: -25px;
}

.blog-next {
    right: -25px;
}

/* Blog Footer */
.blog-footer {
    text-align: center;
    margin-top: 3rem;
}

.blog-footer .btn {
    width: fit-content;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .blog {
        padding: 4rem 0;
    }

    .blog .section-header {
        margin-bottom: 2.5rem;
    }

    .blog .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .blog .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Hide navigation arrows on mobile */
    .blog-nav {
        display: none;
    }

    /* Blog container mobile */
    .blog-container {
        margin-bottom: 2rem;
    }

    /* Blog slider mobile */
    .blog-slider {
        gap: 1rem;
        padding: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    /* Blog cards mobile */
    .blog-card {
        flex: 0 0 auto;
        min-width: 280px;
        max-width: 100%;
        width: calc(100vw - 3rem);
        scroll-snap-align: start;
    }

    .blog-image {
        height: 160px;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .blog-category {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        top: 0.75rem;
        left: 0.75rem;
    }

    .blog-meta {
        gap: 1rem;
        margin-bottom: 0.75rem;
        font-size: 0.8rem;
    }

    .blog-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-read-more {
        font-size: 0.9rem;
    }

    /* Blog footer mobile */
    .blog-footer {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 3rem 0;
    }

    .blog .section-header {
        margin-bottom: 2rem;
    }

    .blog .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }

    .blog .section-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Blog slider very small screens */
    .blog-slider {
        gap: 0.75rem;
        padding: 0.75rem;
    }

    /* Blog cards very small screens */
    .blog-card {
        flex: 0 0 auto;
        min-width: 250px;
        max-width: 100%;
        width: calc(100vw - 2rem);
    }

    .blog-image {
        height: 140px;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-category {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
        top: 0.5rem;
        left: 0.5rem;
    }

    .blog-meta {
        gap: 0.75rem;
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
    }

    .blog-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .blog-excerpt {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-read-more {
        font-size: 0.85rem;
    }

    .blog-footer {
        margin-top: 1.5rem;
    }
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pagination a:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

.pagination .active span {
    background: var(--primary-red);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
}

/* Fade up animation */
.scroll-animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate-fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Individual items with delay */
.scroll-animate-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s ease;
}

.scroll-animate-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Blog specific animations */
.blog-card.scroll-animate-item {
    transform: translateY(40px) scale(0.9);
}

.blog-card.scroll-animate-item.animate {
    transform: translateY(0) scale(1);
}

.blog-card.animate:hover {
    transform: translateY(-10px) scale(1.05);
}

/* Blog grid layout for page */
.blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .blog .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card.scroll-animate-item {
        transform: translateY(30px) scale(0.95);
    }
}
/* Blog Detail Page Styles */

/* Blog Detail Section */
.blog-detail {
    background: var(--primary-black);
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.blog-detail .container {
    max-width: 900px;
}

/* Article Header */
.article-header {
    margin-bottom: 3rem;
}

.article-header .meta-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-header .blog-category {
    position: static;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
}

.article-header .meta-details {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--white);
    flex-wrap: wrap;
}

.article-header .meta-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-header .article-description {
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

/* Featured Image */
.featured-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* Article Content */
.article-content {
    color: var(--white);
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.article-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: #e0e0e0;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border-left: 4px solid var(--primary-red);
    border-radius: var(--border-radius);
    font-style: italic;
    color: #f0f0f0;
}

.article-content strong {
    color: var(--white);
    font-weight: 600;
}

.article-content a {
    color: var(--primary-red);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.article-content a:hover {
    color: #dc2626;
}

/* Social Share */
.social-share {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.social-share h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-share .share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-share .share-facebook {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #1877f2;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.social-share .share-twitter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #1da1f2;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.social-share .share-linkedin {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #0a66c2;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.social-share .share-copy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--medium-gray);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
}

.social-share a:hover,
.social-share button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Article Navigation */
.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    gap: 2rem;
    flex-wrap: wrap;
}

.article-nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.article-nav a:hover {
    color: var(--primary-red);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem !important;
    }

    .article-content {
        font-size: 1rem !important;
    }

    .social-share {
        text-align: center;
    }

    .social-share .share-buttons {
        justify-content: center;
    }

    .article-nav {
        justify-content: center;
        text-align: center;
    }
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Form Error Messages */
.error-message {
    color: var(--primary-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Quick Contact Info */
.quick-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.quick-contact-item {
    text-align: center;
}

.quick-contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.quick-contact-item h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.quick-contact-item p {
    color: #d0d0d0;
    margin: 0;
}

.quick-contact-item p a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

/* Contact Card Info */
.contact-card-info {
    color: var(--medium-gray);
    display: block;
    margin-top: 0.5rem;
}

/* Map Container */
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
}

.contact .section-header {
    margin-bottom: 4rem;
}

.contact .section-subtitle {
    color: var(--primary-red);
}

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

.contact .section-description {
    color: #e0e0e0;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
    color: var(--white) !important;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.8rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-card p a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-medium);
}

.contact-card p a:hover {
    color: var(--primary-red);
}

.contact-card span {
    color: var(--white);
    font-size: 0.9rem;
}

/* Contact Social */
.contact-social {
    margin-top: 1rem;
}

.contact-social h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.social-item.instagram:hover { border-color: #e4405f; }
.social-item.facebook:hover { border-color: #1877f2; }
.social-item.youtube:hover { border-color: #ff0000; }
.social-item.twitter:hover { border-color: #1da1f2; }

.social-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.social-item span {
    color: #e0e0e0;
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: #d0d0d0;
    font-size: 1rem;
}

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

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

.form-group label {
    display: block;
    color: var(--white);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--border-radius) !important;
    color: var(--white) !important;
    font-size: 1rem;
    transition: var(--transition-medium);
    box-sizing: border-box;
}

/* Simple select styling */
.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: #2a2a2a;
    color: white;
    padding: 8px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
    font-family: inherit;
    resize: vertical;
}

.form-submit {
    width: fit-content;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    cursor: pointer;
    border-radius: 8px;
    font-size: 1.05rem;
}

/* Contact Map */
.contact-map {
    margin-top: 3rem;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(225, 29, 72, 0.05) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

.map-content i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: block;
}

.map-content h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-semibold);
}

.map-content p {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-red);
    border-radius: var(--border-radius);
    transition: var(--transition-medium);
}

.map-link:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }

    .contact .section-header {
        margin-bottom: 2.5rem;
    }

    .contact .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .contact .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    /* Compact contact cards for mobile */
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-card {
        text-align: center;
        padding: 1.25rem 1rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin: 0 auto 1rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .contact-card p {
        margin-bottom: 0.3rem;
        font-size: 0.85rem;
    }

    .contact-card p a {
        font-size: 0.85rem;
    }

    .contact-card span {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Social section mobile */
    .contact-social {
        margin-top: 1.5rem;
    }

    .contact-social h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

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

    .social-item {
        padding: 1rem 0.75rem;
        gap: 0.5rem;
    }

    .social-item i {
        font-size: 1.3rem;
    }

    .social-item span {
        font-size: 0.85rem;
    }

    /* Form adjustments */
    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .contact-form-header h3 {
        font-size: 1.5rem;
    }

    .contact-form-header p {
        font-size: 0.9rem;
    }

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

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

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    /* Map mobile */
    .contact-map {
        margin-top: 2rem;
    }

    .map-placeholder {
        height: 250px;
    }

    .map-content i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .map-content h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .map-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }

    .contact .section-header {
        margin-bottom: 2rem;
    }

    .contact .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    /* Contact cards for small screens - keep 2 columns */
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .contact-card {
        padding: 1rem 0.75rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .contact-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .contact-card p {
        font-size: 0.85rem;
    }

    .contact-card p a {
        font-size: 0.85rem;
    }

    .contact-card span {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    /* Social grid mobile - 2 columns */
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .social-item {
        padding: 0.75rem 0.5rem;
        gap: 0.4rem;
    }

    .social-item i {
        font-size: 1.1rem;
    }

    .social-item span {
        font-size: 0.75rem;
    }

    /* Form very small screens */
    .contact-form-container {
        padding: 1.5rem 1rem;
    }

    .contact-form-header h3 {
        font-size: 1.3rem;
    }

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

    .form-group label {
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .form-submit {
        width: fit-content;
        margin-top: 0.5rem;
    }

    /* Map very small */
    .map-placeholder {
        height: 200px;
    }

    .map-content i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .map-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .map-content p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
}

/* Fade up animation */
.scroll-animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate-fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.scroll-animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.scroll-animate-slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.scroll-animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.scroll-animate-slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Individual items with delay */
.scroll-animate-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s ease;
}

.scroll-animate-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Contact specific animations */
.quick-contact-item.scroll-animate-item {
    transform: translateY(40px) scale(0.95);
}

.quick-contact-item.scroll-animate-item.animate {
    transform: translateY(0) scale(1);
}

.quick-contact-item.animate .quick-contact-icon {
    animation: contactIconPulse 0.6s ease 0.3s both;
}

.contact-form.scroll-animate-slide-right .form-group {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.contact-form.scroll-animate-slide-right.animate .form-group {
    opacity: 1;
    transform: translateX(0);
}

.contact-form.scroll-animate-slide-right.animate .form-group:nth-child(1) { transition-delay: 0.1s; }
.contact-form.scroll-animate-slide-right.animate .form-group:nth-child(2) { transition-delay: 0.2s; }
.contact-form.scroll-animate-slide-right.animate .form-group:nth-child(3) { transition-delay: 0.3s; }
.contact-form.scroll-animate-slide-right.animate .form-group:nth-child(4) { transition-delay: 0.4s; }
.contact-form.scroll-animate-slide-right.animate .form-submit { transition-delay: 0.5s; }

@keyframes contactIconPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive animations */
@media (max-width: 768px) {
    .scroll-animate-slide-left,
    .scroll-animate-slide-right {
        transform: translateY(30px);
    }

    .scroll-animate-slide-left.animate,
    .scroll-animate-slide-right.animate {
        transform: translateY(0);
    }
}
/* Page Banner - Hero Style */
.page-banner {
    position: relative;
    height: 25vh;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Background Image Effect */
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(220, 38, 127, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 127, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    z-index: 1;
}

/* Slider Background Image */
.banner-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.banner-slider-image.mobile-image {
    display: none;
}

@media (max-width: 768px) {
    .banner-slider-image.desktop-image {
        display: none;
    }

    .banner-slider-image.mobile-image {
        display: block;
    }
}

/* Dark Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

/* Content Container */
.page-banner .container {
    position: relative;
    z-index: 3;
    text-align: center;
}

.banner-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Banner Title */
section h1.banner-title, .banner-title {
    font-size: 2rem !important;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    margin-bottom: 0.3rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    section h1.banner-title, .banner-title {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 480px) {
    section h1.banner-title, .banner-title {
        font-size: 1.3rem !important;
    }
}

/* Banner Subtitle */
.banner-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-weight: var(--font-weight-medium);
}

@media (max-width: 768px) {
    .banner-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
}

/* Breadcrumb Navigation */
.banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
}

@media (max-width: 480px) {
    .banner-breadcrumb {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Breadcrumb Links */
.breadcrumb-home,
.breadcrumb-link {
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius);
}

.breadcrumb-home:hover,
.breadcrumb-link:hover {
    color: var(--primary-red);
    background: rgba(255, 255, 255, 0.1);
}

/* Breadcrumb Separator */
.breadcrumb-sep {
    color: var(--primary-red);
    font-weight: var(--font-weight-bold);
    opacity: 0.7;
    margin: 0 0.25rem;
}

/* Current Page */
.breadcrumb-current,
.breadcrumb-text {
    color: var(--primary-red);
    font-weight: var(--font-weight-semibold);
}

/* Decorative Elements */
.banner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.decoration-dots {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 150px;
    height: 150px;
    background:
        radial-gradient(circle at 20px 20px, var(--primary-red) 2px, transparent 2px),
        radial-gradient(circle at 60px 20px, var(--primary-red) 2px, transparent 2px),
        radial-gradient(circle at 100px 20px, var(--primary-red) 2px, transparent 2px),
        radial-gradient(circle at 20px 60px, var(--primary-red) 2px, transparent 2px),
        radial-gradient(circle at 60px 60px, var(--primary-red) 2px, transparent 2px),
        radial-gradient(circle at 100px 60px, var(--primary-red) 2px, transparent 2px),
        radial-gradient(circle at 20px 100px, var(--primary-red) 2px, transparent 2px),
        radial-gradient(circle at 60px 100px, var(--primary-red) 2px, transparent 2px),
        radial-gradient(circle at 100px 100px, var(--primary-red) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.15;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Content Animation */
.banner-content > * {
    animation: fadeInUp 0.8s ease-out both;
}

.banner-title { animation-delay: 0.2s; }
.banner-subtitle { animation-delay: 0.4s; }
.banner-breadcrumb { animation-delay: 0.6s; }

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-banner {
        height: 20vh;
        min-height: 160px;
    }

    .decoration-circle {
        width: 150px;
        height: 150px;
    }

    .decoration-dots {
        width: 100px;
        height: 100px;
        background-size: 25px 25px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 18vh;
        min-height: 140px;
    }

    .decoration-circle,
    .decoration-dots {
        display: none;
    }
}/* Footer */
.footer {
    background: #0a0a0a;
    position: relative;
}

.footer-main {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

/* Footer Brand */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.footer-logo .logo-text .logo-name {
    display: block;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    line-height: 1;
}

.footer-logo .logo-text .logo-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: var(--font-weight-medium);
    letter-spacing: 2px;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-medium);
}

.social-icon:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition-medium);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

/* Footer Contact */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item span,
.contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition-medium);
    line-height: 1.4;
}

.contact-item a:hover {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    background: #050505;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copyright p {
    color: #808080;
    margin: 0;
    font-size: 0.9rem;
}

.developer-credit {
    margin-top: 0.5rem !important;
}

.developer-credit a {
    color: #606060;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-medium);
}

.developer-credit a:hover {
    color: var(--primary-red);
    transform: translateX(2px);
}

.developer-credit i {
    font-size: 0.8rem;
    color: var(--primary-red);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #808080;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-medium);
}

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

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
        padding: 0 1rem;
    }

    .footer-brand {
        max-width: none;
        text-align: left;
        margin-bottom: 1rem;
    }

    .footer-logo {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }

    .footer-description {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

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

    /* Clean footer sections */
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
        font-weight: 600;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Clean contact items */
    .contact-item {
        margin-bottom: 1rem;
        gap: 0.75rem;
        align-items: center;
    }

    .contact-item i {
        font-size: 1.1rem;
        margin-top: 0;
        min-width: 20px;
    }

    .contact-item span,
    .contact-item a {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-bottom {
        padding: 1.25rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-copyright {
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-copyright p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .footer-bottom-links {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 2rem;
        padding: 0 0.75rem;
    }

    /* Smaller logo and brand */
    .footer-logo .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .footer-logo .logo-text .logo-name {
        font-size: 1.25rem;
    }

    .footer-logo .logo-text .logo-subtitle {
        font-size: 0.8rem;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Compact sections */
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    /* Compact contact */
    .contact-item {
        margin-bottom: 0.8rem;
        gap: 0.6rem;
    }

    .contact-item i {
        font-size: 1rem;
        min-width: 18px;
    }

    .contact-item span,
    .contact-item a {
        font-size: 0.9rem;
    }

    /* Compact bottom */
    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-bottom-content {
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }

    .footer-bottom-links {
        gap: 1.25rem;
    }

    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}
/* Client Loading Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    animation: loadingFadeIn 0.3s ease-out;
}

.loading-container {
    text-align: center;
    animation: loadingPulse 2s ease-in-out infinite;
}

.loading-logo {
    margin-bottom: 1rem;
}

.loading-logo-img {
    max-width: 120px;
    height: auto;
    filter: brightness(1.5) drop-shadow(0 4px 30px rgba(255, 255, 255, 0.61));
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo-fallback {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.loading-logo-fallback span {
    color: #ffffff;
}

.loading-logo-fallback .loading-text-red {
    color: var(--primary-red);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}


.loading-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.loading-text-red {
    color: var(--primary-red);
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

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

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite both;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

/* Admin Loading Styles */
.admin-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(15px);
    animation: loadingFadeIn 0.3s ease-out;
}

.admin-loading-container {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: adminLoadingFloat 3s ease-in-out infinite;
}

.admin-loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.admin-spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary-red);
    border-right: 3px solid var(--primary-red);
    border-radius: 50%;
    animation: adminSpinnerRotate 1s linear infinite;
}

.admin-spinner-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    border: 2px solid transparent;
    border-bottom: 2px solid #60a5fa;
    border-left: 2px solid #60a5fa;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: adminSpinnerRotate 1.5s linear infinite reverse;
}

.admin-loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--white);
    animation: adminIconPulse 2s ease-in-out infinite;
}

.admin-loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.admin-loading-subtext {
    font-size: 0.9rem;
    color: #94a3b8;
    opacity: 0.8;
    animation: adminTextFade 2s ease-in-out infinite;
}

.admin-loading-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 1.5rem auto 0;
    overflow: hidden;
}

.admin-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), #60a5fa, var(--primary-red));
    border-radius: 2px;
    animation: adminProgressMove 2s ease-in-out infinite;
    background-size: 200% 100%;
}

/* Animations */
@keyframes loadingFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}


@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

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

@keyframes adminSpinnerRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes adminTextFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes adminProgressMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .loading-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .loading-spinner {
        width: 80px;
        height: 48px;
    }

    .admin-loading-container {
        margin: 1rem;
        padding: 2rem;
    }

    .admin-loading-spinner {
        width: 60px;
        height: 60px;
    }

    .admin-loading-text {
        font-size: 1rem;
    }

    .admin-loading-progress {
        width: 150px;
    }
}
