/* ========================================
   SHRI VINAYAK TRAVELS - CRUISE PACKAGE CSS
   ======================================== */

* { 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: #0369a1; width: 32px; height: 32px; }
.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: #0369a1; }
.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 ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    color: white;
    padding: 5rem 0 4rem;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    /* Instant fallback — shows while image loads (~100ms).
       Goa → #1e3a5f (ocean blue) */
    background-color: #1e3a5f;
}

/* Photo div — responsive sizes, Ken Burns zoom
   ↓↓↓ TO CHANGE HERO PHOTO: replace hero-image.jpg with your image filename ↓↓↓ */
.hero-bg {
    position: absolute;
    inset: 0;
    /* Fallback gradient shown when image hasn't loaded or no internet */
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 40%, #0284c7 70%, #075985 100%);
    /* ↓ YOUR IMAGE HERE — put your file in the same folder as index.html */
    background-image: url('/cruise.webp');
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.06);
    transition: transform 8s ease-out;
}

@media (min-width: 800px) {
    .hero-bg {
        background-image: url('/cruise.webp');
    }
}

/* Trigger Ken Burns — added by JS on window load */
.hero-bg.loaded {
    transform: scale(1.0);
}

/* Gradient overlay — keeps text legible over any photo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(10, 30, 70, 0.85) 0%,
        rgba(3, 105, 161, 0.68) 45%,
        rgba(2, 132, 199, 0.35) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Vignette at bottom — blends hero into page below */
.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;
}

/* All hero content must be above overlays */
.hero .container {
    position: relative;
    z-index: 4;
}

/* Hero text left-aligned */
.hero-content {
    max-width: 48rem;
    position: relative;
    margin-left: 0;
    margin-right: auto;
}

/* Text shadow so title pops over any photo */
.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero { padding: 6rem 0 5rem; }
}

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

/* ── WATER SHIMMER LINE ───────────────────────────────────── */
.hero-waterline {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(134, 239, 172, 0.4) 20%,
        rgba(74, 222, 128, 0.7) 50%,
        rgba(134, 239, 172, 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); }
}

.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-type { background: rgba(14, 165, 233, 0.4); border: 1px solid rgba(255,255,255,0.3); 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-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: #0369a1; 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: #f0f9ff; }
.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: #0369a1; }

/* HIGHLIGHTS */
.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: #0369a1; }
.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; } }
.content-left { display: flex; flex-direction: column; gap: 2rem; }

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

/* DEPARTURE DATES STRIP */
.dates-strip { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.date-badge { background: #e0f2fe; color: #0369a1; border: 1px solid #bae6fd; padding: 0.25rem 0.75rem; border-radius: 0.375rem; font-size: 0.8rem; font-weight: 500; }

/* ROUTE VISUAL */
.route-visual { display: flex; align-items: center; flex-wrap: wrap; gap: 0; margin: 1rem 0; }
.route-stop { background: #0369a1; color: white; padding: 0.4rem 0.9rem; border-radius: 0.375rem; font-size: 0.875rem; font-weight: 600; white-space: nowrap; }
.route-arrow { color: #0369a1; margin: 0 0.25rem; font-size: 1.2rem; font-weight: bold; }

/* 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: #f0f9ff; }
.itinerary-header-left { display: flex; align-items: center; gap: 1rem; }
.day-number { background: #0369a1; 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: #0369a1; flex-shrink: 0; }
.detail-item strong { color: #111827; margin-left: 0.25rem; }

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

/* CABIN TYPES TABLE */
.cabin-table { width: 100%; border-collapse: collapse; margin-top: 0.75rem; font-size: 0.875rem; }
.cabin-table th { background: #0369a1; color: white; padding: 0.65rem 1rem; text-align: left; }
.cabin-table td { padding: 0.65rem 1rem; border-bottom: 1px solid #e5e7eb; }
.cabin-table tr:last-child td { border-bottom: none; }
.cabin-table tr:nth-child(even) td { background: #f0f9ff; }

/* WHY CHOOSE */
.why-choose-card { background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 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: #0369a1; 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; }

/* BOOKING FORM */
.sidebar {
    position: sticky;
    top: 6rem;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    overflow-x: hidden;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #0369a1 #f0f9ff;
    padding-right: 2px;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: #f0f9ff; border-radius: 2px; }
.sidebar::-webkit-scrollbar-thumb { background: #0369a1; border-radius: 2px; }
.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: #0369a1; box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.1); }
.package-info { background: #f0f9ff; padding: 1rem; border-radius: 0.5rem; margin-bottom: 1rem; border-left: 3px solid #0369a1; }
.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: #0369a1; 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: #0c4a6e; }
.form-disclaimer { font-size: 0.75rem; color: #6b7280; text-align: center; margin-top: 0.75rem; }

/* CONTACT CARD */
.contact-card { background: linear-gradient(135deg, #0369a1 0%, #0c4a6e 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 — replaced by SV Groups footer below */

/* FLOATING WHATSAPP */
.floating-whatsapp { position: fixed; bottom: 1.5rem; right: 1.5rem; left: auto; 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; }
.floating-whatsapp:hover { background: #16a34a; transform: scale(1.1); }


/* ========================================
   ANIMATIONS & MICRO-INTERACTIONS
   ======================================== */

/* ── ENTRANCE ANIMATIONS ──────────────────────────────────── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}

/* Hero elements appear one-by-one on page load */
.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; }

/* Highlights strip items scale in sequentially */
.highlight-item { animation: scaleIn 0.5s ease both; }
.highlight-item:nth-child(1) { animation-delay: 0.1s; }
.highlight-item:nth-child(2) { animation-delay: 0.2s; }
.highlight-item:nth-child(3) { animation-delay: 0.3s; }
.highlight-item:nth-child(4) { animation-delay: 0.4s; }
.highlight-item:nth-child(5) { animation-delay: 0.5s; }

/* ── SCROLL REVEAL (works with JS in inline script) ───────── */
.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);
}

/* ── BOOKING FORM GLOW ON FOCUS ──────────────────────────── */
.booking-card {
    transition: box-shadow 0.4s ease;
}
.booking-card:focus-within {
    box-shadow: 0 0 0 3px rgba(22,163,74,0.18), 0 10px 40px rgba(0,0,0,0.12);
}

/* ── WHATSAPP FLOAT BUTTON: 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; }
}

/* ── HERO BADGES ROW — LEFT ALIGNED ─────────────────────── */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

/* ============================================================
   SV GROUPS FOOTER — imported from main site
   ============================================================ */

.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;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* Animated top border */
@keyframes svBorderFlow {
  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: svBorderFlow 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"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.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 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);
  display: block !important;
}

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

/* ── Footer responsive ── */
@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 { font-size: 0.78rem; }
  .footer-address p { font-size: 0.78rem; line-height: 1.5; }
  .world-map { display: none; }
  .newsletter-form { 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; }
}