/* =====================================================
   Easy Choice Streaming - Main Stylesheet
   Brand: Deep Navy (#152559) + Cyan (#74DDE3)
   Typography: Karla (Bold for headings, Regular for body)
   ===================================================== */

/* ---- CSS Custom Properties ---- */
:root {
    /* Brand Colors � Updated Palette */
    --navy: #152559;
    --navy-dark: #0E1A3D;
    --navy-light: #1E3570;
    --cyan: #74DDE3;
    --cyan-light: #A0EBF0;
    --cyan-dark: #4FC8CF;
    --steel-blue: #4C8EB1;
    --vibrant-blue: #1A6CAF;
    --charcoal: #2D2D2D;
    
    /* Gradients (left-to-right or top-to-bottom ONLY) */
    --gradient-main: linear-gradient(to right, #152559, #74DDE3);
    --gradient-secondary: linear-gradient(to right, #152559, #4C8EB1);
    --gradient-accent: linear-gradient(to right, #74DDE3, #1A6CAF);
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Functional */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Typography */
    --font-heading: 'Karla', sans-serif;
    --font-body: 'Karla', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--cyan);
    color: var(--white);
    border-radius: 50px;
    box-shadow:
        0 0 15px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 0, 0, 0.3),
        0 4px 15px rgba(116, 221, 227, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(116, 221, 227, 0.5);
    background: var(--cyan-light);
}



.btn-secondary {
    background: var(--navy);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 2.5px solid var(--cyan);
    box-shadow: 0 0 15px rgba(116, 221, 227, 0.3);
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--white);
    box-shadow: 0 0 25px rgba(116, 221, 227, 0.5);
}


.btn-cta {
    background: var(--cyan);
    color: var(--white);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background: var(--cyan-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(116, 221, 227, 0.4);
}



.btn-lg {
    padding: 20px 50px;
    font-size: 1.3rem;
}

/* Hero Buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: var(--cyan);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(116, 221, 227, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(116, 221, 227, 0.6);
    background: var(--white);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: transparent;
    color: var(--cyan);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--cyan);
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: var(--cyan);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(116, 221, 227, 0.4);
}

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid #152559;
}


.site-header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid #152559;
}



.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.logo-link {
    flex-shrink: 0;
}

.logo {
    height: 75px;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
}


.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list > li > a {
    padding: 10px 18px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}


.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--cyan);
    background: rgba(116, 221, 227, 0.1);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown .dropdown-trigger i {
    font-size: 0.7em;
    margin-left: 4px;
    transition: var(--transition-fast);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--gray-700);
    font-size: 1.05rem;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--gray-100);
    color: var(--vibrant-blue);
}

.dropdown-menu li a i {
    width: 20px;
    color: var(--cyan);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.header-cta {
    flex-shrink: 0;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    margin-top: 100px;
    overflow: hidden;
    width: 100%;
    padding: 0;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 20px;
    background: none;
    border: none;
}

.hero-title {
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-shadow:
        0 0 10px rgba(0, 0, 0, 1),  /* tight dark halo */
        0 0 20px rgba(0, 0, 0, 1),  /* medium dark spread */
        0 0 40px rgba(0, 0, 0, 0.9),   /* wide dark glow */
        0 0 80px rgba(0, 0, 0, 0.8),  /* extra wide navy glow */
        0 0 120px rgba(0, 0, 0, 0.6),  /* extra wide navy glow */
        0 4px 15px rgba(0, 0, 0, 1);  /* drop shadow below text */
}


.hero-title span {
    color: var(--cyan);
}

.hero-subtitle {
    color: var(--white);
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    text-shadow:
        0 0 8px rgba(0, 0, 0, 1),
        0 0 20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(0, 0, 0, 0.6),
        0 4px 10px rgba(0, 0, 0, 1);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}




/* ---- Hero Service Boxes (Overlapping) ---- */
.hero-services {
    position: relative;
    z-index: 3;
    margin-top: -80px;
    padding-bottom: 60px;
}

.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-service-box {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: left;
    text-decoration: none;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: block;
}

.hero-service-box:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.hero-service-icon i {
    font-size: 2.2rem;
    color: var(--cyan);
}

.hero-service-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.hero-service-box p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-services {
        margin-top: -60px;
    }
}

@media (max-width: 768px) {
    .hero-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .hero-services {
        margin-top: -50px;
        padding-bottom: 40px;
    }
    
    .hero-service-box {
        padding: 20px 18px;
    }
    
    .hero-service-box h3 {
        font-size: 1.2rem;
    }
    
    .pkg-section .section-header h2 {
        white-space: normal;
        font-size: 1.8rem;
    }

}








/* ---- Section Common ---- */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.section-label {
    display: inline-block;
    color: var(--cyan);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* ---- Service Cards ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-bg {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(21, 37, 89, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.service-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--gray-300);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.service-card .btn-outline {
    width: fit-content;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-color: var(--cyan);
    color: var(--cyan);
}

.service-card .btn-outline:hover {
    background: var(--cyan);
    color: var(--white);
}

/* ---- Features Section ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(116, 221, 227, 0.1);
    border-radius: 50%;
    color: var(--cyan);
    font-size: 1.5rem;
}

.feature-item h4 {
    margin-bottom: 10px;
    color: var(--navy);
}

.feature-item p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ---- Testimonials ---- */
.testimonials-section {
    background: var(--off-white);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--cyan);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: var(--navy);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray-400);
}


/* ---- FAQ Section ---- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cyan);
    color: var(--navy);
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--cyan);
    box-shadow: 0 2px 10px rgba(116, 221, 227, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--white);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--vibrant-blue);
}

.faq-question i {
    color: var(--cyan);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--error);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

/* ---- Contact Form ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: var(--navy);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-info-content {
    flex: 1;
}

.contact-card-brand {
    flex-shrink: 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(116, 221, 227, 0.15);
    border-radius: 50%;
    color: var(--cyan);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item .label {
    font-weight: 700;
    color: var(--cyan);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.contact-info-item .value {
    color: var(--gray-300);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
    color: var(--charcoal);
}

.form-control:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(116, 221, 227, 0.15);
}

.form-control::placeholder {
    color: var(--gray-400);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ---- Service Landing Pages ---- */
.service-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 100px;
    overflow: hidden;
}


.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(21, 37, 89, 0.8), rgba(21, 37, 89, 0.6));
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 30px;
}

.service-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.service-hero p {
    color: var(--gray-300);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

/* ---- Page Banner ---- */
.page-banner {
    background: var(--navy);
    padding: 145px 0 60px;
    text-align: center;
}


.page-banner h1 {
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-banner p {
    color: var(--steel-blue);
    font-size: 1.1rem;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--navy);
    padding: 60px 0 0;
    color: var(--gray-400);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--gray-300);
    margin-bottom: 8px;
}

.footer-legal {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--cyan);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact ul li i {
    color: var(--cyan);
    width: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(116, 221, 227, 0.1);
    border-radius: 50%;
    color: var(--cyan);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--cyan);
    color: var(--navy);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--cyan);
}

/* ---- Quote Form Section ---- */
.quote-form-section {
    background: var(--navy);
    padding: 80px 0;
}

.quote-form-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

.quote-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quote-form .form-group.full-width {
    grid-column: 1 / -1;
}

.quote-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.quote-form .form-control:focus {
    border-color: var(--cyan);
    background: rgba(116, 221, 227, 0.05);
}

.quote-form .form-control::placeholder {
    color: var(--gray-500);
}

/* ---- Alerts ---- */
.alert {
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}



/* =====================================================
   Packages & Pricing � Matches Brand Design Screenshot
   ===================================================== */

.pkg-section {
    background: var(--white);
    padding: 60px 0 80px;
}

.pkg-section .section-header {
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
    overflow: visible;
}

.pkg-section .section-header h2 {
    font-family: 'Karla', sans-serif;
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    color: #000000;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}

.pkg-section .section-header h2 em {
    font-style: italic;
    font-size: inherit;
    font-weight: inherit;
}


/* ---- Package Grid ---- */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: end;
    max-width: 1100px;
    margin: 0 auto 70px;
}

/* ---- Package Card Base ---- */
.pkg-card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* ---- Card Headers (Colored Gradient Area) ---- */
.pkg-header {
    padding: 30px 30px 25px;
    position: relative;
}

.pkg-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.pkg-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

/* Basic Header — Blue gradient top to bottom */
.pkg-header-basic {
    background: linear-gradient(to bottom, #0056A6, #4DA8E0);
}

.pkg-header-basic .pkg-name {
    color: #ffffff;
    text-align: center;
}

.pkg-header-basic .pkg-price {
    color: #ffffff;
    text-align: center;
}

/* Standard Header — Light blue gradient top to bottom */
.pkg-header-standard {
    background: linear-gradient(to bottom, #0078C8, #8ED6F0);
}

.pkg-header-standard .pkg-name {
    color: #ffffff;
    text-align: center;
}

.pkg-header-standard .pkg-price {
    color: #ffffff;
    text-align: center;
}

/* Premium Header — Dark navy (same as body) */
.pkg-header-premium {
    background: #002F5E;
}

.pkg-header-premium .pkg-name {
    color: #ffffff;
    text-align: center;
}

.pkg-header-premium .pkg-price {
    color: #ffffff;
    text-align: center;
}

/* ---- Card Bodies ---- */
.pkg-body {
    padding: 25px 30px 15px;
    flex: 1;
}

/* Basic + Standard body � white */
.pkg-basic .pkg-body,
.pkg-standard .pkg-body {
    background: var(--white);
}

/* Premium body - white */ 
.pkg-premium .pkg-body {
    background: #002F5E;
}


/* ---- Feature Lists ---- */
.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

.pkg-features li i {
    width: 22px;
    text-align: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Basic feature colors */
.pkg-basic .pkg-features li {
    color: var(--charcoal);
}

.pkg-basic .pkg-features li i {
    color: var(--steel-blue);
}

/* Standard feature colors */
.pkg-standard .pkg-features li {
    color: var(--charcoal);
}

.pkg-standard .pkg-features li i {
    color: var(--cyan);
}

.pkg-premium .pkg-features li {
    color: var(--charcoal);
}

.pkg-premium .pkg-features li i {
    color: var(--navy);
}


/* ---- Card Footers ---- */
.pkg-footer {
    padding: 15px 30px 30px;
}

.pkg-basic .pkg-footer,
.pkg-standard .pkg-footer {
    background: var(--white);
}

.pkg-premium .pkg-footer {
    background: var(--white);
}

/* ---- Buttons ---- */
.pkg-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #6FE3E3;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #6FE3E3;
}

.pkg-btn:hover {
    background: #002F5E;
    color: #ffffff;
    border-color: #6FE3E3;
    transform: translateY(-2px);
}

/* Premium button � lighter style on dark background */
.pkg-btn-premium {
    background: #6FE3E3;
    color: #ffffff;
    border: 2px solid #6FE3E3;
}

.pkg-btn-premium:hover {
    background: transparent;
    color: #6FE3E3;
    border-color: #6FE3E3;
}


/* ---- Standard Card � Elevated + Badge ---- */
.pkg-standard {
    transform: scale(1.06);
    z-index: 2;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.pkg-standard:hover {
    transform: scale(1.06) translateY(-5px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2);
}

/* Badge Area (Stars + Popular Badge) */
.pkg-badge-area {
    background: var(--white);
    text-align: center;
    padding: 15px 20px 10px;
}

.pkg-stars {
    color: #002F5E;
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pkg-stars i {
    margin: 0 2px;
}

.pkg-stars i:nth-child(2) {
    font-size: 2.2rem;
}



.pkg-popular-badge {
    display: inline-block;
    background: #002F5E;
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}


/* ---- Basic Card — Border ---- */
.pkg-basic {
    border: 1px solid #D3D3D3;
}


/* ---- Premium Card � Full dark ---- */
.pkg-premium {
    border: none;
}

/* ---- Add-On Services ---- */
.addon-section {
    max-width: 750px;
    margin: 0 auto;
}

.addon-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 25px;
}

.addon-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.addon-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.addon-table tr:last-child {
    border-bottom: none;
}

.addon-table td {
    padding: 16px 20px;
    font-size: 1rem;
    color: var(--charcoal);
}

.addon-table td:first-child {
    font-weight: 500;
}

.addon-table td:first-child i {
    color: var(--steel-blue);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.addon-table .addon-price {
    text-align: right;
    font-weight: 700;
    color: var(--navy);
}


/* ---- Responsive Design ---- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .pkg-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 50px;
        gap: 30px;
    }

    .pkg-standard {
        transform: none;
        order: -1;
    }

    .pkg-standard:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-list > li > a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0;
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        color: var(--gray-300);
        padding: 10px 30px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        padding: 30px 15px;
        width: 90%;
    }

    .hero-title {
        white-space: normal;
        font-size: 1.8rem;
    }

    .hero-subtitle {
        white-space: normal;
        font-size: 1rem;
    }
    
    .pkg-section .section-header h2 {
        white-space: normal;
        font-size: 1.8rem;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        white-space: normal;
    }

    .hero-subtitle {
        white-space: normal;
        font-size: 0.9rem;
    }

    .section {
        padding: 50px 0;
    }

    .pkg-header {
        padding: 25px 20px 20px;
    }

    .pkg-body {
        padding: 20px 20px 10px;
    }

    .pkg-section .section-header h2 {
        white-space: normal;
        font-size: 1.5rem;
    }

    .pkg-footer {
        padding: 10px 20px 25px;
    }

    .pkg-price {
        font-size: 2.8rem;
    }

    .addon-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .pkg-addon-table {
        max-width: 100%;
    }

    .pkg-addon-table td {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .pkg-addon-title {
        font-size: 1.5rem;
    }
}



/* =====================================================
   PACKAGES PAGE � NEW DESIGN
   ===================================================== */

.pkg-section {
    background: var(--white);
    padding: 60px 0 80px;
}

.pkg-section .section-header {
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
    overflow: visible;
}

.pkg-section .section-header h2 {
    font-family: 'Karla', sans-serif;
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    color: #000000;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}

.pkg-section .section-header h2 em {
    font-style: italic;
    font-size: inherit;
    font-weight: inherit;
}


/* ---- Package Grid ---- */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: end;
    max-width: 1100px;
    margin: 0 auto 70px;
}

/* ---- Package Card Base ---- */
.pkg-card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* ---- Card Headers ---- */
.pkg-header {
    padding: 30px 30px 25px;
    text-align: center;
}

.pkg-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pkg-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

/* Basic Header — Blue gradient top to bottom */
.pkg-header-basic {
    background: linear-gradient(to bottom, #0056A6, #4DA8E0);
}

.pkg-header-basic .pkg-name {
    color: #ffffff;
    text-align: center;
}

.pkg-header-basic .pkg-price {
    color: #ffffff;
    text-align: center;
}


/* Standard Header — Light blue gradient top to bottom */
.pkg-header-standard {
    background: linear-gradient(to bottom, #0078C8, #8ED6F0);
}

.pkg-header-standard .pkg-name {
    color: #ffffff;
    text-align: center;
}

.pkg-header-standard .pkg-price {
    color: #ffffff;
    text-align: center;
}

/* Premium Header — Dark navy (same as body) */
.pkg-header-premium {
    background: #002F5E;
}

.pkg-header-premium .pkg-name {
    color: #ffffff;
    text-align: center;
}

.pkg-header-premium .pkg-price {
    color: #ffffff;
    text-align: center;
}

/* ---- Card Bodies ---- */
.pkg-body {
    padding: 25px 30px 15px;
    flex: 1;
}

.pkg-basic .pkg-body,
.pkg-standard .pkg-body {
    background: #ffffff;
}

.pkg-premium .pkg-body {
    background: #ffffff;
}

/* ---- Feature Lists ---- */
.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

.pkg-features li i {
    width: 22px;
    text-align: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.pkg-basic .pkg-features li {
    color: #333333;
}

.pkg-basic .pkg-features li i {
    color: #4A90A4;
}

.pkg-standard .pkg-features li {
    color: #333333;
}

.pkg-standard .pkg-features li i {
    color: #74DDE3;
}

.pkg-premium .pkg-features li {
    color: #333333;
}

.pkg-premium .pkg-features li i {
    color: #6FE3E3;
}



/* ---- Card Footers ---- */
.pkg-footer {
    padding: 15px 30px 30px;
}

.pkg-basic .pkg-footer,
.pkg-standard .pkg-footer {
    background: #ffffff;
}

.pkg-premium .pkg-footer {
    background: #ffffff;
}

/* ---- Buttons ---- */
.pkg-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #6FE3E3;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #6FE3E3;
}

.pkg-btn:hover {
    background: #002F5E;
    color: #ffffff;
    border-color: #6FE3E3;
    transform: translateY(-2px);
}

.pkg-btn-premium {
    background: #6FE3E3;
    color: #ffffff;
    border: 2px solid #6FE3E3;
}

.pkg-btn-premium:hover {
    background: transparent;
    color: #6FE3E3;
    border-color: #6FE3E3;
}


/* ---- Standard Card � Elevated ---- */
.pkg-standard {
    transform: scale(1.06);
    z-index: 2;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.pkg-standard:hover {
    transform: scale(1.06) translateY(-5px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2);
}

/* Badge Area */
.pkg-badge-area {
    background: #ffffff;
    text-align: center;
    padding: 15px 20px 10px;
}

.pkg-stars {
    color: #002F5E;
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pkg-stars i {
    margin: 0 2px;
}

.pkg-stars i:nth-child(2) {
    font-size: 2.2rem;
}


.pkg-popular-badge {
    display: inline-block;
    background: #002F5E;
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}


/* ---- Basic Card � Left border ---- */
.pkg-basic {
    border-left: 5px solid #4A90A4;
}

/* ---- Add-On Services — Centered Bordered Table ---- */
.pkg-addon-section {
    width: 100%;
    margin-top: 60px;
    padding: 0 20px;
}

.pkg-addon-title {
    font-family: 'Karla', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
}

.pkg-addon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.pkg-addon-table {
    display: table !important;
    width: 700px;
    max-width: 100%;
    border-collapse: collapse;
    border: 1px solid #D3D3D3;
    font-family: 'Karla', sans-serif;
    table-layout: fixed;
}

.pkg-addon-table tbody {
    display: table-row-group !important;
}

.pkg-addon-table tr {
    display: table-row !important;
    border-bottom: 1px solid #D3D3D3;
}

.pkg-addon-table tr:last-child {
    border-bottom: 1px solid #D3D3D3;
}

.pkg-addon-table td {
    display: table-cell !important;
    padding: 16px 25px;
    font-size: 1.1rem;
    color: #000000;
    font-weight: 600;
    vertical-align: middle;
}

.pkg-addon-table td.pkg-addon-service {
    width: 60%;
    text-align: left;
    border-right: 1px solid #D3D3D3;
}

.pkg-addon-table td.pkg-addon-service i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    color: #000000;
}

.pkg-addon-table td.pkg-addon-price {
    width: 40%;
    text-align: right;
    font-weight: 700;
    color: #000000;
}




/* ---- Package Page Responsive ---- */
@media (max-width: 900px) {
    .pkg-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 50px;
        gap: 30px;
    }

    .pkg-standard {
        transform: none;
        order: -1;
    }

    .pkg-standard:hover {
        transform: translateY(-5px);
    }

    .pkg-section .section-header h2 {
        white-space: normal;
        font-size: 1.8rem;
    }

}

@media (max-width: 480px) {
    .hero-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-services {
        margin-top: -40px;
    }
    
    .pkg-header {
        padding: 25px 20px 20px;
    }

    .pkg-section .section-header h2 {
        white-space: normal;
        font-size: 1.5rem;
    }

    .pkg-body {
        padding: 20px 20px 10px;
    }

    .pkg-footer {
        padding: 10px 20px 25px;
    }

    .pkg-price {
        font-size: 2.8rem;
    }

    .pkg-addon-table {
        max-width: 100%;
    }

    .pkg-addon-table td {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .pkg-addon-title {
        font-size: 1.5rem;
    }

}

