/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-color: #081d4d;
    --secondary-color: #0e347f;
    --accent-color: #fdc220;
    --text-color: #ffffff;
    --black-color: #000000;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --swiper-navigation-size: 20px;
}

/* ==================== GENERAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--black-color);
    background-color: var(--text-color);
    overflow-x: hidden !important;
}

/* ==================== TOP HEADER ==================== */
.top-header {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--accent-color);
}

.top-header-link {
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 25px;
}

.top-header-link:hover {
    color: var(--accent-color);
    text-decoration: none;
    background-color: rgba(253, 194, 32, 0.1);
    transform: translateY(-2px);
}

.top-header-link i {
    font-size: 16px;
}

.direction-btn {
    border: 1px solid var(--accent-color);
}

/* ==================== MAIN HEADER ==================== */
.main-header {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 18px 0;
    box-shadow: var(--shadow);
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-header.sticky-top {
    animation: stickyScroll 0.3s ease-out;
}

@keyframes stickyScroll {
    from {
        background-color: transparent;
    }
    to {
        background-color: var(--secondary-color);
    }
}

/* Logo */
.logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: logoFadeIn 0.8s ease-out;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo i {
    color: var(--accent-color);
    font-size: 28px;
}

/* Menu */
.navbar-menu {
    display: flex;
    justify-content: center;
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.menu-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.menu-link:hover::after,
.menu-link.active::after {
    width: 100%;
}

.menu-link:hover {
    color: var(--accent-color);
}

/* Call Button */
.call-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    animation: buttonBounce 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    position: relative;
    overflow: hidden;
}

@keyframes buttonBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.call-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        opacity: 0;
        transform: translate(0, 0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(50px, 50px);
    }
}

.call-btn:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(253, 194, 32, 0.5);
    text-decoration: none;
    transform: translateY(-5px) scale(1.05);
    animation: none;
}

/* Hamburger Menu */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    transition: var(--transition);
    z-index: 2100;
    position: relative;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
    background-color: var(--accent-color);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
    background-color: var(--accent-color);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    /* keep in-flow (but off-canvas) so transforms animate reliably */
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--secondary-color);
    padding: 100px 20px 20px;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 2050;
    transform: translateX(-110%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
}

.mobile-menu.active {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
}

/* Responsive adjustments for menu width on small/medium screens */
@media (max-width: 767.98px) {
    .mobile-menu {
        width: 82%;
        max-width: 320px;
        padding-top: 90px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .mobile-menu {
        width: 320px;
        padding-top: 100px;
    }
}

/* Position hamburger on the right for tablet and mobile */
@media (max-width: 991.98px) {
    .main-header .hamburger {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        margin-right: 0;
    }

    /* Ensure the logo doesn't overlap the centered content on small screens */
    .main-header .logo {
        padding-left: 16px;
    }

    /* Ensure call button doesn't show on small screens (already d-lg-none), but keep alignment clean */
    .main-header .call-btn {
        display: none !important;
    }
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInMenuLeft 0.5s ease-out;
}

@keyframes slideInMenuLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu-list li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-list li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-list li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-list li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu-list li:nth-child(5) { animation-delay: 0.5s; }

.mobile-menu-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    padding: 18px 20px;
    border-left: 3px solid transparent;
}

.mobile-menu-list a:hover {
    color: var(--accent-color);
    background-color: rgba(253, 194, 32, 0.1);
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.mobile-call {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 14px 20px;
    border-radius: 8px;
    display: block;
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb-section {
    background-color: var(--light-bg);
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.breadcrumb {
    margin: 0;
    background-color: transparent;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ==================== PAGE TITLE SECTION ==================== */
.page-title-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    padding: 60px 0;
    text-align: center;
}

@media screen and (max-width: 768px)
{
    .page-title
    {
        margin-bottom: 0px !important;
        padding-bottom: 5px !important;
    }
    .page-title-section
    {
        padding: 30px  0px  60px 0px!important;

    }
}
.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.slide-1 {
    background-image: url('../images/interlogo.avif');
    background: linear-gradient(135deg, rgba(8, 29, 77, 0.7), rgba(14, 52, 127, 0.7)), url('../images/interlogo.avif');
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background-image: url('../images/ott apps.jpg');
    background: linear-gradient(135deg, rgba(14, 52, 127, 0.7), rgba(8, 29, 77, 0.7)), url('../images/ott apps.jpg');
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background-image: url('../images/home-interenet.jpg');
    background: linear-gradient(135deg, rgba(26, 77, 158, 0.7), rgba(14, 52, 127, 0.7)), url('../images/home-interenet.jpg');
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: slideInUp 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slide-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: slideInDown 1s ease-out;
}

.slide-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    animation: slideInUp 1s ease-out 0.2s both;
}

.slide-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    animation: scaleIn 1s ease-out 0.4s both;
}

.slide-features span {
    background-color: rgba(253, 194, 32, 0.2);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
    cursor: default;
}

.slide-features span:hover {
    background-color: rgba(253, 194, 32, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(253, 194, 32, 0.3);
}

.slide-location {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    animation: slideInUp 1s ease-out 0.6s both;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 18px !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}


.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

/* ==================== WELCOME SECTION ==================== */
.welcome-section {
    background-color: var(--text-color);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    color: var(--black-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--black-color);
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-item i {
    color: var(--accent-color);
    font-size: 22px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 15px;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(8, 29, 77, 0.3);
    text-decoration: none;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    font-size: 15px;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-3px);
}

/* ==================== PLANS SECTION ==================== */
.plans-preview {
    background-color: var(--light-bg);
}

.plan-card {
    background-color: var(--text-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(253, 194, 32, 0.1), transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.plan-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(8, 29, 77, 0.3);
    border-color: var(--accent-color);
}

.plan-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-price {
    color: var(--accent-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-duration {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    color: var(--black-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: var(--accent-color);
}

/* ==================== OTT SECTION ==================== */
.ott-section {
    background-color: var(--text-color);
}

.ott-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.ott-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--black-color);
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.ott-item:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.ott-item i {
    color: var(--accent-color);
    font-size: 20px;
}

/* ==================== WHY US SECTION ==================== */
.why-us-section {
    background-color: var(--light-bg);
}

.why-card {
    background-color: var(--text-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(8, 29, 77, 0.2);
    border-color: var(--accent-color);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--accent-color);
}

.why-card h4 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--black-color);
    font-size: 14px;
    line-height: 1.6;
}

.prefer-card {
    background-color: var(--text-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.prefer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(8, 29, 77, 0.2);
}

.prefer-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--primary-color);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.testimonial-card {
    background-color: var(--text-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(8, 29, 77, 0.2);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--black-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-name {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-location {
    color: #999;
    font-size: 14px;
}

/* ==================== PLANS PAGE ==================== */
.plans-content {
    background-color: var(--text-color);
}

.plans-card {
    background-color: var(--text-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.plans-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.plan-badge {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.plan-badge.popular {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.plan-title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-pricing {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.price-item:last-child {
    border-bottom: none;
}

.duration {
    font-size: 14px;
    color: #666;
}

.price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.plan-desc {
    color: var(--black-color);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.plans-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(8, 29, 77, 0.2);
}

.plans-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.all-include-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.include-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.include-item i {
    color: var(--accent-color);
    font-size: 20px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), #ffdb58);
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bg-accent {
    background: linear-gradient(135deg, var(--accent-color), #ffdb58) !important;
}

/* ==================== ABOUT PAGE ==================== */
.about-content {
    background-color: var(--text-color);
}

.mission-card {
    background-color: var(--light-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.mission-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--accent-color);
}

.mission-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--black-color);
    line-height: 1.8;
}

/* ==================== CONTACT PAGE ==================== */
.contact-content {
    background-color: var(--text-color);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--black-color);
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-color);
}

.contact-features {
    border-top: 2px solid #ddd;
    padding-top: 20px;
}

.contact-features p {
    margin-bottom: 10px;
    color: var(--black-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-features i {
    color: var(--accent-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

.map-container iframe {
    border-radius: 15px;
}

/* ==================== POLICY PAGES ==================== */
.policy-content {
    background-color: var(--text-color);
}

.policy-intro-box {
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.policy-title {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-title i {
    color: var(--accent-color);
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    padding: 12px 0 12px 30px;
    color: var(--black-color);
    position: relative;
    line-height: 1.8;
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.terms-item {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-color);
}

.terms-item h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.terms-item p {
    color: var(--black-color);
    line-height: 1.7;
    margin: 0;
}

.security-box {
    background: linear-gradient(135deg, rgba(253, 194, 32, 0.1), rgba(14, 52, 127, 0.1));
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.security-box p {
    color: var(--black-color);
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-box {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
}

.contact-box p {
    color: var(--black-color);
    margin-bottom: 10px;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.last-updated {
    color: #999;
    font-size: 14px;
    margin-top: 30px;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 50px 0 20px;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    padding: 8px 0;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-legal {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-legal li {
    margin: 0;
}

.footer-legal a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-btns {
    position: fixed;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.floating-btns.left-side {
    left: 30px;
}

.floating-btns.right-side {
    right: 30px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    animation: floatBounce 3s ease-in-out infinite;
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.float-btn:hover {
    animation: none;
}

.scroll-top-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), #ffdb58);
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(253, 194, 32, 0.4);
}

.whatsapp-btn-left {
    background-color: #25d366;
    color: var(--text-color);
}

.whatsapp-btn-left:hover {
    background-color: #20ba5c;
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.scroll-top-btn.hidden {
    display: none;
}

/* Right side floating icons - REMOVED */
.floating-right-icons {
    display: none;
}

.float-icon-btn {
    display: none;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .menu-list {
        gap: 20px;
    }

    .menu-link {
        font-size: 14px;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .top-header {
        font-size: 12px;
        padding: 10px;
    }

    .top-header .row {
        flex-direction: column;
        gap: 10px;
    }

    .top-header .col-md-6 {
        width: 100% !important;
        text-align: center !important;
    }

    .top-header-link {
        font-size: 12px;
        padding: 8px 12px;
        justify-content: center;
    }

    .direction-btn {
        display: inline-flex;
        width: fit-content;
        margin: 0 auto;
    }

    .top-header-link i {
        font-size: 14px;
    }

    .logo h2 {
        font-size: 18px;
    }

    .menu-list {
        gap: 15px;
    }

    .hero-section {
        height: 450px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .slide-features {
        gap: 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .page-title {
        font-size: 28px;
        padding: 40px 0;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .why-card,
    .mission-card,
    .prefer-card {
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .plans-card.featured {
        transform: scale(1);
    }

    .plans-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .map-container {
        height: 350px;
    }

    .floating-btns,
    .floating-right-icons {
        bottom: 20px;
        right: auto;
    }

    .floating-btns {
        left: 20px;
    }

    .floating-right-icons {
        right: 20px;
    }

    .float-btn,
    .float-icon-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .top-header {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    .top-header .row {
        flex-direction: column;
        text-align: center !important;
    }

    .logo h2 {
        font-size: 16px;
    }

    .hamburger {
        gap: 5px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }

    .hero-section {
        height: 350px;
    }

    .slide-title {
        font-size: 22px;
    }

    .slide-subtitle {
        font-size: 14px;
    }

    .slide-features {
        gap: 8px;
    }

    .slide-features span {
        font-size: 12px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 20px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 13px;
    }

    .policy-title {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons a {
        width: 100%;
    }

    .features-list {
        gap: 12px;
    }

    .feature-item {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .contact-features p {
        font-size: 14px;
    }

    .footer {
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        margin-top: 15px;
    }

    .float-btn,
    .float-icon-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .menu-list {
        gap: 10px;
    }

    .menu-link {
        font-size: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(253, 194, 32, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(253, 194, 32, 0.6);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.float-icon-btn {
    animation: pulse 2s ease-in-out infinite;
}

.float-icon-btn:hover {
    animation: none;
}

/* ==================== MAP ADDRESS BOX ==================== */
.map-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.map-address-box {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    padding: 15px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--accent-color);
    z-index: 10;
    max-width: 280px;
}

.map-address-box h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 6px;
}

.map-address-box p {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .map-address-box {
        max-width: 240px;
        padding: 12px 15px;
        top: 10px;
        left: 10px;
    }
    
    .map-address-box h4 {
        font-size: 13px;
    }
    
    .map-address-box p {
        font-size: 11px;
    }
}

/* ==================== CUSTOM SCROLLBAR (SITE-WIDE) ==================== */
/* Uses theme variables: --accent-color, --primary-color, --secondary-color */
html, body {
    /* Firefox */
    scrollbar-width: thin;
    /* thumb color, track color */
    scrollbar-color: var(--accent-color) var(--primary-color);
}

/* WebKit browsers */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    border-radius: 10px;
    box-shadow: inset 0 0 0 3px rgba(255,255,255,0.02);
}

::-webkit-scrollbar-thumb:hover {
    filter: brightness(0.95);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Small tweak for very small devices */
@media (max-width: 576px) {
    ::-webkit-scrollbar { width: 10px; }
}
