/* tvad-styles.css */
:root {
    --primary: #f58220;     /* TVAd Orange */
    --primary-light: #ff983f;
    --primary-dark: #d56a10;
    --secondary: #e3000f;   /* TVAd Red */
    --secondary-hover: #c4000d;
    --dark: #121826;
    --darker: #0b0f19;
    --light: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gold: #f59e0b;
    
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: inherit;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style-position: inside;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.py-100 { padding: 50px 0; }
.pt-100 { padding-top: 50px; }
.pb-100 { padding-bottom: 50px; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); color: var(--white); }
.bg-dark p { color: #94a3b8; }
.bg-darker { background-color: var(--darker); color: var(--white); }
.bg-primary { background-color: var(--primary); }
.text-white { color: var(--white); }
.text-white p { color: rgba(255, 255, 255, 0.8); }
.text-gray { color: #94a3b8; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.rounded-image { border-radius: 12px; overflow: hidden; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-head);
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { display: block; width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff6b00);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #ff6b00, var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.4);
    color: var(--white);
}

.btn-secondary {
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}
.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-primary-small {
    background-color: var(--white);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
}
.btn-primary-small:hover {
    background-color: var(--darker);
    color: var(--white);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-danger {
    background: linear-gradient(135deg, var(--primary), #ff6b00);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.3);
}
.btn-danger:hover { 
    background: linear-gradient(135deg, #ff6b00, var(--primary-dark)); 
    color: white; 
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.4);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
}
.btn-outline-light {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

/* Links */
.link-primary {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}
.link-primary::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.link-primary:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Typography styles */
.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
}
.bg-dark .section-title, .bg-primary .section-title { color: var(--white); }

.section-desc { font-size: 1.2rem; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: var(--primary);
    transition: var(--transition);
}
.navbar.scrolled {
    background-color: var(--primary-dark);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img { height: 45px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a:not(.btn) {
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-head);
    font-size: 0.95rem;
}
.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--white);
}
.nav-links a:not(.btn):hover {
    color: var(--darker);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}
.lang-flag {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.6;
    transition: var(--transition);
}
.lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lang-flag.active, .lang-flag:hover {
    opacity: 1;
}

/* Hide Google Translate UI elements */
body { top: 0 !important; }
.goog-te-banner-frame { display: none !important; }
.skiptranslate { display: none !important; }

/* Hero Section */
.section-hero {
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Sleek Light Glassmorphism */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(241, 245, 249, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--darker);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-text-col {
    flex: 1;
    max-width: 650px;
}
.hero-video-col {
    flex: 1;
    max-width: 500px;
    width: 100%;
}
.hero-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 1);
}
.hero-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.tagline {
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 130, 32, 0.1);
    border-radius: 50px;
}
.headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    color: var(--darker);
    letter-spacing: -1px;
}
.sub-headline {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.8;
}
.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Animations */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUpAnim 0.8s forwards ease-out; }
.fade-up-delay-1 { opacity: 0; transform: translateY(30px); animation: fadeUpAnim 0.8s 0.2s forwards ease-out; }
.fade-up-delay-2 { opacity: 0; transform: translateY(30px); animation: fadeUpAnim 0.8s 0.4s forwards ease-out; }
.fade-up-delay-3 { opacity: 0; transform: translateY(30px); animation: fadeUpAnim 0.8s 0.6s forwards ease-out; }

@keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.pain-points {
    list-style: none;
    margin-top: 30px;
}
.pain-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-800);
}
.pain-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: calc(100% - 10px);
    width: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}
.transition-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary);
}
.transition-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-800);
    margin: 0;
}
.transition-box strong { color: var(--primary); font-size: 1.2rem;}

/* Why TVAd Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 75, 147, 0.2);
}
.feature-card h3 { font-size: 1.3rem; margin-bottom: 15px; }

.mission-quote {
    text-align: center;
    font-size: 1.5rem;
    font-family: var(--font-head);
    font-weight: 300;
    font-style: italic;
    color: var(--primary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 40px;
}
.mission-quote::before, .mission-quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--gray-200);
    position: absolute;
}
.mission-quote::before { top: -10px; left: 0; }
.mission-quote::after { bottom: -30px; right: 0; }

.team-image img { width: 100%; height: auto; max-height: 800px; object-fit: contain; }

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.service-card {
    background-color: var(--darker);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.1);
}
.service-img {
    height: 240px;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-img img {
    transform: scale(1.05);
}
.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-content h3 { font-size: 1.4rem; color: var(--white); }
.service-content p { color: #94a3b8; flex-grow: 1;}
.service-target { font-size: 0.9rem; color: var(--gold) !important; margin-bottom: 20px;}
.service-link { font-weight: 700; color: var(--secondary); margin-top: auto; display: inline-block;}
.service-link:hover { color: #ff3342; }

/* Cases */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.case-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px);}
.case-img { height: 200px; }
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-info { padding: 25px; }
.case-info h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 10px;}
.case-info strong { color: var(--primary); font-size: 1.1rem;}
.case-link { font-weight: 600; font-size: 0.95rem; }

/* Marquee */
.client-logos { overflow: hidden; position: relative;}
.client-logos::before, .client-logos::after {
    content: '';
    position: absolute;
    top: 0; width: 100px; height: 100%; z-index: 2;
}
.client-logos::before { left: 0; background: linear-gradient(to right, white, transparent); }
.client-logos::after { right: 0; background: linear-gradient(to left, white, transparent); }

.marquee-content {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
    align-items: center;
    width: max-content;
}
.marquee-content img {
    height: 60px;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition);
}
.marquee-content img:hover { filter: grayscale(0) opacity(1); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px;}
.testimonial-card {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    position: relative;
}
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px; left: 30px;
    font-size: 2rem;
    color: rgba(0, 75, 147, 0.1);
}
.avatar { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 20px;}
.quote { font-size: 1.1rem; font-style: italic; color: var(--gray-800); margin-bottom: 20px; z-index: 2; position: relative;}
.testimonial-card h5 { font-size: 0.95rem; color: var(--primary); margin: 0; font-weight: 700; }

/* Trust Signals */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--primary);
}
.stat-number { font-size: 3rem; font-family: var(--font-head); font-weight: 800; color: var(--primary); margin-bottom: 10px;}
.stat-desc { font-weight: 600; color: var(--gray-600); }

.awards-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.awards-gallery img { width: 100%; height: 350px; object-fit: cover;}
.awards-text ul { list-style: none; padding: 0; margin-top: 20px;}
.awards-text li { margin-bottom: 15px; font-weight: 600; font-size: 1.1rem; }
.awards-text i { margin-right: 15px; font-size: 1.2rem;}

/* Media Inventory */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.media-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.media-img { height: 200px; }
.media-img img { width: 100%; height: 100%; object-fit: cover; }
.media-content { padding: 25px; }
.media-content h3 { font-size: 1.2rem; min-height: 55px; }
.media-details { list-style: none; padding: 0; margin-bottom: 20px; border-top: 1px solid var(--gray-200); padding-top: 15px;}
.media-details li { margin-bottom: 8px; font-size: 0.95rem; }

/* Process */
.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,0.1);
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}
.step-icon {
    width: 60px; height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; font-family: var(--font-head);
    flex-shrink: 0;
    box-shadow: 0 0 0 5px var(--darker);
    z-index: 2;
}
.step-content {
    background: var(--darker);
    padding: 30px;
    border-radius: 12px;
    flex-grow: 1;
    border: 1px solid rgba(255,255,255,0.05);
}
.step-content h3 { margin-bottom: 10px; color: var(--gold); }
.step-content p { margin: 0; }

/* Milestones */
.milestones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.milestone-item img { height: 220px; width: 100%; object-fit: cover; }
.milestone-content h3 { font-size: 1.15rem; }

/* Blog */
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-img { height: 200px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { padding: 25px; }
.blog-tag { font-size: 0.85rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 15px;}
.blog-content h3 { font-size: 1.25rem; margin-bottom: 15px; }
.blog-link { font-weight: 700; }

/* CTA form */
.cta-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-text h2 { font-size: 2.5rem; margin-bottom: 20px;}
.office h4 { color: var(--white); font-weight: 800; font-size: 1.2rem; margin-bottom: 5px; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.office p { margin: 0; color: rgba(255,255,255,0.9); font-size: 1.05rem; }

.cta-form-wrapper { background: var(--white); padding: 40px; border-radius: 16px; box-shadow: var(--shadow-xl); color: var(--dark); }
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem;}
.form-group input, .form-group select {
    width: 100%; padding: 14px; border: 1px solid var(--gray-200); border-radius: 8px; font-family: var(--font-body); font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 75, 147, 0.1);
}

.d-show-mobile { display: none; }

/* Modal */
.modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9); backdrop-filter: blur(5px);
    align-items: center; justify-content: center;
}
.modal.show { display: flex; animation: fadeIn 0.3s forwards;}
.modal-content { position: relative; width: 90%; max-width: 1000px; }
.close-modal { position: absolute; right: -40px; top: -40px; color: white; font-size: 40px; cursor: pointer; transition: color 0.3s; }
.close-modal:hover { color: var(--secondary); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }
.video-wrapper video, .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 8px;}

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

/* FOOTER */
.footer p {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-top: 80px; 
    }
    .hero-text-col { max-width: 800px; margin: 0 auto; }
    .cta-group { justify-content: center; }
    .headline { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Add hamburger for real app */
    .headline { font-size: 2.2rem; }
    .problem-grid, .cta-container, .awards-gallery { grid-template-columns: 1fr; }
    .features-grid, .case-grid, .media-grid, .milestones-grid, .blog-grid, .testimonial-grid { grid-template-columns: 1fr; }
    
    .py-100 { padding: 60px 0; }
    
    .process-timeline::before { left: 20px; }
    .step-icon { width: 40px; height: 40px; font-size: 1.2rem; box-shadow: 0 0 0 3px var(--darker); }
    .step { gap: 20px; }
    
    .d-none-mobile { display: none; }
    .d-show-mobile { display: block; }
}

/* Floating Booking Button */
.floating-btn { position: fixed; bottom: 30px; right: 30px; z-index: 1000; background: var(--darker); color: white; padding: 15px 25px; border-radius: 50px; font-weight: bold; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; font-family: var(--font-head); border: 1px solid rgba(255,255,255,0.1); }
.floating-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); color: var(--gold); }
.floating-btn i { font-size: 1.2rem; }
@media (max-width: 768px) { .floating-btn { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 1rem; } }
