/* AerialMedia Premium Theme CSS */

:root {
    /* Brand Colors - Clean & Minimalist */
    --aerial-black: #0A0A0A;
    --aerial-charcoal: #1A1A1A;
    --aerial-gray: #2D2D2D;
    --aerial-silver: #8A8A8A;
    --aerial-light: #F5F5F5;
    --aerial-white: #FFFFFF;

    /* Accent Colors - Sky & Freedom (Enhanced for openness) */
    --aerial-blue: #2563EB;        /* Nordic Blue - Primary */
    --aerial-blue-light: #93C5FD;  /* Ice Blue - Secondary */
    --aerial-blue-lighter: #BFDBFE; /* Lighter Sky Blue - New */
    --aerial-blue-dark: #1E40AF;   /* Deep Blue - Dark variant */
    --aerial-sky: #E0F2FE;         /* Sky - Light backgrounds */
    --aerial-sky-lighter: #F0F9FF; /* Ultra light sky - More breathable */

    /* Typography - Modern & Clean */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* 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(37, 99, 235, 0.15); /* Blue tint hover */
}

/* 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-gray { color: var(--aerial-gray); }
.text-aerial-blue { color: var(--aerial-blue); }
.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-gray { border-color: var(--aerial-gray); }

/* 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;
}

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);
    transition: width 0.3s ease;
}

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

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

.hero-aerial-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.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 - Boutique Exclusive Style */
.btn-aerial-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--aerial-blue);
    color: var(--aerial-white);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-aerial-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--aerial-blue-dark);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-aerial-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-aerial-primary:hover {
    color: var(--aerial-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-aerial-primary:active {
    color: var(--aerial-white);
    transform: translateY(-1px);
}

.btn-aerial-primary > * {
    position: relative;
    z-index: 1;
}

.btn-aerial-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--aerial-white);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--aerial-white);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-aerial-outline:hover {
    background: var(--aerial-white);
    color: var(--aerial-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Tour Cards - Subtle Elegance */
.tour-card-premium {
    position: relative;
    background: var(--aerial-white);
    border-radius: 0;
    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: 280px;
    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-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tour-card-content {
    padding: 2rem;
    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);
    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-heading);
    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 */
.testimonial-card {
    background: var(--aerial-white);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--aerial-gray);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

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

.testimonial-role {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--aerial-silver);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-sm);
}

.star-icon {
    color: var(--aerial-blue);
}

/* 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) {
    /* Fix hero sections to compensate for navbar height on mobile */
    .hero-aerial,
    .hero-section,
    .hero-parallax {
        padding-top: 80px;
        /* Use CSS custom property that will be set by JavaScript */
        min-height: var(--viewport-height, calc(100vh - 80px));
    }

    .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 {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

.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);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.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);
    background: #eff6ff;
}

.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;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: var(--aerial-blue-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.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;
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: var(--aerial-charcoal);
    padding: 0.75rem 2rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    border-color: var(--aerial-blue);
    background: #eff6ff;
    color: var(--aerial-charcoal);
}

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

.btn-secondary:active {
    border-color: var(--aerial-blue-dark);
    background: #dbeafe;
    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 - MISSING CSS THAT'S CAUSING THE ISSUE */
.info-box {
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: 1.5rem;
}

.info-box-text {
    font-size: 0.875rem;
    color: rgb(29, 78, 216);
}

/* 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);
}
/* ========================================
   AERIAL MEDIA 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);
}

/* 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-blue);
    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);
    }
}
