/* ========================================
   SHRI VINAYAK TRAVELS - KAILASH MANSAROVAR
   Package CSS
   ======================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

html { scroll-behavior: smooth; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ========================================
   HEADER
   ======================================== */
.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-icon { color: #ea580c; width: 32px; height: 32px; }
.brand-logo { height: 48px; width: auto; object-fit: contain; }
.brand-name { font-size: 1.5rem; font-weight: 700; color: #111827; }
.brand-tagline { font-size: 0.875rem; color: #6b7280; }

.header-actions { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .header-actions { display: flex; } }

.header-phone {
    display: flex; align-items: center; gap: 0.5rem;
    color: #374151; text-decoration: none;
    font-weight: 500; font-size: 0.875rem;
    transition: color 0.3s;
}
.header-phone:hover { color: #ea580c; }

.btn-whatsapp-header {
    background: #22c55e; color: white; border: none;
    padding: 0.5rem 1rem; border-radius: 0.5rem;
    display: flex; align-items: center; gap: 0.5rem;
    cursor: pointer; font-weight: 500; font-size: 0.875rem;
    transition: background 0.3s;
}
.btn-whatsapp-header:hover { background: #16a34a; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    background-image: url("kailashcover.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 3rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,30,60,0.75) 0%, rgba(30,58,95,0.60) 50%, rgba(15,25,50,0.70) 100%);
}

@media (min-width: 768px) { .hero { padding: 5rem 0; } }

.hero-content { max-width: 48rem; position: relative; z-index: 1; }

.hero-badges {
    display: flex; align-items: center;
    gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem;
}

.badge-duration {
    background: rgba(255,255,255,0.2); padding: 0.25rem 0.75rem;
    border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
}

.badge-spiritual {
    background: rgba(234,88,12,0.7); padding: 0.25rem 0.75rem;
    border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
}

.rating { display: flex; align-items: center; gap: 0.25rem; }
.star-icon { color: #fde047; fill: #fde047; }
.rating-score { font-weight: 500; }
.rating-count { font-size: 0.875rem; opacity: 0.9; }

.hero-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }

.hero-destinations {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 1.125rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}

.hero-pricing { margin-bottom: 2rem; }
.price-label { font-size: 0.875rem; opacity: 0.9; }
.price-amount { font-size: 2.25rem; font-weight: 700; }
.price-note { font-size: 0.875rem; opacity: 0.9; }

.hero-cta { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }

.btn-primary {
    background: white; color: #ea580c; border: none;
    padding: 1rem 2rem; border-radius: 0.5rem;
    font-weight: 600; font-size: 1.125rem; cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: background 0.3s;
}
.btn-primary:hover { background: #f3f4f6; }

.btn-secondary {
    background: transparent; color: white; border: 2px solid white;
    padding: 1rem 2rem; border-radius: 0.5rem;
    font-weight: 600; font-size: 1.125rem; cursor: pointer;
    transition: all 0.3s;
}
.btn-secondary:hover { background: white; color: #ea580c; }

/* ========================================
   HIGHLIGHTS STRIP
   ======================================== */
.highlights {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) { .highlights-grid { grid-template-columns: repeat(5, 1fr); } }

.highlight-item {
    display: flex; align-items: center;
    justify-content: center; gap: 0.5rem; color: #374151;
}
.highlight-item svg { color: #ea580c; }
.highlight-item span { font-weight: 500; }

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content { padding: 3rem 0; }

.content-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .content-grid { grid-template-columns: 2fr 1fr; align-items: start; } }

.content-left { display: flex; flex-direction: column; gap: 2rem; }

.sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    overflow-x: hidden;
    /* Hide scrollbar on Firefox */
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
    border-radius: 0.75rem;
    /* Smooth scroll */
    scroll-behavior: smooth;
}

/* Webkit scrollbar — subtle, non-intrusive */
.sidebar::-webkit-scrollbar {
    width: 4px;
}
.sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* ========================================
   CARD
   ======================================== */
.card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1.5rem;
}
@media (min-width: 768px) { .card { padding: 2rem; } }

.section-title { font-size: 1.5rem; font-weight: 700; color: #111827; margin-bottom: 1rem; }
.overview-text { color: #374151; line-height: 1.75; }

/* ========================================
   ALTITUDE NOTE
   ======================================== */
.altitude-note {
    background: #fef3c7; border: 1px solid #f59e0b;
    border-radius: 0.5rem; padding: 0.75rem 1rem; margin-top: 1rem;
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.875rem; color: #92400e;
}
.altitude-note svg { color: #f59e0b; flex-shrink: 0; margin-top: 2px; }

/* ========================================
   ITINERARY ACCORDION
   ======================================== */
.itinerary { display: flex; flex-direction: column; gap: 0.75rem; }

.itinerary-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.itinerary-header {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; padding: 1rem;
    background: #f9fafb; border: none; cursor: pointer;
    transition: background 0.3s; text-align: left;
}
.itinerary-header:hover { background: #f3f4f6; }

.itinerary-header-left { display: flex; align-items: center; gap: 1rem; }

.day-number {
    background: #ea580c; color: white;
    width: 3rem; height: 3rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.125rem; flex-shrink: 0;
}

.day-info h4 { font-weight: 600; color: #111827; margin-bottom: 0.25rem; }
.day-info p { font-size: 0.875rem; color: #6b7280; }

.chevron { color: #6b7280; transition: transform 0.3s; flex-shrink: 0; }
.itinerary-item.active .chevron { transform: rotate(180deg); }

.itinerary-content {
    padding: 1rem; background: white;
    border-top: 1px solid #e5e7eb; display: none;
}
.itinerary-item.active .itinerary-content { display: block; }
.itinerary-content p { color: #374151; line-height: 1.75; margin-bottom: 1rem; }

.itinerary-details {
    display: grid; grid-template-columns: 1fr;
    gap: 0.75rem; font-size: 0.875rem;
}
@media (min-width: 768px) { .itinerary-details { grid-template-columns: repeat(2, 1fr); } }

.detail-item { display: flex; align-items: center; gap: 0.5rem; color: #6b7280; }
.detail-item svg { color: #ea580c; flex-shrink: 0; }
.detail-item strong { color: #111827; margin-left: 0.25rem; }

/* ========================================
   INCLUSIONS & EXCLUSIONS
   ======================================== */
.inclusions-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .inclusions-grid { grid-template-columns: repeat(2, 1fr); } }

.inclusions-title, .exclusions-title {
    font-weight: 600; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.inclusions-title { color: #059669; }
.exclusions-title { color: #dc2626; }

.inclusions-list, .exclusions-list {
    list-style: none; display: flex; flex-direction: column; gap: 0.75rem;
}
.inclusions-list li, .exclusions-list li {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.875rem; color: #374151;
}
.inclusions-list li svg { color: #10b981; flex-shrink: 0; margin-top: 0.125rem; }
.exclusions-list li svg { color: #ef4444; flex-shrink: 0; margin-top: 0.125rem; }

/* ========================================
   HEALTH TIPS
   ======================================== */
.health-card { background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%); }
.health-list { display: flex; flex-direction: column; gap: 1rem; }
.health-item { display: flex; align-items: flex-start; gap: 1rem; }
.health-icon {
    background: #059669; color: white; border-radius: 50%;
    width: 2rem; height: 2rem; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; font-size: 0.875rem;
}
.health-item p { color: #374151; padding-top: 0.25rem; }

/* ========================================
   WHY CHOOSE
   ======================================== */
.why-choose-card { background: linear-gradient(135deg, #fff7ed 0%, #fef2f2 100%); }
.why-choose-list { display: flex; flex-direction: column; gap: 1rem; }
.why-choose-item { display: flex; align-items: flex-start; gap: 1rem; }
.why-choose-number {
    background: #ea580c; color: white; border-radius: 50%;
    width: 2rem; height: 2rem; display: flex; align-items: center;
    justify-content: center; font-weight: 700; flex-shrink: 0; font-size: 0.875rem;
}
.why-choose-item p { color: #374151; padding-top: 0.25rem; }

/* ========================================
   SIDEBAR / BOOKING FORM
   ======================================== */


.booking-card {
    background: white; border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); padding: 1.5rem;
}

.booking-title { font-size: 1.25rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.booking-subtitle { font-size: 0.875rem; color: #6b7280; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1rem; }
.form-label {
    display: block; font-size: 0.875rem;
    font-weight: 500; color: #374151; margin-bottom: 0.5rem;
}

.form-input, .form-select {
    width: 100%; padding: 0.5rem 1rem;
    border: 1px solid #d1d5db; border-radius: 0.5rem;
    font-size: 1rem; outline: none; transition: all 0.3s;
}
.form-input:focus, .form-select:focus {
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234,88,12,0.1);
}

.package-info {
    background: #f9fafb; padding: 1rem;
    border-radius: 0.5rem; margin-bottom: 1rem;
}
.package-info-label { font-size: 0.75rem; color: #6b7280; margin-bottom: 0.5rem; }
.package-info-name { font-weight: 600; color: #111827; }

.btn-submit {
    width: 100%; background: #ea580c; color: white; border: none;
    padding: 0.75rem; border-radius: 0.5rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; transition: background 0.3s;
}
.btn-submit:hover { background: #c2410c; }

.form-disclaimer {
    font-size: 0.75rem; color: #6b7280;
    text-align: center; margin-top: 0.75rem;
}

/* ========================================
   CONTACT CARD
   ======================================== */
.contact-card {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white; border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 1.5rem; margin-top: 1.5rem;
}
.contact-card h4 { font-weight: 700; margin-bottom: 1rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link {
    display: flex; align-items: center; gap: 0.75rem;
    color: white; text-decoration: none; transition: opacity 0.3s;
}
.contact-link:hover { text-decoration: underline; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #111827; color: white;
    padding: 2rem 0; margin-top: 3rem; text-align: center;
}
.footer-brand {
    display: flex; align-items: center;
    justify-content: center; gap: 0.5rem; margin-bottom: 1rem;
}
.footer-brand svg { color: #ea580c; }
.footer-brand span { font-size: 1.25rem; font-weight: 700; }
.footer-tagline { color: #9ca3af; font-size: 0.875rem; }
.footer-copyright { color: #6b7280; font-size: 0.75rem; margin-top: 1rem; }

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.floating-whatsapp {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    background: #22c55e; color: white;
    width: 3.5rem; height: 3.5rem; border-radius: 50%;
    border: none; cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 999;
    overflow: visible;
}
.floating-whatsapp:hover { background: #16a34a; transform: scale(1.1); }

/* ========================================
   "MAKE IT ALIVE" ENHANCEMENTS
   ======================================== */

/* 1. Hero Background with Ken Burns */
.hero {
    position: relative;
    color: white;
    padding: 5rem 0 4rem;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    /* Remove old background-image — handled by .hero-bg now */
    background-image: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.06);
    transition: transform 8s ease-out;
    will-change: transform;
}

.hero-bg.loaded {
    transform: scale(1.0);
}

/* Dark gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(15, 30, 60, 0.82) 0%,
        rgba(30, 58, 95, 0.68) 45%,
        rgba(15, 25, 50, 0.45) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Vignette at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 4;
}

/* 2. Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: floatUp linear infinite;
}

.hero-particles span:nth-child(1) { left: 8%;  width: 4px; height: 4px; animation-duration: 14s; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 22%; width: 6px; height: 6px; animation-duration: 18s; animation-delay: 2s; }
.hero-particles span:nth-child(3) { left: 38%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 4s; }
.hero-particles span:nth-child(4) { left: 55%; width: 5px; height: 5px; animation-duration: 20s; animation-delay: 1s; }
.hero-particles span:nth-child(5) { left: 70%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: 6s; }
.hero-particles span:nth-child(6) { left: 85%; width: 7px; height: 7px; animation-duration: 22s; animation-delay: 3s; }
.hero-particles span:nth-child(7) { left: 15%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: 8s; }
.hero-particles span:nth-child(8) { left: 48%; width: 5px; height: 5px; animation-duration: 19s; animation-delay: 5s; }

@keyframes floatUp {
    0%   { bottom: -10px; opacity: 0; transform: translateX(0) scale(0.8); }
    10%  { opacity: 1; }
    90%  { opacity: 0.5; }
    100% { bottom: 105%; opacity: 0; transform: translateX(30px) scale(1.2); }
}

/* 3. Water Shimmer Line */
.hero-waterline {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(147, 197, 253, 0.4) 20%,
        rgba(96, 165, 250, 0.7) 50%,
        rgba(147, 197, 253, 0.4) 80%,
        transparent 100%
    );
    z-index: 3;
    animation: shimmerWater 3s ease-in-out infinite;
}

@keyframes shimmerWater {
    0%, 100% { opacity: 0.5; transform: scaleX(0.95); }
    50%       { opacity: 1;   transform: scaleX(1.02); }
}

/* 4. Staggered Hero Entrance Animations */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badges       { animation: fadeSlideUp 0.7s ease both; animation-delay: 0.2s; opacity: 0; }
.hero-title        { animation: fadeSlideUp 0.7s ease both; animation-delay: 0.4s; opacity: 0; }
.hero-destinations { animation: fadeSlideUp 0.7s ease both; animation-delay: 0.55s; opacity: 0; }
.hero-pricing      { animation: fadeSlideUp 0.7s ease both; animation-delay: 0.7s; opacity: 0; }
.hero-cta          { animation: fadeSlideUp 0.7s ease both; animation-delay: 0.85s; opacity: 0; }

/* 5. Scroll-Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 6. Card Hover Lift */
.card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-2px);
}

/* 7. WhatsApp Pulse Ring */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid rgba(34, 197, 94, 0.5);
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* 8. Hero Title Text Shadow */
.hero-title {
    text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.01em;
}

/* ========================================
   SV GROUPS FOOTER (imported from index)
   ======================================== */

.main-footer {
    background: linear-gradient(135deg, #0f1e46 0%, #1a3a8a 100%);
    color: rgba(255,255,255,0.88);
    padding: 48px 20px 24px;
    font-size: 0.9rem;
    position: relative;
    margin-top: 3rem;
}

/* Animated top border */
@keyframes borderFlow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a56db, #60a5fa, #f97316, #60a5fa, #1a56db);
    background-size: 200% 100%;
    animation: borderFlow 4s linear infinite;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-column {
    flex: 1 1 260px;
    min-width: 240px;
}

.footer-column h3,
.footer-column h4 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

.footer-column h4::after,
.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1.5px;
    background: linear-gradient(90deg, #60a5fa, transparent);
    transition: width 0.35s cubic-bezier(0.34,1.56,0.64,1);
    border-radius: 1px;
}

.footer-column:hover h4::after,
.footer-column:hover h3::after {
    width: 100%;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-address {
    position: relative;
}

.world-map {
    width: 120%;
    opacity: 0.06;
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.footer-address p {
    position: relative;
    z-index: 1;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
}

.newsletter-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0 20px;
    gap: 8px;
}

.newsletter-form img {
    width: 24px;
    height: auto;
    filter: brightness(0) invert(1) opacity(0.7);
}

.newsletter-form input[type="email"] {
    padding: 9px 12px;
    flex: 1;
    min-width: 140px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    outline: none;
    border-radius: 6px;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: rgba(96,165,250,0.7);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(96,165,250,0.15);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    padding: 9px 18px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}

.newsletter-form button:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 28px rgba(249,115,22,0.5);
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.social-icons > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}

.social-icons > div:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 24px rgba(96,165,250,0.2);
}

.social-icons img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.social-icons > div:hover img {
    transform: rotate(-8deg) scale(1.15);
}

.social-icons p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.72);
    text-align: center;
}

.footer-bottom {
    text-align: center;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.65);
    text-decoration: underline;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-bottom a:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(96,165,250,0.4);
}

/* Remove old simple footer styles */
.footer { display: none; }