/* ==========================================================================
   OMM ADVERTISING - DUM DUM NEWSPAPER AD AGENCY HIGH-QUALITY UI/UX STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Design Tokens
   -------------------------------------------------------------------------- */
:root {
    --navy-main: #0a2540;
    --navy-dark: #06192d;
    --blue-accent: #0066cc;
    --blue-hover: #0052a3;
    --orange-cta: #ff6b00;
    --orange-hover: #e05e00;
    --whatsapp-color: #25d366;
    --whatsapp-hover: #128c7e;
    
    --bg-light: #f8fafc;
    --bg-surface: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --border-focus: #0066cc;
    
    --font-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 20px 30px -10px rgba(10, 37, 64, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & General Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-head);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--orange-cta);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Section Common */
.section-heading-block {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem auto;
}

.sub-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: rgba(0, 102, 204, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.section-heading-block h2 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy-main);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.section-heading-block p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   3. Top Announcement & Contact Bar
   -------------------------------------------------------------------------- */
.top-announcement-bar {
    background-color: var(--navy-dark);
    color: #e2e8f0;
    font-size: 0.85rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.top-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.top-contacts a {
    color: #ffffff;
    font-weight: 600;
}

.btn-whatsapp-top {
    background-color: var(--whatsapp-color);
    color: #ffffff !important;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
}

.btn-whatsapp-top:hover {
    background-color: var(--whatsapp-hover);
}

/* --------------------------------------------------------------------------
   4. Header & Original Logo Styling
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.original-logo {
    height: 48px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}

.brand-text-fallback {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-main);
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange-cta);
    margin-top: 2px;
}

.nav-links-list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-item {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.nav-item:hover {
    color: var(--blue-accent);
}

.btn-head-cta {
    background-color: var(--orange-cta);
    color: #ffffff !important;
    padding: 0.6rem 1.35rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: var(--shadow-sm);
}

.btn-head-cta:hover {
    background-color: var(--orange-hover);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.menu-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--navy-main);
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-wrapper {
    background: linear-gradient(135deg, #0a254c 0%, #0f3966 100%);
    color: #ffffff;
    padding: 3.5rem 0 4.5rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #38bdf8;
    background-color: rgba(56, 189, 248, 0.12);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.green-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}

.hero-main-title {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-sub-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.hero-visual-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-lg);
}

.hero-featured-image {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.visual-caption {
    padding: 0.6rem 0.5rem 0.25rem 0.5rem;
    font-size: 0.82rem;
    color: #94a3b8;
    text-align: center;
}

.trust-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.trust-point {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.point-icon {
    font-size: 1.3rem;
}

.trust-point strong {
    font-size: 0.95rem;
    color: #ffffff;
    display: block;
}

.trust-point p {
    font-size: 0.82rem;
    color: #94a3b8;
}

.hero-direct-call-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.btn-hero-call {
    background-color: var(--blue-accent);
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-md);
}

.btn-hero-call:hover {
    background-color: var(--blue-hover);
}

.email-note {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Booking Card (Form) */
.booking-card {
    background-color: #ffffff;
    color: var(--text-primary);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    box-shadow: var(--shadow-premium);
}

.card-header-accent h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-main);
    margin-bottom: 0.25rem;
}

.card-header-accent p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field label {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-head);
    font-size: 1rem; /* 16px to prevent iOS auto zoom */
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: #ffffff;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.field-error {
    font-size: 0.75rem;
    color: #dc2626;
    display: none;
}

.field-error.active {
    display: block;
}

.btn-submit-booking {
    background-color: var(--orange-cta);
    color: #ffffff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.9rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 0.5rem;
}

.btn-submit-booking:hover {
    background-color: var(--orange-hover);
    box-shadow: var(--shadow-md);
}

.form-guarantee-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   6. Newspaper Publisher Grid
   -------------------------------------------------------------------------- */
.section-papers-grid {
    padding: 4.5rem 0;
    background-color: #ffffff;
}

.papers-cards-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.paper-box {
    background-color: var(--bg-light);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.paper-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.paper-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--blue-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.paper-box h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy-main);
    margin-bottom: 0.25rem;
}

.paper-box .readers {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange-cta);
    margin-bottom: 0.75rem;
}

.paper-box .desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Accent Borders */
.border-abp { border-top: 4px solid #dc2626; }
.border-toi { border-top: 4px solid #2563eb; }
.border-bartaman { border-top: 4px solid #16a34a; }
.border-telegraph { border-top: 4px solid #9333ea; }
.border-eisamay { border-top: 4px solid #ea580c; }
.border-sanmarg { border-top: 4px solid #0891b2; }

/* --------------------------------------------------------------------------
   7. Newspaper Ad Types Section
   -------------------------------------------------------------------------- */
.section-ad-types {
    padding: 4.5rem 0;
    background-color: var(--bg-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.type-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}

.card-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(0, 102, 204, 0.2);
    margin-bottom: 0.5rem;
}

.type-card h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy-main);
    margin-bottom: 0.6rem;
}

.type-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. Other Media (TV, Radio, Outdoor)
   -------------------------------------------------------------------------- */
.section-other-media {
    padding: 4.5rem 0;
    background-color: #ffffff;
}

.other-media-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.media-column {
    background-color: var(--bg-light);
    padding: 2.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.media-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.media-column h3 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-main);
    margin-bottom: 0.75rem;
}

.media-column p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. Real Client Reviews Section
   -------------------------------------------------------------------------- */
.section-reviews {
    padding: 4.5rem 0;
    background-color: var(--navy-dark);
    color: #ffffff;
}

.section-reviews .section-heading-block h2 {
    color: #ffffff;
}

.section-reviews .section-heading-block p {
    color: #94a3b8;
}

.reviews-slider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.reviewer-meta strong {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
}

.reviewer-meta span {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* --------------------------------------------------------------------------
   10. FAQ Accordion
   -------------------------------------------------------------------------- */
.section-faq {
    padding: 4.5rem 0;
    background-color: var(--bg-light);
}

.faq-accordion-wrapper {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-row {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.plus-icon, .faq-icon {
    font-size: 1.4rem;
    color: var(--orange-cta);
    transition: var(--transition);
}

.faq-row.active .plus-icon,
.faq-row.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.93rem;
}

.faq-row.active .faq-content {
    max-height: 250px;
    padding-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   11. Branch Offices & Hyperlocal Network Section
   -------------------------------------------------------------------------- */
.section-locations-network {
    padding: 4.5rem 0;
    background-color: var(--navy-dark);
    color: #ffffff;
}

.section-locations-network .section-heading-block h2 {
    color: #ffffff;
}

.section-locations-network .section-heading-block p {
    color: #94a3b8;
}

.locations-chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    max-width: 1050px;
    margin: 0 auto;
}

.location-chip {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.location-chip:hover {
    background-color: var(--blue-accent);
    color: #ffffff;
    border-color: var(--blue-accent);
    transform: translateY(-2px);
}

.section-branch-info {
    padding: 4.5rem 0;
    background-color: #ffffff;
}

.branch-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.map-embed-box {
    width: 100%;
}

.map-card-wrapper {
    background-color: #ffffff;
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.office-location-box {
    background-color: var(--bg-light);
    padding: 2.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.highlight-office {
    border: 2px solid var(--blue-accent);
    background-color: rgba(0, 102, 204, 0.02);
}

.office-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    background-color: var(--blue-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.office-location-box h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-main);
    margin-bottom: 1rem;
}

.addr-line, .phone-line, .email-line, .hours-line {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    word-break: break-word;
}

.phone-line a, .email-line a {
    color: var(--navy-main);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--navy-dark);
    color: #94a3b8;
    padding-top: 4rem;
    font-size: 0.9rem;
}

.footer-main-flex {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-about {
    line-height: 1.6;
}

.footer-col-links h4,
.footer-col-legal h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.footer-col-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col-links a {
    color: #94a3b8;
}

.footer-col-links a:hover {
    color: #ffffff;
}

.footer-col-legal p {
    margin-bottom: 0.6rem;
    color: #cbd5e1;
    word-break: break-word;
}

.footer-sub-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.footer-sub-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.geo-note {
    color: #64748b;
}

/* --------------------------------------------------------------------------
   13. Floating WhatsApp Chat Bubble (Bottom Right)
   -------------------------------------------------------------------------- */
.whatsapp-float-bubble {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float-bubble:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-bubble .wa-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--navy-dark);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.whatsapp-float-bubble:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse Animation */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float-bubble {
    animation: wa-pulse 2s infinite;
}

/* --------------------------------------------------------------------------
   14. Toast Notification
   -------------------------------------------------------------------------- */
.toast-box {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 400px;
    background-color: var(--navy-dark);
    color: #ffffff;
    padding: 1.1rem 1.6rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    border-left: 5px solid var(--whatsapp-color);
    transform: translateY(180%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9999;
}

.toast-box.show {
    transform: translateY(0);
    opacity: 1;
}

/* --------------------------------------------------------------------------
   15. Mobile & Tablet Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .menu-toggle-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 1.5rem;
        display: none;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-links-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .btn-head-cta {
        width: 100%;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .footer-main-flex {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .top-bar-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .top-contacts {
        font-size: 0.78rem;
        gap: 0.75rem;
    }

    .hero-wrapper {
        padding: 2.5rem 0 3.5rem 0;
    }

    .hero-main-title {
        font-size: 1.95rem;
    }

    .hero-sub-text {
        font-size: 1rem;
    }

    .trust-points-grid {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 1.5rem 1.25rem;
    }

    .section-heading-block h2 {
        font-size: 1.8rem;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .footer-main-flex {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .original-logo {
        height: 38px;
    }

    .brand-title {
        font-size: 1.15rem;
    }

    .hero-main-title {
        font-size: 1.75rem;
    }

    .whatsapp-float-bubble {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float-bubble svg {
        width: 24px;
        height: 24px;
    }

    .toast-box {
        left: 15px;
        right: 15px;
        max-width: none;
        bottom: 85px;
    }
}
