/* FuchsTravels Premium Theme CSS */

:root {
    /*
     * Theme colors are now injected from Django SiteSettings via base.html
     * The following maps legacy variable names to the new theme system
     */

    /* Brand Colors - Mapped from SiteSettings */
    --aerial-black: #0A0A0A;
    --aerial-charcoal: var(--color-text, #1A1A1A);
    --aerial-gray: #2D2D2D;
    --aerial-silver: var(--color-text-muted, #8A8A8A);
    --aerial-light: var(--color-surface, #F5F5F5);
    --aerial-white: var(--color-background, #FFFFFF);

    /* Accent Colors - Mapped from SiteSettings */
    --aerial-blue: var(--color-primary, #D4922A);        /* Primary brand color (amber) */
    --aerial-blue-light: var(--color-secondary, #3A9E8F);  /* Secondary color (teal) */
    --aerial-blue-lighter: var(--color-border, #EDE4D9); /* Border/lighter variant */
    --aerial-blue-dark: #B87A1E;                           /* Dark amber variant */
    --aerial-teal-dark: #2B8575;                           /* Dark teal variant */
    --aerial-warm-neutral: #8B7355;                        /* Warm brown neutral */
    --aerial-teal-surface: #EBF5F3;                        /* Light teal surface */
    --aerial-sky: var(--color-surface, #FBF6F0);         /* Surface backgrounds */
    --aerial-sky-lighter: var(--color-background, #FAF8F6); /* Light backgrounds */

    /* Accent color alias */
    --aerial-accent: var(--color-accent, var(--aerial-blue));

    /* Spacing - Enhanced for White Space */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4.5rem;         /* Increased from 4rem */
    --spacing-xxl: 7rem;           /* Increased from 6rem */
    --spacing-section: 8rem;       /* New - Generous section spacing */

    /* Shadows - Subtle Elegance */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);    /* Softer */
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);    /* Softer */
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.10);  /* Softer */
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);  /* Softer */
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Utility classes for custom colors - Clean & Minimalist */
.bg-aerial-black { background-color: var(--aerial-black); }
.bg-aerial-charcoal { background-color: var(--aerial-charcoal); }
.bg-aerial-gray { background-color: var(--aerial-gray); }
.bg-aerial-silver { background-color: var(--aerial-silver); }
.bg-aerial-blue { background-color: var(--aerial-blue); }
.bg-aerial-blue-light { background-color: var(--aerial-blue-light); }
.bg-aerial-blue-lighter { background-color: var(--aerial-blue-lighter); }
.bg-aerial-sky { background-color: var(--aerial-sky); }
.bg-aerial-sky-lighter { background-color: var(--aerial-sky-lighter); }

.text-aerial-black { color: var(--aerial-black); }
.text-aerial-charcoal { color: var(--aerial-charcoal); }
.text-aerial-gray { color: var(--aerial-gray); }
.text-aerial-blue { color: var(--aerial-blue); }
.text-aerial-blue-light { color: var(--aerial-blue-light); }
.text-aerial-silver { color: var(--aerial-silver); }
.text-aerial-white { color: var(--aerial-white); }

.border-aerial-black { border-color: var(--aerial-black); }
.border-aerial-blue { border-color: var(--aerial-blue); }
.border-aerial-blue-lighter { border-color: var(--aerial-blue-lighter); }
.border-aerial-gray { border-color: var(--aerial-gray); }

/* Hover utility classes */
.hover\:text-aerial-blue:hover { color: var(--aerial-blue); }
.hover\:bg-aerial-blue:hover { background-color: var(--aerial-blue); }
.hover\:bg-aerial-blue-dark:hover { background-color: var(--aerial-blue-dark); }
.group:hover .group-hover\:text-aerial-blue { color: var(--aerial-blue); }
.hover\:border-aerial-blue:hover { border-color: var(--aerial-blue); }

/* Utility Classes */
.text-shadow-lg {
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Global Styles */
body {
    font-family: var(--font-body);
    color: var(--aerial-charcoal);
    line-height: 1.6;
    overflow-x: clip; /* Prevents horizontal scroll without breaking sticky */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.display-font {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Navigation Enhancements */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-link {
    position: relative;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aerial-blue-light);
    transition: width 0.3s ease;
}

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

/* Hero Sections */
.hero-aerial {
    position: relative;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    min-height: 500px;
    overflow: hidden;
    background: var(--aerial-black);
}

.hero-aerial-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Show more of the top portion to prevent important content from being cut off */
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03); /* Reduced from 1.1 to avoid excessive cropping */
    }
}

.hero-aerial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-aerial-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--aerial-white);
    padding: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.8vw, 5rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    color: var(--aerial-white);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    color: var(--aerial-white);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

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

/* Premium Buttons */
.btn-aerial-primary {
    background: var(--aerial-blue);
    color: var(--aerial-white);
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Low-specificity defaults — Tailwind utility classes override these */
:where(.btn-aerial-primary) {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.btn-aerial-primary:hover {
    background: var(--aerial-blue-dark);
    color: var(--aerial-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-aerial-primary:focus {
    background: var(--aerial-blue-dark);
    color: var(--aerial-white);
    outline: 2px solid var(--aerial-blue-light);
    outline-offset: 2px;
}

.btn-aerial-primary:active {
    background: var(--aerial-blue-dark);
    color: var(--aerial-white);
}

.btn-aerial-outline {
    background: transparent;
    color: var(--aerial-white);
    font-weight: 600;
    border: 2px solid var(--aerial-white);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Low-specificity defaults — Tailwind utility classes override these */
:where(.btn-aerial-outline) {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.btn-aerial-outline:hover {
    background: var(--aerial-white);
    color: var(--aerial-charcoal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Tour Cards - Subtle Elegance */
.tour-card-premium {
    position: relative;
    background: var(--aerial-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid transparent;
}

.tour-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--aerial-blue-lighter);
}

.tour-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--aerial-blue-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card-premium:hover::after {
    transform: scaleX(1);
}

.tour-card-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--aerial-gray);
}

.tour-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card-premium:hover .tour-card-image {
    transform: scale(1.06);
}

.tour-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--aerial-blue);
    color: var(--aerial-white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tour-card-content {
    padding: var(--space-6, 1.5rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-card-category {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--aerial-blue-light);
    margin-bottom: 0.5rem;
}

.tour-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aerial-black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tour-card-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--aerial-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tour-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.tour-card-price {
    font-family: var(--font-body);
    font-size: 2rem;
    color: var(--aerial-black);
    letter-spacing: 0.02em;
}

.tour-card-price-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--aerial-silver);
    font-weight: 400;
}

/* Feature Sections */
.section-aerial {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.75vw, 2.9rem);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-align: center;
    color: var(--aerial-silver);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

/* Instagram Feed */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    background: var(--aerial-black);
    padding: 1px;
}

.instagram-item {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    background: var(--aerial-gray);
}

.instagram-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Testimonials - Enhanced */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.12);
}

/* Decorative quote mark */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: var(--font-heading), Georgia, serif;
    color: #E5E7EB;
    line-height: 1;
    pointer-events: none;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #6B7280;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    color: #F59E0B;
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
}

.parallax-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--aerial-white);
    padding: var(--spacing-md);
}

/* Loading States */
.skeleton-loader {
    background: var(--aerial-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero sections fit between nav and bottom of viewport */
    .hero-aerial,
    .hero-section,
    .hero-parallax {
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .tour-card-content {
        padding: 1.5rem;
    }
}

/* Account Form Components */
.account-form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-form-card:hover {
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);
}

.account-form-header {
    background: var(--aerial-charcoal);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--aerial-blue-light);
}

.account-form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.account-form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.account-form-body {
    padding: 2rem;
}

.account-form-footer {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

/* Form Controls */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--aerial-charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--aerial-blue-light);
    box-shadow: 0 0 0 3px rgba(58, 158, 143, 0.12);
}

.form-input.error {
    border-color: #ef4444;
}

.form-help {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.form-error {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #ef4444;
}

/* Account Status Cards */
.account-status-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.account-status-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-status-icon.success {
    background: #10b981;
    color: white;
}

.account-status-icon.error {
    background: #ef4444;
    color: white;
}

.account-status-icon.warning {
    background: #f59e0b;
    color: white;
}

.account-status-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--aerial-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.account-status-message {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Social Connection Components */
.social-connection-list {
    space-y: 1rem;
}

.social-connection-item {
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.social-connection-item:hover {
    border-color: var(--aerial-blue-light);
    background: var(--aerial-teal-surface);
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon.google {
    background: #4285f4;
    color: white;
}

.social-icon.facebook {
    background: #1877f2;
    color: white;
}

.social-icon.github {
    background: #24292e;
    color: white;
}

/* Button Variants */
.btn-primary {
    background: var(--aerial-blue);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

:where(.btn-primary) {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.btn-primary:hover {
    background: var(--aerial-blue-dark);
    color: white;
}

.btn-primary:focus {
    background: var(--aerial-blue-dark);
    color: white;
    outline: 2px solid var(--aerial-blue-light);
    outline-offset: 2px;
}

.btn-primary:active {
    background: var(--aerial-blue-dark);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--aerial-charcoal);
    border: 2px solid #e5e7eb;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

:where(.btn-secondary) {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.btn-secondary:hover {
    border-color: var(--aerial-blue-light);
    background: var(--aerial-teal-surface);
    color: var(--aerial-charcoal);
}

.btn-secondary:focus {
    border-color: var(--aerial-blue-light);
    background: var(--aerial-teal-surface);
    color: var(--aerial-charcoal);
    outline: 2px solid var(--aerial-blue-light);
    outline-offset: 2px;
}

.btn-secondary:active {
    border-color: var(--aerial-teal-dark);
    background: var(--aerial-teal-surface);
    color: var(--aerial-charcoal);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

/* Print Styles */
@media print {
    .navbar,
    .hero-aerial,
    .instagram-grid,
    footer {
        display: none;
    }

    .section-aerial {
        page-break-inside: avoid;
    }
}

/* Info Box Component */
.info-box {
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
}

.info-box-text {
    font-size: 0.875rem;
    color: var(--aerial-warm-neutral);
}

/* Alert Components */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: rgb(5, 150, 105);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: rgb(180, 83, 9);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: rgb(185, 28, 28);
}
/* ========================================
   FUCHS TRAVELS BRAND ENHANCEMENTS
   Design Preferences: Sky & Freedom, Clean & Minimalist, Excitement
   ======================================== */

/* Aerial-Inspired Visual Elements */
.aerial-float {
    animation: floatSky 6s ease-in-out infinite;
}

@keyframes floatSky {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(3px);
    }
}

/* Excitement - Dynamic Hover Effects */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Sky Gradient Backgrounds (solid color implementation) */
.bg-sky-section {
    background: var(--aerial-sky-lighter);
    position: relative;
}

.bg-sky-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--aerial-white);
    opacity: 0.5;
    pointer-events: none;
}

/* Boutique Exclusive - Refined Details */
.refined-border {
    border: 1px solid var(--aerial-blue-lighter);
    transition: border-color 0.3s ease;
}

.refined-border:hover {
    border-color: var(--aerial-blue-light);
}

/* Adventure Excitement - Pulse Animation */
.pulse-on-hover {
    transition: all 0.3s ease;
}

.pulse-on-hover:hover {
    animation: excitementPulse 0.8s ease-in-out;
}

@keyframes excitementPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Clean White Space Utilities */
.section-breathing {
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

.content-breathing {
    padding: var(--spacing-xl);
}

/* Immersive Image Overlays */
.image-hover-zoom {
    overflow: hidden;
}

.image-hover-zoom img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-hover-zoom:hover img {
    transform: scale(1.15);
}

/* Professional Touch - Subtle Accents */
.accent-line-left {
    position: relative;
    padding-left: 1.5rem;
}

.accent-line-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--aerial-blue-light);
}

/* Creative Hover States */
.creative-hover-slide {
    position: relative;
    overflow: hidden;
}

.creative-hover-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--aerial-blue);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.creative-hover-slide:hover::after {
    left: 0;
}

/* Exclusive Badge Styles */
.badge-exclusive {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--aerial-sky);
    color: var(--aerial-warm-neutral);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--aerial-blue-lighter);
}

/* Responsive Breathing Space */
@media (max-width: 768px) {
    .section-breathing {
        padding-top: var(--spacing-xl);
        padding-bottom: var(--spacing-xl);
    }

    .content-breathing {
        padding: var(--spacing-md);
    }
}
