/* ========================================
   SHRI VINAYAK TRAVELS — BALI PACKAGE CSS
   File: bali-package.css
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

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

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.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-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
   ======================================== */
/*
   IMAGE SETUP: Place dubaiSkyline.webp in the same folder.
   The hero-bg div handles the Ken Burns zoom effect.
*/
.hero {
    position: relative;
    color: white;
    padding: 5rem 0 4rem;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

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

/* ── Ken Burns background layer ── */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("dubaiSkyline.webp");
    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 (Dubai blue-teal tones) ── */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(5, 35, 60, 0.86) 0%,
        rgba(14, 78, 120, 0.68) 45%,
        rgba(30, 120, 160, 0.30) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* ── Vignette at bottom for smooth blending ── */
.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;
}

/* Keep the original overlay div for the left-weighted darkness */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.30) 40%,
        rgba(0, 0, 0, 0.00) 70%
    );
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .hero .container { padding-left: 4rem; }
}

@media (min-width: 1024px) {
    .hero .container { padding-left: 6rem; }
}

/* ========================================
   HERO PARTICLES (firefly / mist effect)
   ======================================== */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    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); }
}

/* ========================================
   HERO WATERLINE (shimmer at bottom)
   ======================================== */
.hero-waterline {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(125, 211, 252, 0.4) 20%,
        rgba(56, 189, 248, 0.75) 50%,
        rgba(125, 211, 252, 0.4) 80%,
        transparent 100%
    );
    z-index: 4;
    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 STAGGERED 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-subtitle     { animation: fadeSlideUp 0.7s ease both; animation-delay: 0.5s;  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; }

.hero-content {
    max-width: 38rem;
    width: 100%;
    text-align: left;
}

/* Hero Badges */
.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);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-intl {
    background: rgba(14, 165, 233, 0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(14, 165, 233, 0.5);
    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 Text */
.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    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-subtitle {
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 1rem;
}

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

/* Hero Pricing */
.hero-pricing {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.price-note {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Hero CTA Buttons */
.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.2);
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.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;
    flex-shrink: 0;
}

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

/* Price Range Box */
.price-range-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%);
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 1.25rem;
}

.price-range-title {
    font-weight: 600;
    color: #059669;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.price-range-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #d1fae5;
    font-size: 0.875rem;
    color: #374151;
}

.price-range-item:last-child {
    border-bottom: none;
}

.price-tag {
    font-weight: 700;
    color: #111827;
}

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

/* ========================================
   WHY CHOOSE CARD
   ======================================== */
.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
   ======================================== */
.sidebar {
    position: sticky;
    top: 5rem;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 4px;
}

.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;
    background: white;
}

.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;
    font-size: 0.9rem;
}

.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;
    font-size: 1rem;
}

.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;
    font-size: 1.05rem;
}

.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;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.contact-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* ========================================
   FOOTER  (SV Groups unified footer)
   ======================================== */
.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;
    z-index: 1;
    margin-top: 3rem;
}

/* Animated top border */
.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;
}

@keyframes borderFlow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

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

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

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.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(34, 197, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 999;
}

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

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

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