/* Main CSS for TELARAN UG LTD */

html {
    scroll-behavior: auto;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    overflow-x: hidden;
}

main {
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

body.nav-open,
body.payment-open {
    overflow: hidden;
}

/* Homepage hero starts flush at the top */
body.home-page .hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.home-page .hero-content,
body.home-page .hero-inner {
    padding-top: 120px;
}

/* Inner pages start below the header/navbar */
body.inner-page main,
body.inner-page .page-main,
body.inner-page .inner-page-content {
    padding-top: 130px;
}

body.inner-page .page-hero,
body.inner-page .inner-hero {
    padding-top: 150px;
    padding-bottom: 70px;
}

@media (max-width: 768px) {
    body.home-page .hero-content,
    body.home-page .hero-inner {
        padding-top: 110px;
    }

    body.inner-page main,
    body.inner-page .page-main,
    body.inner-page .inner-page-content {
        padding-top: 105px;
    }

    body.inner-page .page-hero,
    body.inner-page .inner-hero {
        padding-top: 120px;
        padding-bottom: 50px;
    }
}

.payment-overlay {
    position: fixed;
    inset: 0;
    overflow-y: auto;
    padding: 18px 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 45, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
}

.payment-overlay[hidden] {
    display: none !important;
}

.payment-modal {
    width: min(100%, 760px);
    max-height: calc(100vh - 32px);
    max-width: calc(100vw - 24px);
    overflow-y: auto;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    position: relative;
    animation: modalPop 0.35s ease;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    font-size: 22px;
    cursor: pointer;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    padding: 28px;
}

.book-preview img {
    width: 130px;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.book-preview h2 {
    font-size: 28px;
    color: #1f2937;
    margin: 20px 0 8px;
}

.orange {
    color: #ff5a00;
}

.amount-box,
.secure-box,
.payment-details,
.instructions-box,
.payment-info-card {
    background: #fff7f1;
    border: 1px solid #ffe1cc;
    border-radius: 14px;
    padding: 16px;
    margin-top: 20px;
}

.amount {
    font-size: 34px;
    font-weight: 800;
    color: #ff5a00;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.method {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    color: #111827;
    font-weight: 600;
}

.method.active,
.method:hover {
    border-color: #ff5a00;
    color: #ff5a00;
    box-shadow: 0 8px 25px rgba(255, 90, 0, 0.15);
}

.copy-btn {
    background: #fff;
    color: #ff5a00;
    border: 1px solid #ffd0b3;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
}

.qr-box {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.qr-code {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px dashed #ffb27a;
    background: linear-gradient(135deg, #fff, #fff7f1);
    color: #ff5a00;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.modal-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.cancel-btn,
.pay-btn {
    flex: 1;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.cancel-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
}

.pay-btn {
    background: #ff5a00;
    border: none;
    color: #fff;
}

.pay-btn:hover {
    background: #e65100;
}

.payment-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff3eb;
    padding: 18px 28px;
    gap: 20px;
    color: #444;
}

.footer-item strong {
    color: #ff5a00;
}

@media (max-width: 768px) {
    .payment-overlay {
        padding: 10px;
        align-items: flex-start;
    }

    .payment-modal {
        max-height: calc(100vh - 20px);
        max-width: calc(100vw - 20px);
    }

    .payment-modal {
        width: 100%;
        max-height: calc(100vh - 20px);
        border-radius: 14px;
    }

    .payment-content {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 16px;
    }

    .book-preview img {
        width: 90px;
    }

    .book-preview h2 {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 1.8rem;
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-info-card,
    .amount-box,
    .secure-box,
    .instructions-box {
        padding: 14px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .payment-footer {
        grid-template-columns: 1fr;
        padding: 16px;
    }
}

header, footer {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

body.home-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
}

body.inner-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
}

nav.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(8px);
}

nav .logo,
nav .drawer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #111827;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

nav .logo-icon {
    color: #ff6600;
    font-size: 1.8rem;
}

nav .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    margin: 0;
    padding: 0;
}

nav .desktop-nav {
    display: flex;
}

nav .mobile-nav {
    display: none;
}

nav .nav-links li a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    padding: 0.45rem 0.15rem;
    position: relative;
    transition: color 0.2s ease;
}

nav .nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff8a3d, #ff6600);
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

nav .nav-links li a:hover,
nav .nav-links li a:focus-visible {
    color: #ff6600;
}

nav .nav-links li a:hover::after,
nav .nav-links li a:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

nav .nav-links li a.active,
.nav-drawer .nav-links li a.active {
    color: #ff6600;
}

.nav-drawer .nav-links li a.active {
    color: #ff6600;
}

nav .nav-links li a.active::after,
.nav-drawer .nav-links li a.active::after {
    transform: scaleX(1);
    opacity: 1;
}

/* SERVICES DROPDOWN */
.has-service-dropdown {
    position: relative;
}

.services-menu-link i,
.services-toggle i {
    font-size: 0.75rem;
    margin-left: 6px;
}

.service-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 320px;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(255, 90, 0, 0.12);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1040;
}

.has-service-dropdown:hover .service-dropdown,
.has-service-dropdown:focus-within .service-dropdown,
.has-service-dropdown.open .service-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.service-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #111827;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.service-dropdown a + a {
    margin-top: 4px;
}

.service-dropdown a span {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.service-dropdown a small {
    display: block;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.35;
    margin-top: 2px;
}

.service-dropdown a:hover,
.service-dropdown a:focus-visible {
    background: #fff7f0;
    color: #ff5a00;
    transform: translateX(2px);
}

.service-dropdown a:hover small,
.service-dropdown a:focus-visible small {
    color: #7c2d12;
}

.service-category {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #fff7f0;
    border-left: 5px solid #ff5a00;
    border-radius: 14px;
}

.service-category h2 {
    color: #111827;
    margin-bottom: 0.5rem;
}

.service-category p {
    color: #4b5563;
    line-height: 1.7;
}

.mobile-mega-item .mobile-mega-links {
    display: none;
    margin: 0.25rem 0 0.5rem 0.75rem;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
}

.mobile-mega-item.is-open .mobile-mega-links {
    display: block;
}

.mobile-mega-links li {
    border-bottom: 0;
}

.mobile-mega-links a {
    padding: 0.55rem 0.35rem !important;
    font-size: 0.95rem !important;
}

.services-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    text-align: left;
    padding: 0.9rem 0.35rem;
    cursor: pointer;
}

@media (max-width: 900px) {
    .has-mega-menu {
        position: static;
    }

    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 12px;
        padding: 14px;
        margin-top: 8px;
        display: none;
    }

    .has-mega-menu.is-open .mega-menu {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mega-menu-column h4 {
        color: #ff8a3d;
        font-size: 0.95rem;
        border-bottom-color: rgba(255, 255, 255, 0.15);
    }

    .mega-menu-column a {
        color: #ffffff !important;
        font-size: 0.9rem !important;
        padding: 7px 0 !important;
    }

    .mega-menu-column a:hover {
        color: #ff8a3d !important;
    }
}

.nav-drawer .nav-links li a.quote-btn {
    display: inline-flex;
    width: 100%;
    padding: 10px 14px 10px 10px;
    border-radius: 999px;
    box-sizing: border-box;
}

.nav-drawer .nav-links li a.quote-btn::after {
    display: none;
}

.nav-cta {
    display: flex;
    align-items: center;
    margin-left: 16px;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    flex-shrink: 0;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 116px;
    min-height: 36px;
    padding: 4px 10px 4px 6px;
    border-radius: 999px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffae21 0%, #ff7a00 38%, #ff4b00 100%);
    border: 3px solid #ffb347;
    box-shadow: 0 12px 28px rgba(255, 92, 0, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.28), inset 0 -2px 0 rgba(0, 0, 0, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    flex-shrink: 0;
}

.quote-btn::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.quote-btn__icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff5a00;
    font-size: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.quote-btn__icon svg {
    width: 20px;
    height: 20px;
}

.quote-btn__text {
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.2px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.quote-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 16px 34px rgba(255, 92, 0, 0.45), inset 0 2px 0 rgba(255, 255, 255, 0.32), inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.quote-btn:focus-visible {
    outline: 3px solid rgba(255, 170, 70, 0.45);
    outline-offset: 4px;
}

.quote-btn:active {
    transform: translateY(0);
}

.quote-btn--mobile {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.5rem;
}

.get-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 15px 30px;

  background: linear-gradient(
    135deg,
    #ff6a00 0%,
    #ff5a00 45%,
    #ff7b1a 100%
  );

  color: #fff;
  text-decoration: none;

  border-radius: 14px;
  border: none;

  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;

  cursor: pointer;

  box-shadow:
    0 12px 28px rgba(255, 90, 0, 0.28),
    0 4px 10px rgba(255, 90, 0, 0.18);

  transition: all 0.3s ease;
}

.get-quote-btn i {
  font-size: 14px;
  color: #fff;
}

.get-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 35px rgba(255, 90, 0, 0.35),
    0 8px 18px rgba(255, 90, 0, 0.22);
}

.get-quote-btn:active {
  transform: scale(0.97);
}

@media (max-width: 768px) {
    .quote-btn {
        min-width: 104px;
        min-height: 34px;
        padding: 4px 8px 4px 4px;
        gap: 6px;
    }

    .quote-btn__icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }

    .quote-btn__icon svg {
        width: 14px;
        height: 14px;
    }

    .quote-btn__text {
        font-size: 11px;
    }
}

.menu-toggle,
.nav-close {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle {
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
}

.menu-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    background: #111827;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 12, 20, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1099;
}

.nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(88vw, 340px);
    height: 100vh;
    padding: 1rem;
    background: rgba(10, 17, 28, 0.92);
    box-shadow: 18px 0 30px rgba(0, 0, 0, 0.35);
    color: #fff;
    transform: translateX(-105%);
    transition: transform 0.32s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-drawer.is-open {
    transform: translateX(0);
}

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nav-drawer .drawer-logo,
.nav-drawer .nav-links li a {
    color: #fff;
}

.nav-drawer .logo-icon {
    color: #ff8a3d;
}

.nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.nav-drawer .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding-top: 0.5rem;
}

.nav-drawer .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-drawer .nav-links li:last-child {
    border-bottom: 0;
}

.nav-drawer .nav-links li a {
    display: block;
    padding: 0.9rem 0.35rem;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 0.75rem;
}

.nav-drawer .nav-links li a::after {
    content: '';
    position: absolute;
    left: 0.35rem;
    right: 0.35rem;
    bottom: 0.35rem;
    height: 2px;
    background: linear-gradient(90deg, #ff8a3d, #ff6600);
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-drawer .nav-links li a:hover,
.nav-drawer .nav-links li a:focus-visible {
    background: rgba(255,255,255,0.08);
    color: #ffd6b8;
}

.nav-drawer .nav-links li a:hover::after,
.nav-drawer .nav-links li a:focus-visible::after,
.nav-drawer .nav-links li a.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.hero {
    position: relative;
    min-height: 100vh !important;
    height: 100vh !important;
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    box-sizing: border-box;
    isolation: isolate;
    top: 0;
    left: 0;
    right: 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s ease, transform 1.4s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.hero-inner,
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding: 120px 40px 0;
    box-sizing: border-box;
}

.hero-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.28rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.45rem;
    padding: 0.35rem 0.6rem;
    background: linear-gradient(135deg, rgba(8, 15, 28, 0.82), rgba(15, 23, 42, 0.78), rgba(255, 190, 90, 0.18), rgba(255, 120, 40, 0.24));
    border: none;
    border-radius: 6px;
    box-shadow: none;
    width: fit-content;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.32rem;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.75rem;
    display: inline-block;
    padding: 0.35rem 0.6rem;
    background: linear-gradient(135deg, rgba(8, 15, 28, 0.78), rgba(15, 23, 42, 0.72), rgba(255, 200, 110, 0.16), rgba(255, 120, 40, 0.22));
    border: none;
    border-radius: 6px;
    box-shadow: none;
    width: fit-content;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    display: block;
    padding: 0.35rem 0.5rem;
    background: linear-gradient(135deg, rgba(8, 15, 28, 0.84), rgba(15, 23, 42, 0.76), rgba(255, 190, 90, 0.18), rgba(255, 120, 40, 0.26));
    border: none;
    border-radius: 10px;
    box-shadow: none;
}

.hero-copy {
    max-width: 720px;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #f2f5f9;
    margin-bottom: 1.5rem;
    display: block;
    padding: 0.45rem 0.6rem;
    background: linear-gradient(135deg, rgba(8, 15, 28, 0.80), rgba(15, 23, 42, 0.74), rgba(255, 200, 110, 0.16), rgba(255, 120, 40, 0.22));
    border: none;
    border-radius: 8px;
    box-shadow: none;
}

.hero-inner h1,
.hero-inner .eyebrow,
.hero-inner .hero-copy,
.hero-inner .hero-actions,
.hero-content h1,
.hero-content p,
.hero-content .hero-kicker,
.hero-content .hero-actions {
    max-width: 720px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff8a3d, #ff6600);
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 102, 0, 0.45);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px !important;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.45rem 0.55rem;
    border-radius: 999px;
    z-index: 3;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(230, 235, 243, 0.6);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    cursor: pointer;
    transition: width 0.28s ease, background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.88);
    transform: scale(1.08);
}

.hero-dot.is-active {
    width: 2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb27a 0%, #ff7a1a 45%, #ff5b00 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 14px rgba(255, 122, 26, 0.55), 0 8px 18px rgba(255, 102, 0, 0.28);
}

section {
    scroll-margin-top: 100px;
}

.section {
    padding: 3rem 2rem;
    background: #fff;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.section-title span {
    display: block;
    width: 60px;
    height: 4px;
    background: #ff6600;
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 2px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex: 1 1 260px;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #ffe2d3;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
    text-align: left;
    min-height: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(255, 102, 0, 0.14);
}

.service-card h3 {
    margin: 0 0 0.75rem;
    color: #111827;
    font-size: 1.15rem;
    line-height: 1.35;
}

.service-card p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.service-icon {
    color: #ff6600;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-card {
    background: #fff7f0;
    border-radius: 10px;
    padding: 2rem 2.5rem;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.contact-icon {
    color: #ff6600;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

footer {
    background:
        linear-gradient(135deg, rgba(16, 24, 32, 0.98), rgba(8, 12, 18, 0.98)),
        linear-gradient(90deg, #ff7a00 0%, #ffb347 100%);
    color: #fff;
    padding: 2.2rem 2rem 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-section {
    flex: 1 1 180px;
    min-width: 180px;
}

.footer-brand {
    flex: 1.2 1 260px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.footer-section h4 {
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    color: #ffb36b;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
}

.footer-brand p,
.footer-contact-list {
    color: #e5edf5;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(255, 122, 0, 0.18);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-contact-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.copyright {
    text-align: center;
    margin-top: 1.4rem;
    color: #d9e3ef;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

@media (min-width: 769px) {
    nav .desktop-nav {
        display: flex;
    }

    nav .mobile-nav {
        display: none;
    }

    .menu-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    nav.main-nav {
        padding: 0.9rem 1rem;
    }

    .menu-toggle,
    .nav-close {
        display: inline-flex;
    }

    nav .desktop-nav {
        display: none;
    }

    nav .mobile-nav {
        display: flex;
    }

    nav .logo span {
        font-size: 0.98rem;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 100vh;
        padding: 5rem 1rem 3rem;
    }

    .section {
        padding: 2rem 1rem;
        border-radius: 0;
    }

    .hero-inner {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* HERO BACKGROUND FULL COVER */
.hero,
.hero-section,
#hero,
.first-section {
  min-height: 100vh;
  width: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
}

/* HERO BUTTONS */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 26px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn.primary {
  background: #ff5a00;
  color: #fff;
}

.hero-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-btn.secondary:hover {
  background: #fff;
  color: #ff5a00;
  border-color: #fff;
}

.hero-btn:hover {
  transform: translateY(-3px);
}

/* MOBILE SIDEBAR FIX */
.mobile-menu,
.sidebar,
.nav-drawer {
  background: rgba(7, 17, 27, 0.96) !important;
  color: #fff !important;
  z-index: 99999;
}

.mobile-menu a,
.sidebar a,
.nav-drawer a {
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a.active,
.sidebar a:hover,
.sidebar a.active,
.nav-drawer a:hover,
.nav-drawer a.active {
  color: #ff5a00 !important;
  background: rgba(255, 90, 0, 0.12);
  border-radius: 10px;
}

.mobile-get-quote,
.sidebar .get-quote,
.nav-drawer .get-quote {
  display: flex !important;
  margin: 24px 18px 0;
  justify-content: center;
  background: #ff5a00 !important;
  color: #fff !important;
  padding: 15px 22px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
}

/* MOBILE HERO */
@media (max-width: 768px) {
  .hero,
  .hero-section,
  #hero,
  .first-section {
    min-height: 85vh !important;
    height: 85vh !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .hero-inner,
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btn.secondary {
    display: none;
  }

  .hero-btn {
    width: 210px;
  }
}

/* --- PREMIUM NAVBAR & FOOTER OVERRIDE --- */
:root {
  --orange: #ff5a00;
  --dark: #111827;
  --light: #ffffff;
}

.nav-menu a,
.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0 0 10px;
}

.logo,
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo i,
.brand i {
  font-size: 42px;
  color: var(--orange) !important;
}

.logo span,
.brand span,
.logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: .4px;
}

.logo small,
.brand small,
.logo-subtitle {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
}

.nav-menu,
.nav-links {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-left: auto;
}

.nav-menu a,
.nav-links a {
  color: var(--dark) !important;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  position: relative;
  padding: 40px 0;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange) !important;
}

.nav-menu a.active::after,
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: var(--orange);
  border-radius: 20px;
}

.nav-cta,
.get-quote {
  margin-left: 16px;
  background: transparent !important;
  color: inherit !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.nav-cta i,
.get-quote i {
  color: #fff !important;
  margin-right: 8px;
}

.quote-btn__icon i,
.quote-btn--mobile .quote-btn__icon i {
  color: #ff5a00 !important;
}

/* FOOTER PREMIUM DARK */
.footer {
  background: linear-gradient(135deg, #07111b, #101820) !important;
  color: #fff;
  padding: 60px 38px 24px;
}

/* ======================================
   SERVICES MEGA MENU LIKE REFERENCE IMAGE
====================================== */

/* Disable old mega menu styles if they still exist */
.mega-menu {
    display: none !important;
}

.services-mega-parent {
    position: static !important;
}

.services-mega-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    color: #1f2937 !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    padding: 0.45rem 0.15rem !important;
}

.services-mega-trigger i {
    font-size: 0.85rem;
}

.services-mega-panel {
    position: fixed;
    top: 105px;
    left: 50%;
    transform: translateX(-50%) translateY(14px);
    width: min(980px, calc(100vw - 90px));
    max-height: calc(100vh - 135px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 34px 42px 38px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22), 0 10px 25px rgba(15, 23, 42, 0.10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99999;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.services-mega-parent:hover .services-mega-panel,
.services-mega-parent:focus-within .services-mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.services-mega-parent.is-open .services-mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.services-mega-grid {
    display: grid !important;
    grid-template-columns: 1.25fr 1.2fr 1fr 1.1fr;
    gap: 46px;
    align-items: start;
}

.services-mega-col h4 {
    margin: 0 0 22px !important;
    padding: 0 !important;
    color: #1f2937 !important;
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    line-height: 1.45 !important;
}

.services-mega-col a {
    display: block !important;
    padding: 0 !important;
    margin: 0 0 15px !important;
    color: #374151 !important;
    text-decoration: none !important;
    font-size: 0.96rem !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    transition: color 0.2s ease, transform 0.2s ease;
}

.services-mega-col a::after {
    display: none !important;
    content: none !important;
}

.services-mega-col a:hover {
    color: #ff5a00 !important;
    transform: translateX(5px);
}

.services-mega-parent:hover > .services-mega-trigger {
    color: #ff5a00 !important;
}

@media (max-width: 900px) {
    .services-mega-panel {
        display: none !important;
    }
}

.footer h3,
.footer-title {
  color: var(--orange) !important;
  font-weight: 800;
}

.footer a,
.footer p,
.footer li {
  color: #d1d5db !important;
  font-size: 16px;
  line-height: 1.7;
}

.footer a:hover {
  color: var(--orange) !important;
}

.footer i {
  color: var(--orange) !important;
}

.footer-gallery img {
  border-radius: 12px;
  height: 72px;
  object-fit: cover;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 30px;
  padding-top: 22px;
}

/* LARGE SCREEN HERO CONTENT */
@media (min-width: 1200px) {
  .hero-inner,
  .hero-content {
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .site-header,
  .navbar {
    height: 78px;
    padding: 0 14px;
    top: 10px;
  }

  .nav-menu,
  .nav-links,
  .nav-cta,
  .get-quote {
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    background: transparent;
    border: 0;
  }
}

@media (min-width: 769px) {
  .sidebar,
  .mobile-menu,
  .nav-drawer,
  .drawer,
  .menu-overlay,
  .nav-overlay {
    display: none !important;
    visibility: hidden !important;
    transform: translateX(-100%) !important;
  }
}

main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  box-sizing: border-box;
}

.hero,
.hero-section,
#hero,
.first-section {
  width: 100vw !important;
  max-width: none !important;
  min-height: 100vh !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero img,
.hero-section img,
#hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ===============================
   CONTACT FORM SECTION
================================ */

.contact-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.contact-intro {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #4b5563;
    line-height: 1.7;
}

.contact-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-info-panel {
    background: linear-gradient(135deg, #111827, #07111b);
    color: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.contact-info-panel h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-info-panel p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.contact-info-item i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #ff5a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
}

.contact-info-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-info-item span {
    color: #d1d5db;
}

.contact-form {
    background: #fff7f0;
    border: 1px solid #ffe1cc;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(255, 90, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 800;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #ffd0b3;
    border-radius: 14px;
    padding: 0.95rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: #111827;
    background: #ffffff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff5a00;
    box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.12);
}

.contact-submit-btn {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 1rem 1.4rem;
    background: linear-gradient(135deg, #ff7a00, #ff4b00);
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 16px 34px rgba(255, 90, 0, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(255, 90, 0, 0.36);
}

@media (max-width: 900px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-panel h2 {
        font-size: 1.55rem;
    }
}

/* =========================================================
   FINAL NAVBAR + SERVICES MEGA MENU FIX
   Add this at the VERY BOTTOM of main.css
========================================================= */

:root {
    --telaran-orange: #ff5a00;
    --telaran-dark: #111827;
    --telaran-muted: #6b7280;
    --telaran-white: #ffffff;
}

/* Stop old conflicting dropdown systems */
.mega-menu,
.service-dropdown,
.has-service-dropdown .service-dropdown,
.has-mega-menu .mega-menu {
    display: none !important;
}

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    padding: 10px 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

nav.main-nav {
    width: min(1180px, calc(100% - 32px)) !important;
    margin: 0 auto !important;
    padding: 10px 14px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16) !important;
    backdrop-filter: blur(10px) !important;
}

.logo,
.drawer-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    color: var(--telaran-dark) !important;
    flex-shrink: 0 !important;
}

.logo-icon {
    color: var(--telaran-orange) !important;
    font-size: 30px !important;
}

.logo span,
.drawer-logo span {
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    color: var(--telaran-dark) !important;
}

.desktop-nav {
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
}

.desktop-nav > li {
    list-style: none !important;
}

.desktop-nav > li > a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 12px 0 !important;
    margin: 0 !important;
    color: var(--telaran-dark) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    position: relative !important;
}

.desktop-nav > li > a::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 3px !important;
    width: 100% !important;
    height: 2px !important;
    border-radius: 10px !important;
    background: var(--telaran-orange) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    opacity: 0 !important;
    transition: 0.25s ease !important;
}

.desktop-nav > li > a:hover,
.desktop-nav > li > a.active {
    color: var(--telaran-orange) !important;
}

.desktop-nav > li > a:hover::after,
.desktop-nav > li > a.active::after {
    transform: scaleX(1) !important;
    opacity: 1 !important;
}

.services-mega-parent {
    position: static !important;
}

.services-mega-trigger {
    cursor: pointer !important;
}

.services-mega-panel {
    position: fixed !important;
    top: 96px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(16px) !important;
    width: min(980px, calc(100vw - 100px)) !important;
    max-height: calc(100vh - 130px) !important;
    overflow-y: auto !important;
    background: rgba(255, 255, 255, 0.97) !important;
    border-radius: 4px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    padding: 34px 42px 38px !important;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22), 0 10px 25px rgba(15, 23, 42, 0.10) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 100000 !important;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
}

.services-mega-parent:hover .services-mega-panel,
 .services-mega-parent.is-open .services-mega-panel {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.services-mega-grid {
    display: grid !important;
    grid-template-columns: 1.25fr 1.2fr 1fr 1.1fr !important;
    gap: 46px !important;
    align-items: start !important;
}

.services-mega-col h4 {
    margin: 0 0 22px !important;
    padding: 0 !important;
    color: #1f2937 !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1.4 !important;
}

.services-mega-col a {
    display: block !important;
    padding: 0 !important;
    margin: 0 0 15px !important;
    color: #374151 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
}

.services-mega-col a::after {
    display: none !important;
    content: none !important;
}

.services-mega-col a:hover {
    color: var(--telaran-orange) !important;
    transform: translateX(5px) !important;
}

.nav-cta {
    margin-left: 4px !important;
    display: flex !important;
    align-items: center !important;
}

.quote-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    min-width: 110px !important;
    min-height: 34px !important;
    padding: 4px 10px 4px 5px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #ffae21 0%, #ff7a00 38%, #ff4b00 100%) !important;
    border: 3px solid #ffb347 !important;
    text-decoration: none !important;
    box-shadow: 0 12px 28px rgba(255, 92, 0, 0.35) !important;
}

.quote-btn::after {
    display: none !important;
}

.quote-btn__icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    color: var(--telaran-orange) !important;
    font-size: 13px !important;
}

.quote-btn__text {
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

.menu-toggle {
    display: none !important;
}

.nav-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(7, 12, 20, 0.55) !important;
    backdrop-filter: blur(4px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 100001 !important;
    transition: opacity 0.25s ease, visibility 0.25s ease !important;
}

.nav-overlay.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: min(88vw, 350px) !important;
    height: 100vh !important;
    padding: 18px !important;
    background: rgba(7, 17, 27, 0.98) !important;
    color: #ffffff !important;
    transform: translateX(-105%) !important;
    transition: transform 0.32s ease !important;
    z-index: 100002 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
}

.nav-drawer.is-open {
    transform: translateX(0) !important;
}

.nav-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-bottom: 18px !important;
}

.drawer-logo span {
    color: #ffffff !important;
}

.nav-close {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    cursor: pointer !important;
}

.mobile-nav-links {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-nav-links li {
    list-style: none !important;
}

.mobile-nav-links a,
.services-toggle {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 12px !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    background: transparent !important;
    border: 0 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-align: left !important;
    cursor: pointer !important;
}

.mobile-nav-links a::after {
    display: none !important;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active,
.services-toggle:hover {
    background: rgba(255, 90, 0, 0.14) !important;
    color: var(--telaran-orange) !important;
}

.mobile-services-links {
    list-style: none !important;
    display: none !important;
    margin: 4px 0 10px 12px !important;
    padding: 0 0 0 14px !important;
    border-left: 2px solid rgba(255, 255, 255, 0.14) !important;
}

.mobile-services-item.is-open .mobile-services-links {
    display: block !important;
}

.mobile-services-links a {
    padding: 10px 8px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #e5e7eb !important;
}

.quote-btn--mobile {
    margin-top: 10px !important;
    width: 100% !important;
    justify-content: flex-start !important;
}

@media (max-width: 900px) {
    .site-header {
        padding: 12px 0 !important;
    }

    nav.main-nav {
        width: min(100% - 24px, 1180px) !important;
        padding: 12px 14px !important;
        border-radius: 16px !important;
    }

    .desktop-nav {
        display: none !important;
    }

    .services-mega-panel {
        display: none !important;
    }

    .menu-toggle {
        display: inline-flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        width: 44px !important;
        height: 44px !important;
        border: 0 !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.85) !important;
        cursor: pointer !important;
        box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12) !important;
    }

    .menu-toggle span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background: var(--telaran-dark) !important;
        border-radius: 999px !important;
    }

    .logo span {
        font-size: 15px !important;
    }

    .logo-icon {
        font-size: 26px !important;
    }
}

@media (min-width: 901px) {
    .nav-drawer,
    .nav-overlay {
        display: none !important;
    }
}

/* =====================================================
   COMPACT NAVBAR + SMALLER SERVICES MEGA DROPDOWN
===================================================== */

@media (min-width: 901px) {

    /* Slim navbar */
    .site-header {
        padding: 8px 0 !important;
    }

    nav.main-nav {
        width: min(1040px, calc(100% - 52px)) !important;
        min-height: 64px !important;
        padding: 8px 14px !important;
        border-radius: 16px !important;
        gap: 14px !important;
    }

    /* Smaller logo */
    .logo,
    .drawer-logo {
        gap: 8px !important;
    }

    .logo-icon {
        font-size: 24px !important;
    }

    .logo span,
    .drawer-logo span {
        font-size: 16px !important;
        line-height: 1 !important;
    }

    /* Slim menu links */
    .nav-menu a,
    .nav-links a,
    .desktop-nav > li > a {
        padding: 8px 0 !important;
        line-height: 1 !important;
    }

    .desktop-nav {
        gap: 22px !important;
    }

    .desktop-nav > li > a {
        font-size: 14px !important;
    }

    .desktop-nav > li > a::after {
        bottom: -4px !important;
        height: 2px !important;
    }

    /* Smaller Get Quote button */
    .quote-btn {
        min-width: 104px !important;
        min-height: 34px !important;
        padding: 4px 10px 4px 5px !important;
        gap: 7px !important;
        border-width: 2px !important;
        box-shadow: 0 8px 20px rgba(255, 92, 0, 0.28) !important;
    }

    .quote-btn__icon {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        font-size: 11px !important;
    }

    .quote-btn__text {
        font-size: 11px !important;
        font-weight: 800 !important;
    }

    /* Smaller services dropdown */
    .services-mega-panel {
        top: 78px !important;
        width: min(700px, calc(100vw - 80px)) !important;
        max-height: 58vh !important;
        overflow-y: auto !important;
        padding: 22px 26px 24px !important;
        border-radius: 10px !important;
        transform: translateX(-50%) translateY(10px) !important;
        box-shadow:
            0 22px 55px rgba(15, 23, 42, 0.20),
            0 8px 18px rgba(15, 23, 42, 0.08) !important;
    }

    .services-mega-parent:hover .services-mega-panel,
    .services-mega-parent:focus-within .services-mega-panel,
    .services-mega-parent.is-open .services-mega-panel {
        transform: translateX(-50%) translateY(0) !important;
    }

    /* Compact 4-column layout */
    .services-mega-grid {
        grid-template-columns: 1.35fr 1.25fr 0.9fr 1.05fr !important;
        gap: 24px !important;
    }

    .services-mega-col h4 {
        font-size: 14px !important;
        line-height: 1.28 !important;
        margin-bottom: 12px !important;
    }

    .services-mega-col a {
        font-size: 12.5px !important;
        line-height: 1.35 !important;
        margin-bottom: 9px !important;
    }

    .services-mega-col a:hover {
        transform: translateX(3px) !important;
    }
}

/* Medium desktop adjustment */
@media (min-width: 901px) and (max-width: 1100px) {
    nav.main-nav {
        width: min(980px, calc(100% - 32px)) !important;
    }

    .desktop-nav {
        gap: 16px !important;
    }

    .services-mega-panel {
        width: min(660px, calc(100vw - 50px)) !important;
    }

    .services-mega-grid {
        gap: 18px !important;
    }

    .services-mega-col a {
        font-size: 12px !important;
    }
}

/* =====================================================
   SMALL MOBILE PAYMENT MODAL FIX
   Prevent close button/content from hiding under navbar
===================================================== */

@media (max-width: 480px) {
    body.payment-open {
        overflow: hidden !important;
    }

    .payment-overlay {
        position: fixed !important;
        inset: 0 !important;
        z-index: 200000 !important;
        display: block !important;
        padding: 12px !important;
        background: rgba(7, 12, 20, 0.72) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .payment-overlay[hidden] {
        display: none !important;
    }

    .payment-modal {
        width: 100% !important;
        min-height: auto !important;
        max-height: none !important;
        margin: 86px auto 24px !important;
        border-radius: 22px !important;
        overflow: visible !important;
        position: relative !important;
        background: #ffffff !important;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35) !important;
    }

    .close-modal {
        position: sticky !important;
        top: 10px !important;
        margin-left: auto !important;
        margin-right: 10px !important;
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 10 !important;
        background: #ffffff !important;
        color: #111827 !important;
        border: 1px solid rgba(15, 23, 42, 0.08) !important;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18) !important;
        font-size: 26px !important;
        line-height: 1 !important;
    }

    .payment-content {
        display: block !important;
        padding: 0 18px 18px !important;
    }

    .book-preview {
        padding-top: 8px !important;
    }

    .book-preview img {
        display: none !important;
    }

    .book-preview h2 {
        font-size: 1.65rem !important;
        line-height: 1.2 !important;
        margin: 0 0 12px !important;
    }

    .amount-box,
    .secure-box,
    .payment-details,
    .payment-info-card {
        padding: 18px !important;
        border-radius: 18px !important;
        margin-top: 18px !important;
    }

    .amount {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        word-break: break-word !important;
    }

    .payment-methods {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .method {
        min-height: 54px !important;
        padding: 12px 8px !important;
        font-size: 0.88rem !important;
        border-radius: 14px !important;
    }

    .payment-info-card {
        overflow-wrap: anywhere !important;
    }

    .modal-actions {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .cancel-btn,
    .pay-btn {
        width: 100% !important;
        min-height: 52px !important;
    }

    .payment-footer {
        grid-template-columns: 1fr !important;
        padding: 18px !important;
        gap: 10px !important;
        border-radius: 0 0 22px 22px !important;
    }
}

@media (max-width: 360px) {
    .payment-overlay {
        padding: 8px !important;
    }

    .payment-modal {
        margin-top: 76px !important;
        border-radius: 18px !important;
    }

    .payment-content {
        padding: 0 14px 14px !important;
    }

    .book-preview h2 {
        font-size: 1.45rem !important;
    }

    .amount {
        font-size: 1.75rem !important;
    }

    .payment-methods {
        grid-template-columns: 1fr !important;
    }

    .method {
        width: 100% !important;
    }

    .amount-box,
    .secure-box,
    .payment-details,
    .payment-info-card {
        padding: 14px !important;
    }
}

/* =====================================
   FIX HERO CAROUSEL DOTS INTERFERENCE
===================================== */

.hero-inner,
.hero-content {
    position: relative !important;
    z-index: 2 !important;
    padding-bottom: 110px !important;
}

.hero-actions,
.hero-buttons {
    position: absolute !important;
    left: 50% !important;
    bottom: 42px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    width: calc(100% - 24px) !important;
    max-width: 520px !important;
    z-index: 8 !important;
    margin: 0 !important;
}

.hero-btn {
    min-width: 150px !important;
    padding: 12px 18px !important;
}

.hero-dots {
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 6 !important;
}

.whatsapp-float {
    position: fixed !important;
    left: 18px !important;
    bottom: 18px !important;
    z-index: 99999 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #229f50, #128c2f) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 24px rgba(18, 140, 126, 0.35) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.whatsapp-float:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 28px rgba(18, 140, 126, 0.45) !important;
}

.whatsapp-float i {
    font-size: 2.0rem !important;
}

@media (max-width: 768px) {
    .hero-inner,
    .hero-content {
        padding-bottom: 120px !important;
    }

    .hero-actions,
    .hero-buttons {
        bottom: 68px !important;
        gap: 10px !important;
        max-width: 420px !important;
    }

    .hero-btn {
        min-width: 140px !important;
        padding: 11px 16px !important;
        font-size: 0.95rem !important;
    }

    .hero-dots {
        bottom: 12px !important;
    }

    .whatsapp-float {
        left: 12px !important;
        bottom: 12px !important;
        width: 52px !important;
        height: 52px !important;
        font-size: 0.92rem !important;
    }
}

@media (max-width: 480px) {
    .hero-actions,
    .hero-buttons {
        bottom: 34px !important;
        gap: 10px !important;
        width: calc(100% - 18px) !important;
        max-width: 320px !important;
    }

    .hero-btn {
        flex: 1 1 140px !important;
        min-width: 0 !important;
        width: auto !important;
        justify-content: center !important;
    }

    .hero-dots {
        bottom: 10px !important;
    }
}

