/**
 * Kashmir Meridian - Landing Pages Stylesheet
 * Version: 20260210
 * Cache-busting: ?v=20260210
 */

/* ============================================
   CSS VARIABLES - COMPLETE SET
   ============================================ */
:root {
    /* Colors */
    --primary: #007AFF;
    --primary-dark: #0056CC;
    --secondary: #5856D6;
    --accent: #FF9500;
    --success: #34C759;
    --whatsapp: #25D366;
    --danger: #FF3B30;
    
    /* Backgrounds */
    --bg-primary: #F5F5F7;
    --bg-secondary: #FFFFFF;
    --bg-dark: #1a1a2e;
    
    /* Text */
    --text-primary: #1D1D1F;
    --text-secondary: #6E6E73;
    --text-light: #FFFFFF;
    
    /* Shadows - ALL VARIATIONS */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-glass: 0 8px 32px rgba(31,38,135,0.15);
    
    /* Transitions - ALL VARIATIONS */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--bg-secondary);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.menu-btn {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================
   DISCOUNT BANNER
   ============================================ */
.discount-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 12px 16px;
    text-align: center;
    position: relative;
    z-index: 999;
}

.discount-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 600;
}

.discount-banner .fire-icon {
    font-size: 16px;
}

.discount-banner .highlight {
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h1 span {
    color: #FFD700;
}

.hero-description {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Google Rating Badge */
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.95);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.google-rating .stars {
    color: #FFB800;
    font-size: 14px;
}

.google-rating .rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.google-rating .rating-subtext {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.95);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--success);
    font-size: 12px;
}

/* ============================================
   FORM CARD
   ============================================ */
.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    margin-top: 32px;
}

.form-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E5EA;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

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

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.form-note a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.package-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.package-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

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

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
}

.package-content {
    padding: 20px;
}

.package-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.package-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.package-price-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.package-features {
    list-style: none;
    margin-bottom: 20px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.package-features li i {
    color: var(--success);
    font-size: 12px;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #E5E5EA;
}

.package-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--whatsapp);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ============================================
   INCLUSIONS SECTION
   ============================================ */
.inclusions-section {
    padding: 60px 20px;
    background: var(--bg-secondary);
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.inclusion-card {
    text-align: center;
}

.inclusion-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.inclusion-icon i {
    font-size: 24px;
    color: white;
}

.inclusion-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.inclusion-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */
.destinations-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: white;
}

.destination-overlay h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.destination-overlay p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--whatsapp);
    color: white;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 60px 20px;
    background: var(--bg-secondary);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 20px;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.star-rating {
    color: #FFB800;
    font-size: 12px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E5E5EA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E5EA;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-question i {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 60px 20px;
    background: var(--bg-secondary);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.contact-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-text a,
.contact-text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.cta-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.cta-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: var(--transition-fast);
}

.cta-buttons .btn-whatsapp {
    background: var(--whatsapp);
}

.cta-buttons .btn-whatsapp:hover {
    background: #128C7E;
}

.cta-buttons .btn-call {
    background: var(--success);
}

.cta-buttons .btn-call:hover {
    background: #248A3D;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 48px 20px 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-brand .logo span {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

.trust-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.8;
}

.trust-item i {
    color: var(--success);
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 16px;
    display: flex;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
}

.sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    color: white;
    transition: var(--transition-fast);
}

.sticky-cta .whatsapp-btn {
    background: var(--whatsapp);
}

.sticky-cta .whatsapp-btn:hover {
    background: #128C7E;
}

.sticky-cta .call-btn {
    background: var(--success);
}

.sticky-cta .call-btn:hover {
    background: #248A3D;
}

/* ============================================
   FLOATING BUTTONS (Desktop)
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.whatsapp {
    background: var(--whatsapp);
}

.floating-btn.call {
    background: var(--success);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 44px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inclusions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 45%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
    .header {
        padding: 16px 40px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 60px;
        align-items: center;
        padding: 80px 40px;
    }
    
    .hero h1 {
        font-size: 52px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .form-card {
        margin-top: 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .packages-section {
        padding: 80px 40px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .inclusions-section {
        padding: 80px 40px;
    }
    
    .inclusions-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .destinations-section {
        padding: 80px 40px;
    }
    
    .testimonials-section {
        padding: 80px 40px;
    }
    
    .testimonial-card {
        flex: 0 0 32%;
    }
    
    .faq-section {
        padding: 80px 40px;
    }
    
    .contact-section {
        padding: 80px 40px;
    }
    
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 60px;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .footer {
        padding: 60px 40px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .sticky-cta {
        display: none;
    }
    
    .floating-buttons {
        display: flex;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.font-heading { font-family: var(--font-heading); }
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
