/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 250px;
    height: auto;
    animation: logoScale 1.5s ease-in-out infinite;
}

@keyframes logoScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Selection Color */
::selection {
    background-color: var(--primary-green);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-green);
    color: white;
}

/* Highlight Colors */
.highlight-green {
    color: var(--primary-green);
}

.highlight-purple {
    color: var(--primary-purple);
}

.highlight-orange {
    color: var(--primary-orange);
}

:root {
    --primary-green: #00bf62;
    --primary-purple: #5c15eb;
    --primary-orange: #ff914b;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-light-green: #e6f9f0;
    --bg-light-purple: #f0e6ff;
    --bg-light-orange: #fff4e6;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-white);
    font-weight: 400;
    overflow-x: hidden;
}

/* Smooth Transitions */
section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-green);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

/* Hide Why Choose Us on desktop navbar (md to xl screens) */
@media (min-width: 769px) and (max-width: 1200px) {
    .nav-menu li:last-child {
        display: none;
    }
    .nav-menu {
        gap: 0.2rem;
        left: 48%;
    }
    .nav-call {
        padding: 0.725rem;
    }
    .nav-call .call-label {
        font-size: 0.8rem;
    }
    .nav-call .call-number {
        font-size: 0.85rem;
    }
}

.nav-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-green);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.nav-call .call-icon {
    display: none;
}

.call-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.call-number {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.call-number:hover {
    transform: scale(1.05);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover span {
    background: var(--primary-green);
}

/* Mobile Sidebar */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s;
    padding: 2rem 1.5rem;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: all 0.3s;
}

.sidebar-close:hover {
    color: var(--primary-green);
    transform: rotate(90deg);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 3rem 0 0 0;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: block;
    padding: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.sidebar-menu a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateX(5px);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 191, 98, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 191, 98, 0.5);
    background: #00a854;
}

.btn-cta {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(255, 145, 75, 0.3);
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 145, 75, 0.5);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
}

/* Featured Button css */
.btn-featured {
    color: white;
    border-color: #cacaca;
}
.btn-featured:hover {
    border-color: var(--primary-color);
    color: var(--text-dark);
    
}

/* Hero Section */
.hero {
    background:
                url('../images/funnel_bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: white;
    padding-bottom: 4rem ;
    padding-top: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    text-transform: capitalize;
}

.price-hero {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    text-shadow: 3px 5px 10px rgba(255, 145, 75, 0.5);
    letter-spacing: -2px;
    display: inline-block;
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0px 0px 0px rgba(255, 145, 75, 0.5);
    }
    50% {
        text-shadow: 0px 0px 6px rgba(255, 145, 75, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat strong {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.stat span {
    opacity: 0.9;
    font-size: 0.875rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.8;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: var(--bg-white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s;
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s;
}

.reason-card:hover .reason-icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--primary-orange);
}

.reason-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
}

.reason-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.reason-card strong {
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Compact Pricing Section */
.pricing-compact {
    padding: 6rem 0;
    background: var(--bg-light-green);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.pricing-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.pricing-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 191, 98, 0.05);
    z-index: 1;
}

.pricing-image-wrapper img {
    width: 100%;
    object-fit: fill;
    display: block;
}

.pricing-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.benefit-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-green);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 191, 98, 0.3);
    transition: all 0.3s;
}

.benefit-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 191, 98, 0.4);
}

.benefit-badge i {
    font-size: 1.1rem;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-tag {
    background: var(--primary-orange);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(191, 105, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-orange);
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30%, -30%); }
}

.price-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount .currency {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    opacity: 0.9;
}

.price-amount .amount {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        color: white;
    opacity: 0.9;
}

.price-amount .period {
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.9;
        color: white;
    opacity: 0.9;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-pricing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 191, 98, 0.3);
}

.btn-pricing-cta:hover {
    background: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 145, 75, 0.5);
}

.btn-pricing-cta i {
    transition: transform 0.3s;
}

.btn-pricing-cta:hover i {
    transform: translateX(8px);
}

.features-included {
    margin-top: 3rem;
}

.features-included h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.features-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.features-checklist li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s;
}

.features-checklist li:hover {
    background: rgba(0, 191, 98, 0.15);
    transform: translateX(5px);
}

.features-checklist i {
    font-size: 1.25rem;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.features-checklist span {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-checklist strong {
    color: var(--text-dark);
    font-weight: 700;
}

.pricing-guarantee {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(92, 21, 235, 0.1);
    border-radius: 12px;
    border: 2px dashed var(--primary-purple);
}

.pricing-guarantee i {
    font-size: 2rem;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.pricing-guarantee strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.pricing-guarantee p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.feature-item strong {
    font-size: 1.125rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2.5rem;
    background-color: var(--bg-white);
    border: 3px solid var(--primary-color);
    border-radius: 1rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.pricing-card:nth-child(1) {
    border-color: #ff6b35;
    background: var(--bg-white);
}

.pricing-card:nth-child(2) {
    border-color: #ffc107;
    background: var(--bg-white);
}

.pricing-card:nth-child(3) {
    border-color: #00bcd4;
    background: var(--bg-white);
}

.pricing-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px) scale(1.03);
}

.pricing-card.featured {
    border-width: 4px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--text-light);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.period {
    color: var(--text-light);
    font-size: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Single Pricing Card Styles */
.price-main {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--primary-green);
    border-radius: 1rem;
    display: inline-block;
}

.price-main .currency {
    font-size: 2rem;
    vertical-align: top;
    color: white;
    font-weight: 700;
}

.price-main .amount {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -3px;
}

.price-main .period {
    color: white;
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 600;
}

.pricing-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.features-list-main {
    list-style: none;
    margin: 2.5rem 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-list-main li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}



/* Contact Section */
.contact-section {
    padding: 6rem 0;
    /* background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%); */
    background: var(--bg-light-orange);
}

/* Alert Messages */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    animation: slideDown 0.4s ease-out;
    text-align: center;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.alert-success i {
    color: #28a745;
}

.alert-error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

.alert-error i {
    color: #dc3545;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--primary-orange);
    padding: 2.5rem;
    border-radius: 1rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    font-size: 1.85rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form-box {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-color);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.925rem;
    letter-spacing: 0.3px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.975rem;
    transition: all 0.3s;
    background-color: var(--bg-white);
}

.contact-form select {
    cursor: pointer;
    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='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* Floating Action Buttons */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.call-btn {
    background: var(--primary-orange);
}

.call-btn:hover {
    background: #ff6b35;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-btn i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    padding-top: 0rem;
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: white;
    border-top: 4px solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        gap: 1rem;
    }

    .logo img {
        height: 48px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .nav-menu {
        display: none;
    }

    .nav-call {
        order: 2;
        padding: 0.6rem 1rem;
        gap: 0.3rem;
    }

    .call-label {
        font-size: 0.78rem;
    }

    .call-number {
        font-size: 0.78rem;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-image-wrapper img {
        height: 250px;
    }

    .pricing-benefits {
        justify-content: center;
    }

    .benefit-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .price-tag {
        padding: 2rem 1.5rem;
    }

    .price-amount .amount {
        font-size: 3.5rem;
    }

    .btn-pricing-cta {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .features-checklist {
        grid-template-columns: 1fr;
    }

    .features-checklist li {
        padding: 0.75rem;
    }

    .features-checklist span {
        font-size: 0.9rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero {
        padding: 5rem 0;
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.25rem;
        letter-spacing: -0.5px;
    }

    .price-hero {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .pricing-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .pricing-card-main {
        padding: 2rem;
    }

    .price-main .amount {
        font-size: 3.5rem;
    }

    .features-list-main {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .pricing-single {
        padding: 0 1rem;
    }
}


@media (max-width: 480px) {

 .navbar {
    gap: 0.5rem;
 }

 .mobile-menu-toggle {
    margin-top: 0.5rem;
 }
 .nav-call {
    gap: 0.2rem;
    line-height: 1.2;
    padding: 0.8rem 0.4rem;
    border-radius: 8px;
    align-self: end;
 }
 .call-number {
    font-size: 0.75rem;
 }
 .nav-call .call-icon {
    display: block;
    font-size: 0.75rem;
 }
 .call-label {
    display: none;
 }
 .contact-form-box {
    padding: 1.5rem;
 }

 .floating-widgets {
    bottom: 20px;
    right: 20px;
    gap: 12px;
 }

 .floating-btn {
    width: 60px;
    height: 60px;
    font-size: 26px;
 }
}

@media (max-width: 1000px) {
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
