/* ========== CSS Reset & Variables ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1e3a5f;
    --teal: #40e0d0;
    --light-teal: #7fffd4;
    --orange: #ff8c42;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
}



body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;

    /* NEW GLOBAL BACKGROUND */
    background: linear-gradient(
        180deg,
        #f4fffc 0%,
        #e8fff9 40%,
        #d6f7f0 100%
    );
}

/* ========== Scroll Progress Bar ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--teal));
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ========== Header & Navigation ========== */
header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    cursor: pointer;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== Hero Section ========== */
.Specialhero {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.55), rgba(64, 224, 208, 0.45)), 
                url('../images/hero.jpg') center/cover;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 2rem 5%;
}

.Specialhero h2 {
    color: var(--orange);
}
 

.Specialhero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.55), rgba(64, 224, 208, 0.45)), 
                url('../images/hero.jpg') center/cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 2rem 5%;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    border-radius: 22px;
    backdrop-filter: blur(4px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .highlight {
    color: var(--orange);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Buttons ========== */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #ff7028;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 140, 66, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-secondary:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

/* ========== Section Styles ========== */
section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== Services Section ========== */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(64, 224, 208, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

/* ========== How It Works Section ========== */
.how-it-works {
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* ========== Pricing Section ========== */
.pricing {
    background: var(--light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: scale(1.05);
    border-color: var(--teal);
}

.pricing-card.featured {
    border-color: var(--orange);
    transform: scale(1.05);
}

.pricing-card.featured1 {
    border-color: var(--navy);
    transform: scale(1.05);
}

.pricing-card.featured3 {
    border-color: var(--teal);
    transform: scale(1.05);
}

.plan-name {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: bold;
}

.plan-price {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

.plan-features li i {
    color: var(--teal);
    margin-right: 0.5rem;
}

/* ========== Add-on Services ========== */
.addon-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.addon-card {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    text-align: center;
    transition: all 0.3s;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(64, 224, 208, 0.4);
}

.addon-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.addon-price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
    color: var(--orange);
}

/* ========== About Preview Section ========== */
.about-preview {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ========== Final CTA Section ========== */
.final-cta {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    text-align: center;
    padding: 5rem 5%;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* ========== Footer ========== */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-section h3 {
    color: var(--teal);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-links li {
        padding: 1rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Sections */
    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Scroll Reveal */
.service-card,
.pricing-card,
.step,
.addon-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

.services,
.pricing {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    margin: 3rem auto;
}

.how-it-works,
.about-preview {
    background: transparent;
}

.about-preview h3 {
    font-size: 1.6rem;
    color: var(--navy);
    line-height: 1.4;
}

.success-metrics {
    background: var(--navy);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.metric-item h2 {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 5px;
}
.metric-item p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ========== Additional Styles for New Pages ========== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    text-align: center;
    padding: 5rem 5% 4rem;
    margin-top: 0;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.mission-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.mission-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.our-approach {
    margin: 5rem 0;
}

.our-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.approach-text h3 {
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.approach-points {
    margin-top: 2rem;
}

.point {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.point i {
    font-size: 2rem;
    color: var(--teal);
    flex-shrink: 0;
}

.point h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.approach-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.why-we-started {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
}

.why-we-started h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.our-values {
    margin: 5rem 0;
}

.our-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(64, 224, 208, 0.2);
}

.value-card i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.commitment {
    margin: 5rem 0;
}

.commitment h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.commitment-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.commitment-item {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--teal);
}

.commitment-item h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.commitment-item i {
    color: var(--teal);
    margin-right: 0.5rem;
}

/* Services Page Styles */
.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-icon {
    font-size: 3.5rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.service-detail h2 {
    color: var(--navy);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-lead {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.service-detail h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-features i {
    color: var(--teal);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-price-tag {
    background: linear-gradient(135deg, var(--orange), var(--teal));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.price-label {
    font-size: 1rem;
    opacity: 0.9;
}

.service-note {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.service-note i {
    color: var(--teal);
    margin-right: 0.5rem;
}

.service-bundle {
    background: var(--light-gray);
    padding: 4rem 5%;
}

.service-bundle h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

.bundle-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bundle-header {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.bundle-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bundle-header h3 {
    font-size: 2rem;
}

.bundle-content {
    padding: 2rem;
    text-align: center;
}

.bundle-pricing {
    margin: 2rem 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.3rem;
    margin-right: 1rem;
}

.bundle-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--teal);
}

.savings {
    display: block;
    color: var(--orange);
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Pricing Page Styles */
.pricing-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
}
.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.pricing-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* row & column spacing */
}


.pricing-card-full {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.4);
    border: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.pricing-card-full:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
}

.pricing-card-full.featured-full {
    border-color: var(--orange);
    transform: scale(1.02);
}

.pricing-card-full.featured-full1 {
    border-color: var(--navy);
    transform: scale(1.02);
}

.pricing-card-full.featured-full3 {
    border-color: var(--teal);
    transform: scale(1.02);
}

.plan-badge {
    background: var(--teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.plan-badge.popular {
    background: var(--orange);
}

.plan-header {
    padding: 2rem;
    text-align: center;
    background: var(--light-gray);
}

.plan-header h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: var(--dark-gray);
}

.plan-price-full {
    padding: 2rem;
    text-align: center;
    background: var(--white);
}

.contact-pricing {
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: bold;
}

.plan-details {
    padding: 0 2rem 2rem;
}

.plan-details h4 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.plan-features-full {
    list-style: none;
}

.plan-features-full li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.plan-features-full i {
    color: var(--teal);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.plan-features-full strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.plan-features-full p {
    font-size: 0.9rem;
    color: #666;
}

.btn-block1 {
    width: 50%;
    margin: 1.5rem 0;
    justify-content: center;
}

.btn-block {
    width: 50%;
    margin: 0 auto;
    display: block;
    text-align: center;
}

/* Add-on Services Full */
.addon-services-full {
    background: var(--light-gray);
    padding: 5rem 5%;
}

.addon-services-full h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.addon-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.addon-card-full {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.addon-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.addon-card-full.bundle-highlight {
    border: 3px solid var(--orange);
}

.bundle-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.addon-icon {
    font-size: 3.5rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.addon-card-full h3 {
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.addon-includes {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.addon-includes li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.addon-includes i {
    color: var(--teal);
    flex-shrink: 0;
}

.addon-price-display {
    margin: 2rem 0;
}

.addon-price-large {
    font-size: 3rem;
    font-weight: bold;
    color: var(--teal);
    display: block;
}

.addon-price-large.highlight {
    color: var(--orange);
}

.addon-price-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.addon-label {
    display: block;
    color: #666;
    margin-top: 0.5rem;
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: bold;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table tbody tr:hover {
    background: var(--light-gray);
}

.comparison-table i.fa-check {
    color: var(--teal);
    font-size: 1.3rem;
}

.comparison-table i.fa-times {
    color: #ccc;
    font-size: 1.3rem;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

/* Pricing FAQ */
.pricing-faq {
    background: var(--light-gray);
    padding: 5rem 5%;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item i {
    color: var(--teal);
    margin-right: 0.5rem;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 3rem 5%;
    background: var(--light-gray);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.3);
}

.contact-card i {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--teal);
}

/* Registration Form Styles */
.registration-section {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    animation: slideDown 0.5s ease;
}

.success-message i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #155724;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: #155724;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styles */
.registration-form {
    margin-top: 2rem;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-section-title i {
    color: var(--teal);
}

.form-section a {
    text-decoration: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.required {
    color: #ff0000;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

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

.form-group small {
    display: block;
    color: #666;
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.upload-note {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
}

.upload-note p {
    margin-bottom: 0.8rem;
}

.upload-note a {
    color: var(--teal);
    font-weight: bold;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.btn-large i {
    margin-right: 0.5rem;
}

/* Why Choose Contact Section */
.why-choose-contact {
    background: var(--light-gray);
    padding: 5rem 5%;
}

.why-choose-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-item i {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.why-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Responsive Adjustments for New Pages */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2rem;
    }

    .page-header-content p {
        font-size: 1.1rem;
    }

    .approach-content,
    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

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

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }

    .pricing-grid-full {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 1.8rem;
    }

    .form-section-title {
        font-size: 1.4rem;
    }

    .success-message {
        padding: 2rem 1rem;
    }

    .success-message i {
        font-size: 3rem;
    }

    .success-message h3 {
        font-size: 1.5rem;
    }
}


  .a {
      text-decoration: none;
  }


.plan-price {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
}


/* Smooth scroll for the whole page */
html {
    scroll-behavior: smooth;
}

/* Highlight section when jumped to */
.service-detail:target {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(30, 58, 95, 0.05));
    border-radius: 20px;
    padding: 2rem;
    animation: highlightSection 1.5s ease;
}

@keyframes highlightSection {
    0% {
        box-shadow: 0 0 0 0 rgba(64, 224, 208, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(64, 224, 208, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(64, 224, 208, 0);
    }
}

/* Offset for sticky header */
.service-detail {
    scroll-margin-top: 100px; /* Adjust based on your header height */
}