/* ========================================
   SHRI VINAYAK TRAVELS - GANGA CIRCUIT CSS
   ======================================== */

/* Reset & Base Styles */
* {
    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;
}

.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-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("ganga.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 3rem 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(60,20,10,0.72) 0%, rgba(100,40,10,0.58) 50%, rgba(40,15,5,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: #7c3aed;
    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: #7c3aed;
}

/* ========================================
   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: #7c3aed; }
.highlight-item span { font-weight: 500; }

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start; /* CRITICAL: allows sticky to work on sidebar */
}

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

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

/* ========================================
   CARD COMPONENT
   ======================================== */
.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;
}

/* CIRCUIT CITIES GRID */
.circuit-cities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
}

@media (min-width: 640px) {
    .circuit-cities { grid-template-columns: repeat(3, 1fr); }
}

.city-chip {
    background: linear-gradient(135deg, #f5f3ff, #fdf4ff);
    border: 1px solid #ddd6fe;
    border-radius: 0.5rem;
    padding: 0.625rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #5b21b6;
}

.city-chip span.city-emoji { font-size: 1rem; }

/* CUSTOMISE NOTE */
.customise-note {
    background: #fef9c3;
    border: 1px solid #fde047;
    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: #713f12;
}

.customise-note svg { color: #ca8a04; flex-shrink: 0; margin-top: 2px; }

/* ========================================
   ITINERARY
   ======================================== */
.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: #7c3aed;
    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: #7c3aed; 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; }

/* ========================================
   WHY CHOOSE
   ======================================== */
.why-choose-card {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 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: #7c3aed;
    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; }

/* CUSTOMISE SECTION */
.customise-card {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
}

.customise-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.customise-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
}

.customise-option-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ========================================
   BOOKING FORM
   ======================================== */
.sidebar {
    position: sticky;
    top: 5rem;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    overflow-x: hidden;
    /* hide scrollbar but keep scroll functionality */
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE/Edge */
    padding-right: 2px;             /* prevents content clipping */
}

.sidebar::-webkit-scrollbar {
    display: none;                  /* Chrome/Safari */
}

.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: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124,58,237,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: #7c3aed;
    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: #6d28d9; }

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

/* ========================================
   CONTACT CARD
   ======================================== */
.contact-card {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 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; }


/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.floating-whatsapp {
    position: fixed !important;
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    left: auto !important;
    top: auto !important;
    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: background 0.3s, transform 0.3s;
    z-index: 9999;
}

.floating-whatsapp:hover {
    background: #16a34a;
    transform: scale(1.1);
}

/* ========================================
   UTILITY
   ======================================== */
html { scroll-behavior: smooth; }
/* ========================================
   HERO BG — KEN BURNS ZOOM
   ======================================== */
.hero {
    position: relative;
    color: white;
    padding: 5rem 0 4rem;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-image: none !important; /* handled by .hero-bg */
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* ════════════════════════════════════════════════════
       👇 REPLACE THIS with your own image path or URL
       Examples:
         url('ganga.jpg')
         url('/images/hero-ganga.webp')
         url('https://your-cdn.com/hero.jpg')
       ════════════════════════════════════════════════════ */
    background-image: url('YOUR_HERO_IMAGE_HERE.jpg');
    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);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(60, 20, 5, 0.85) 0%,
        rgba(100, 40, 10, 0.68) 45%,
        rgba(40, 15, 5, 0.55) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.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.45) 100%);
    z-index: 1;
    pointer-events: none;
}

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

/* ========================================
   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,220,120,0.2);
    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); }
}

/* ========================================
   WATER SHIMMER LINE
   ======================================== */
.hero-waterline {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(251, 191, 36, 0.4) 20%,
        rgba(234, 88, 12, 0.7) 50%,
        rgba(251, 191, 36, 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); }
}

/* ========================================
   STAGGERED HERO ENTRANCE
   ======================================== */
@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; }

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ========================================
   WHATSAPP FLOATING PULSE
   ======================================== */
.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; }
}

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

/* ============================================================
   FOOTER — ported from SV Groups style.css
   ============================================================ */
.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;
}

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

/* Underline reveal on hover */
.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), letter-spacing 0.2s;
}

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

.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);
}

/* ---- Responsive footer ---- */
@media (max-width: 768px) {
    .main-footer { padding: 28px 14px 16px; }

    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer-column:last-child { grid-column: 1 / -1; }
    .footer-column { min-width: unset; width: 100%; }

    .footer-column h3,
    .footer-column h4 { font-size: 0.9rem; margin-bottom: 8px; }

    .footer-column ul li { margin-bottom: 4px; }
    .footer-column ul li a,
    .footer-column ul li { font-size: 0.78rem; }
    .footer-address p { font-size: 0.78rem; line-height: 1.5; }
    .footer-column > p { font-size: 0.78rem; margin-bottom: 6px; }
    .world-map { display: none; }

    .newsletter-form { flex-direction: row; flex-wrap: wrap; margin: 6px 0 12px; gap: 6px; }
    .newsletter-form img { width: 18px; }
    .newsletter-form input[type="email"] { flex: 1 1 120px; padding: 6px 8px; font-size: 0.8rem; }
    .newsletter-form button { padding: 6px 12px; font-size: 0.8rem; }

    .social-icons { gap: 10px; }
    .social-icons > div { padding: 8px 10px; }
    .social-icons img { width: 26px; height: 26px; }
    .social-icons p { font-size: 0.7rem; }

    .footer-bottom { margin-top: 14px; padding-top: 10px; font-size: 0.72rem; }
}