/* ========================================
   SHRI VINAYAK TRAVELS - KERALA PACKAGE 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-icon { color: #16a34a; 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: #16a34a; }

.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;
    color: white;
    padding: 5rem 0 4rem;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    /* Instant fallback colour — visible for the ~100ms before image paints */
    background-color: #064e3b;
}

/* Real Kerala backwaters photo as background */
.hero-bg {
    position: absolute;
    inset: 0;
    /* Mobile: 800w, Desktop: 1200w — served via preload above */
    background-image: url('https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?w=800&q=75&auto=format&fit=crop');
    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('https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?w=1200&q=80&auto=format&fit=crop');
    }
}

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

/* Layered gradient overlay for depth and text legibility */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            110deg,
            rgba(2, 44, 28, 0.82) 0%,
            rgba(5, 78, 49, 0.68) 45%,
            rgba(4, 120, 87, 0.35) 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(2, 30, 18, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

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

/* Water ripple 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 .container {
    position: relative;
    z-index: 4;
}

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

.hero-content { max-width: 48rem; position: relative; margin-right: auto; margin-left: 0; }

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

.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-group {
    background: rgba(34,197,94,0.3);
    border: 1px solid rgba(34,197,94,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-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-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: #16a34a;
    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: #f0fdf4; }

.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: #16a34a; }

/* ========================================
   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: #16a34a; }

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

/* ========================================
   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: #16a34a;
    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: #16a34a; 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, #f0fdf4 0%, #ecfdf5 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: #16a34a;
    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;
}

.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: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 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: #16a34a;
    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: #15803d; }

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

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

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

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden { display: none !important; }

html { scroll-behavior: smooth; }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

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

/* Hero content staggered entrance */
.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 for cards */
.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);
}

/* Highlight items pulse on load */
.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; }

/* Price number pop */
.price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    animation: fadeSlideUp 0.8s ease both;
    animation-delay: 0.75s;
}

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

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

/* ========================================
   SV GROUPS MAIN FOOTER
   ======================================== */
.sv-main-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 3rem 0 0;
    margin-top: 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sv-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.sv-footer-column {
    flex: 1 1 220px;
    min-width: 180px;
}

.sv-footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.sv-footer-column h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    display: inline;
}

.sv-footer-column p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.8;
}

.sv-footer-address {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sv-world-map {
    width: 120px;
    opacity: 0.7;
    border-radius: 4px;
}

.sv-footer-column ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sv-footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.sv-footer-column ul li a:hover {
    color: #22c55e;
}

/* Newsletter */
.sv-newsletter-form {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.75rem 0 1.25rem;
    flex-wrap: wrap;
}

.sv-newsletter-form img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.sv-newsletter-form input[type="email"] {
    flex: 1 1 120px;
    padding: 0.45rem 0.75rem;
    border: 1px solid #334155;
    border-radius: 0.4rem;
    background: #0f172a;
    color: #e2e8f0;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.2s;
}

.sv-newsletter-form input[type="email"]:focus {
    border-color: #22c55e;
}

.sv-newsletter-form button {
    background: #16a34a;
    color: #fff;
    border: none;
    padding: 0.45rem 0.9rem;
    border-radius: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.sv-newsletter-form button:hover {
    background: #15803d;
}

/* Social Icons */
.sv-social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.sv-social-icons > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    transition: transform 0.2s;
}

.sv-social-icons > div:hover {
    transform: translateY(-3px);
}

.sv-social-icons img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.sv-social-icons p {
    font-size: 0.7rem;
    color: #94a3b8;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Footer Bottom Bar */
.sv-footer-bottom {
    background: #0f172a;
    text-align: center;
    padding: 1rem 2rem;
    margin-top: 0;
}

.sv-footer-bottom p {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.8;
}

.sv-footer-bottom a {
    color: #22c55e;
    text-decoration: none;
}

.sv-footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .sv-footer-container {
        flex-direction: column;
        padding: 0 1.25rem 2rem;
    }
    .sv-footer-column {
        flex: 1 1 100%;
    }
}