
/*
Theme Name: Quimigrate
Author: Kafiluddin Ahmed
Version: 1.0
*/
/* Color Palette from Logo */
:root {
    --primary-teal: #1EB9A2;   
    --logo-gray: #5E5E5E;       
    --bg-dark: #0B131D;       
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --transition: all 0.3s ease;
}

/* Header Start */

/* --- Main Header & Wrapper --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    overflow-x: hidden;
}

/* --- Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000; /* Dark Theme */
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px; 
}

/* Logo Styling - No Negative Margin */
.brand-logo img {
    margin-top: 8px;
    height: 60px; 
    width: auto;
    display: block;
    object-fit: contain;
}

/* Desktop Menu */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #1EB9A2;
}

.cta-btn {
    background-color: #1EB9A2;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}
.cta-btn:hover{
    background-color: #0d9488;
}
/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 8px; 
    gap: 6px;
    transition: var(--transition); 
}

.hamburger:hover {
    background-color: var(--primary-teal); 
    border-color: var(--primary-teal);
}

.bar {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: 0.4s;
}

/* --- Mobile Navigation (Overlay) --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 80%;
    height: 100vh;
    background-color: #0d1623;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.nav-action {
    display: flex;
    align-items: center;
    gap: 15px; /* Spacing between the two buttons */
}


.call-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #1EB9A2; 
    border-radius: 50px;
    transition: 0.3s;
}

.call-btn:hover {
    background-color: #1EB9A2;   
}
.mobile-nav.active {
    right: 0; 
}

.mobile-nav a {
    color: white;
    font-size: 22px;
    text-decoration: none;
    font-weight: 600;
}

.mobile-call {
    text-align: center;
    width: 220px; 
    padding: 12px;
    background-color: transparent;
    border: 2px solid #ffffff; 
    color: white;
    border-radius: 50px; 
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.mobile-call:hover {
    background-color: #1EB9A2;
    color: #0d1623;
}

.mobile-cta {
    text-align: center;
    width: 220px;
    background-color: #1EB9A2;
    color: white;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.mobile-cta:hover{
    background-color: #0d9488;
}

.mobile-nav hr {
    width: 40%;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 5px 0;
}

/* --- Responsive Adjustments (Mobile & Tablet) --- */
@media (max-width: 1024px) {
    .nav-links, .nav-action {
        display: none; 
    }
    
    .hamburger {
        display: flex;
    }

    .nav-wrapper {
        padding: 0 20px;
    }

    .brand-logo img {
        height: 70px; 
    }

    .main-header {
        height: 75px;
    }
}

/* Header End */

/* Hero Section Layout */

/* --- Hero Section Styling --- */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgb(13, 22, 35) 0%, rgb(26, 35, 50) 45%, rgb(30, 58, 74) 100%);
    overflow: hidden;
    padding-top: 90px; 
}

/* Background Image with opacity */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1440px; 
    margin: auto;
    width: 100%;
    padding: 40px 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* Left Content Styles */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(30, 185, 162, 0.1);
    border: 1px solid rgba(30, 185, 162, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
}

.badge-text {
    color: #1EB9A2;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-heading {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: white;
    font-family: 'Playfair Display', serif; 
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-heading .highlight {
    color: #1EB9A2;
    font-weight: 700;
}

.hero-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Buttons */
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-teal {
    background-color: #1EB9A2;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-teal:hover {background-color: #0d9488;}

.btn-outline-white {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* Pricing Card Styles */
.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-label {
    color: #000000;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.service-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    transition: 0.3s;
    cursor: pointer;
}

.service-item:hover {
    border-color: #1EB9A2;
    background: #f0fdfa;
}

.service-info { display: flex; align-items: center; gap: 12px; }
.service-icon {
    width: 36px; height: 36px;
    background: rgba(30, 184, 166, 0.2);
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
}

.service-name { color: #334155; font-weight: 500; font-size: 16px; }
.service-price { color: #1EB9A2; font-weight: 700; font-size: 14px; }

.service-note {
  font-size: 12px;
  color: #6b7280; /* soft gray */
  margin-top: 2px;
  line-height: 1.3;
  max-width: 180px;
}

.service-text {
  display: flex;
  flex-direction: column;
}

.btn-card-action {
    display: block;
    width: 100%;
    background: #1EB9A2;
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-card-action:hover {background-color: #0d9488;}

.card-footer { text-align: center; display: block !important; width: 100% !important; color: #000000; font-size: 14px; margin-left: auto !important;margin-right: auto !important; margin-top: 15px; }

/* Stats Bar */
.stats-bar {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 170px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;  }
.stat-icon {
    width: 40px; height: 40px;
    background: rgba(30, 184, 166, 0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.stat-value { color: white; font-weight: 700; font-size: 16px; }
.stat-label { color: #94a3b8; font-size: 12px; }

/* --- Responsive Adjustments (The Critical Part) --- */
@media (max-width: 768px) {
    .hero-container {
        padding: 20px 15px; 
    }

    .hero-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
        text-align: center;
    }

    .hero-heading {
        font-size: 32px; 
        line-height: 1.3;
    }

    .hero-description {
        font-size: 15px;
        margin: 0 auto 25px auto;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column; 
        align-items: center;
        gap: 12px;
    }

    .btn-teal, .btn-outline-white {
        width: 100%; 
        max-width: 300px;
        text-align: center;
    }

    
    .stats-container {
        grid-template-columns: 1fr; 
        padding: 30px 20px;
        gap: 25px;
        text-align: center; 
    }

    .stat-item {
        justify-content: center;
    }
}

/* Hero Section End*/

/* Services Section Start */

/* --- Services Section Styling --- */
.services-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.service-badge {
    background: #f0fdfa;
    color: #1EB9A2;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    color: #0f172a;
    margin: 20px 0;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* --- Services Grid --- */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* responsive columns */
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* header + content + footer spread */
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}


.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Card Image Box */
.card-image-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img {
    transform: scale(1.1);
}

.category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.self-filing { background: #ccfbf1; color: #0d9488; }
.full-service { background: #e2e8f0; color: #475569; }
.family-based { background: #fef3c7; color: #b45309; }

/* Card Content */
.card-content {
    padding: 30px;
}

.card-header-flex {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.icon-box {
    font-size: 20px;
}

.card-content h3 {
    font-size: 20px;
    color: #1e293b;
    font-weight: 700;
}

.card-content p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;        /* line clamp for text overflow */
    -webkit-line-clamp: 3;       /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-content p {
    min-height: 72px;
}
/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.price {
    color: #1EB9A2;
    font-weight: 700;
    font-size: 16px;
}

.details-link {
    text-decoration: none;
    color: #6366f1;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.details-link:hover {
    gap: 8px;
    color: #4338ca;
}

/* View All Button */
.view-all-container { text-align: center; }

.btn-view-all {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    transition: 0.3s;
}

.btn-view-all:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

@media (max-width: 1024px) {
    .services-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }
    .section-title {
        font-size: 28px;
    }
    .card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* single column mobile */
        gap: 15px;
    }
    .section-title {
        font-size: 24px;
    }
    .card-content {
        padding: 15px;
    }
}

/* Services Section End */


/* How It Works Section Start */
/* --- How It Works Section --- */
.how-it-works {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.how-it-works .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
    box-sizing: border-box;
}

.how-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
}

.how-badge {
    background: #f0fdfa;
    color: #14b8a6;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.how-title {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: #1a2332;
    line-height: 1.1;
    margin: 0;
}

.how-intro {
    max-width: 380px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* --- Steps Grid --- */
.steps-wrapper {
    position: relative;
    width: 100%;
}

.step-line-bg {
    position: absolute;
    top: 32px; 
    left: 5%;
    right: 5%;
    height: 1px;
    background: #14b8a6;
    opacity: 0.2;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr) !important; 
    gap: 20px;
    position: relative;
    z-index: 2;
}

.step-item {
    text-align: center;
}

.step-icon-box {
    width: 64px;
    height: 64px;
    background: #f7f9fc;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 24px;
    color: #14b8a6;
    transition: 0.3s;
}

.step-icon-box.active {
    background: #14b8a6;
    border-color: #14b8a6;
    color: #ffffff;
}

.step-number {
    display: block;
    color: #14b8a6;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.step-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #1a2332;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    padding: 0 10px;
}

/* --- Mobile Responsive --- */
@media (max-width: 1200px) {
    .how-it-works .container { padding: 0 40px; }
    .steps-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 40px 20px; }
    .step-line-bg { display: none; }
}

@media (max-width: 768px) {
    .how-header { 
    flex-direction: column; 
    text-align: center ; 
    margin-bottom: 50px; 
    align-items: center; 
    gap: 15px; }

    .how-header .header-left {
    display: flex;
    flex-direction: column;
    align-items: center; /* Bhetorer badge ebong title ke center korbe */
    width: 100%;
}

.header-left .how-badge {
    display: inline-block;  
    margin: 0 auto 15px auto;
}

.header-left .how-title {
    font-size: 32px;
    width: 100%;
    text-align: center;
    margin: 0;
}

.how-header .how-intro {
     max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.steps-grid { 
    grid-template-columns: 1fr !important;
    gap: 30px; 
}

}

/* How It Works Section End */


/* Pricing Section Start */

.pricing-section {
    padding: 100px 0;
     background-color: #f7f9fc;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px; /* mobile safe */
}

@media (min-width: 1024px) {
    .container { padding: 0 80px; } /* desktop */
}

/* --- Header --- */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-badge {
    background: #f0fdfa;
    color: #1EB9A2;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--dark-navy);
    margin: 20px 0 10px;
}

.pricing-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Grid Layout (Fix: 3 Columns) --- */
/* --- Grid Layout Fix --- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
    align-items: stretch;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

/* --- Card Styles (Fixing Spacing & Padding) --- */
.price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.3s ease;
}

.price-card.popular {
    border: 2px solid #1EB9A2;
    position: relative;
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.08);
}

/* Typography Fix */
.price-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.card-tagline {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 25px;
}

/* Price Section */
.price-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 30px;
}

.main-price {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
}

.price-range {
    font-size: 20px;
    color: #94a3b8;
}

/* Feature List Fix */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1; 
}

.feature-list li {
    font-size: 15px;
    color: #475569;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.check-icon {
    color: #1EB9A2;
    margin-right: 12px;
    font-weight: bold;
}

/* Buttons Fix */
.price-card .btn-price-solid, 
.price-card .btn-price-outline {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 20px;
}

/* Add-ons Box Fix */
.addon-box {
    margin-top: 15px;
}

.addon-item {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.addon-item p {
    margin: 0;
    font-weight: 600;
    color: #0f172a;
    font-size: 15px;
}

/* Small tag styling: */
.addon-disclaimer {
    display: block; 
    font-size: 12.5px;
    color: #475569;
    line-height: 1.4;
    margin-top: 5px; 
}

.addon-price {
    color: #1EB9A2;
    font-weight: 700;
    display: block;
    margin-top: 4px;
    font-size: 15px;
}

.addon-note {
    font-size: 12.5px;
    color: #475569;
    line-height: 1.5;
    margin-top: 15px;
}

/* --- Buttons (Original Pill Shape) --- */
.btn-price-solid {
    display: block;
    text-align: center;
    padding: 14px;
    background: #1EB9A2;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-price-outline {
    display: block;
    text-align: center;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    transition: 0.3s;
}

.btn-price-outline:hover {
    border-color: #1EB9A2;
    color: #1EB9A2;
}

.btn-price-solid:hover { background: #0d9488; transform: translateY(-2px); }
.btn-price-outline:hover { border-color: #1EB9A2; background: #f0fdfa; }

/* --- Pricing Footer --- */
.pricing-footer {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }
    
    .pricing-title {
        font-size: 36px; 
    }
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}  

/* --- Pricing End --- */

.full-comparison {
    color: #1EB9A2;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.full-comparison:hover { text-decoration: underline; }

/* --- Stats Dark Bar --- */
.stats-dark-bar {
     background: #1a2332;
    padding: 60px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    margin: 0 0 5px 0;
    color: white;
}

.stat-desc {
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* --- Responsive Layout --- */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
}

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr !important; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .stats-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
}

/* Stats Bar End */


/* --- Testimonials Area --- */
.testimonials-area {
    padding: 100px 0;
    background-color: #faf8f5; 
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-badge {
    background: rgba(30, 185, 162, 0.1);
    color: #1EB9A2;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a2332;
    margin-top: 20px;
}

/* --- Review Grid --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #ffffff;
    padding: 40px;
     border: 1px solid #f1f5f9;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.stars {
    color: #fbbf24; 
    font-size: 15px;
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    color: #475569;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
}

.client-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0fdfa;
}

.client-name {
    font-weight: 700;
    color: #1a2332;
    margin: 0;
    font-size: 14px;
}

.client-meta {
    font-size: 14px;
    color: #94a3b8;
    margin: 2px 0 0 0;
}



/* --- Credentials Area --- */
.credentials-area {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.cred-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.cred-item {
    padding: 20px;
    border: 1px solid #f1f5f9;
    border-radius: 15px;
    transition: 0.3s;
}

.cred-item:hover {
    border-color: #1EB9A2;
}


.cred-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.cred-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 8px;
}

.cred-item p {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .testimonial-grid, .cred-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .container {
        padding: 0 30px;
    }
}

/* CTA Section Start */
/* --- CTA Section Styling --- */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Background Handling */
.cta-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(120deg, 
        rgba(13, 22, 35, 0.95) 0%, 
        rgba(13, 22, 35, 0.8) 50%, 
        rgba(30, 185, 162, 0.4) 100%);
}

/* Content Layout */
.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 850px;
}

/* Badge Styling */
.cta-badge {
    display: inline-block;
    border: 1px solid #1EB9A2;
    color: #1EB9A2;
    background: rgba(20, 184, 166, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Title & Description */
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-title .highlight {
    color: #1EB9A2;
    font-weight: 600;
}


.cta-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Buttons Styling */
.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-cta-primary {
    background-color: #1EB9A2;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-outline {
    background-color: transparent;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

/* Hover Effects */
.btn-cta-primary:hover {
    background: #159b87;
    transform: translateY(-2px);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Footer Note */
.cta-footer-note {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-title {
        font-size: 38px;
    }
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    .btn-cta-primary, .btn-cta-outline {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }
}
/* CTA Section End */


/* Footer Global Start */

/* --- Variables Based on Logo --- */


.site-footer {
    background-color: #0B131D;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

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

/* --- Top CTA Area --- */
.footer-cta-area {
    padding: 70px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.begin-span {
    color: #1EB9A2;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-heading {
    font-size: 36px;
    margin: 12px 0;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.cta-subtext {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 500px;
}

.btn-consultation {
    background-color: #1EB9A2;
    color: var(--bg-dark) !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-consultation:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 185, 162, 0.2);
}

/* --- Main Footer Grid --- */
.footer-main {
    padding: 40px 0;
}

.grid-3-col {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 160px;
    align-items: start;
}

.large-footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
    /* Optional: Brighten logo slightly if needed for dark bg */
    filter: brightness(1.1);
}

.footer-about-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
    margin-top:20px;
}

/*.social-row {*/
/*    display: flex;*/
/*    gap: 12px;*/
/*}*/

.s-link {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.s-link:hover {
    background: #1EB9A2;
    border-color: #1EB9A2;
    color: #0B131D;
}

.footer-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

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

.footer-links-list li {
    margin-bottom: 26px;
}

.footer-links-list a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: #1EB9A2;
    padding-left: 5px;
}

/* --- Contact Items --- */
.contact-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.c-item {
    display: flex;
    gap: 18px;
    text-decoration: none;
    color: inherit;
}

.c-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px; /* Slightly rounded squares for modern look */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1EB9A2;
    transition: var(--transition);
}

.c-item:hover .c-icon {
    background: #1EB9A2;
    color: #0B131D;
}

.c-primary {
    display: block;
    font-weight: 600;
    font-size: 16px;
}

.c-secondary {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* --- Bottom Bar --- */
.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom-links a {
    color: #ffffff; 
    text-decoration: none;
    font-size: 14px;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #1EB9A2; 
}

/*.legal-links a {*/
/*    color: var(--text-muted);*/
/*    text-decoration: none;*/
/*    margin-left: 25px;*/
/*    transition: color 0.2s;*/
/*}*/

/*.legal-links a:hover {*/
/*    color: var(--text-white);*/
/*}*/

/* ---------------------------------------------------
   RESPONSIVE DESIGN (The Perfect Mobile Fit)
--------------------------------------------------- */

/* Tablet Layout */
@media (max-width: 1024px) {
    .grid-3-col {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .footer-col:first-child {
        grid-column: span 2;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .footer-cta-area .flex-between {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cta-right {
        width: 100%;
    }

    .btn-consultation {
        width: 100%;
        justify-content: center;
        padding: 18px;
    }

    .grid-3-col {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .footer-col:first-child {
        grid-column: span 1;
    }

    .footer-bottom .flex-between-center {
        flex-direction: column-reverse;
        gap: 20px;
    }

       .footer-bottom-links a {
        margin: 0;
    }

    .footer-bottom-links a:first-child {
        margin-left: 0;
    }
}

/* Footer Global End */


/* --- Consultation Page Start--- */

.consult-hero-section {
    position: relative;
    padding-top: 128px; /* pt-32 */
    padding-bottom: 64px; /* pb-16 */
    padding-left: 24px;   /* px-6 */
    padding-right: 24px;
   
    background: linear-gradient(135deg, rgb(13, 22, 35) 0%, rgb(26, 35, 50) 60%, rgb(30, 58, 74) 100%);
}

.consult-container {
    max-width: 1440px !important; /* max-w-7xl */
    padding: 0 40px !important;   
    margin: 0 auto;
}

/* Breadcrumb Styling */
.consult-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px; /* gap-2 */
    margin-bottom: 20px; /* mb-5 */
}

.crumb-link {
    color: #9ca3af; /* text-gray-400 */
    font-size: 0.75rem; /* text-xs */
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.crumb-link:hover {
    color: #2dd4bf; /* hover:text-teal-400 */
}

.separator {
    color: #4b5563; /* text-gray-600 */
    font-size: 0.75rem;
}

.crumb-current {
    color: #2dd4bf; /* text-teal-400 */
    font-size: 0.75rem;
}

/* Hero Content Styling */
.consult-hero-content {
    text-align: center;
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
}

.consult-badge {
    display: inline-block;
    padding: 6px 24px; /* px-4 py-1.5 */
    border-radius: 9999px;
    border: 1px solid rgba(20, 184, 166, 0.4); /* border-teal-400/40 */
    background-color: rgba(20, 184, 166, 0.1); /* bg-teal-500/10 */
    color: #5eead4; /* text-teal-300 */
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.consult-main-title {
    font-family: "Playfair Display", serif;
    font-size: 2.25rem; /* text-4xl */
    font-weight: 300; /* font-light */
    color: #ffffff;
    margin-bottom: 16px; /* mb-4 */
    line-height: 1.2;
}

.consult-highlight {
    font-weight: 600;
    color: rgb(20, 184, 166); /* teal color */
}

.consult-description {
    color: #d1d5db; /* text-gray-300 */
    font-size: 1rem; /* text-base */
    line-height: 1.625; /* leading-relaxed */
}



.consultation-wrap {
    background-color: rgb(247, 249, 252); 
    padding: 64px 24px;
}

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

.booking-main-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

/* --- Left Side: What to Expect --- */
.left-card {
    background-color: rgb(26, 35, 50); 
    padding: 40px 40px 40px 40px;
    border-radius: 16px;
    color: white;
}

.free-consultation-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(20, 184, 166, 0.2);
    color: #5eead4;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.playfair-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.left-desc {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.feature-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feat-item { display: flex; gap: 16px; align-items: flex-start; }

.feat-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(20, 184, 166, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    flex-shrink: 0;
}

.feat-h { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.feat-p { font-size: 12px; color: #94a3b8; line-height: 1.5; }

/* Testimonial Section */
.client-testimonial-section {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

.testimonial-label-text { font-size: 10px; color: #64748b; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.star-icons { color: #fbbf24; font-size: 12px; margin-bottom: 8px; display: flex; gap: 2px;}
.testimonial-italic-text { font-style: italic; font-size: 14px; color: #d1d5db; margin-bottom: 16px; line-height: 1.6; }
.client-info-wrap { display: flex; align-items:center; gap: 12px; }
.client-avatar-circle {
    width: 32px; height: 32px; background: #14b8a6; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold;
}

.client-name-text { font-size: 12px; font-weight: 500; margin-top:8px; }
.client-meta-text { font-size: 12px; color: #64748b; }

.contact-phone-wrap {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.phone-link-row { display: flex; items-center; gap: 8px; color: white; font-size: 14px; }
.phone-link-row i { color: #14b8a6; }
.phone-link-row a { text-decoration: none; color: white; transition: 0.3s; }
.phone-link-row a:hover { color: #14b8a6; }
.timing-text { color: #64748b; font-size: 12px; margin-top: 4px; }

/* --- Right Side: Calendar & Form --- */
.right-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.4);
    overflow: hidden;
    padding: 24px;
}

/* Calendar Styling */
.calendar-block {
    margin-bottom: 32px;
}

.calendar-top-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
}

.month-year-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: rgb(26, 35, 50);
    font-weight: 600;
}

.nav-button-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: #64748b;
}

.nav-button-icon:hover {
    border-color: #14b8a6;
    color: #14b8a6;
}

/* Grid for Days Label */
.calendar-days-labels-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 12px;
}

.day-label-item {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    padding: 8px 0;
}

/* Grid for Dates */
.calendar-dates-numbers-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 4px;
}

.date-number-item {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    background: transparent;
    transition: 0.3s;
}

/* Disabled Dates */
.date-number-item.disabled-past {
    color: #e2e8f0;
    cursor: not-allowed;
}

/* Available Active Dates */
.date-number-item.available-active {
    color: #4b5563;
    cursor: pointer;
}

.date-number-item.available-active:hover {
    background-color: #f0fdfa; /* light teal bg */
    color: #0d9488; /* teal text */
}

/* Selected Active Dates */
.date-number-item.selected-date {
    background-color: #14b8a6;
    color: white;
}

/* Form Styling */
.form-details-title-text { font-size: 12px; font-weight: 600; text-transform: uppercase; color: #94a3b8; margin-bottom: 16px; letter-spacing: 0.1em; }

.form-inputs-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-single-row, .input-double-row { display: flex; flex-direction: column; gap: 4px; }
.input-double-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.input-field-custom label { display: block; font-size: 12px; font-weight: 500; color: #4b5563; margin-bottom: 4px; }
.input-field-custom input, .input-field-custom select, .input-field-custom textarea {
    width: 100%; padding: 12px 16px; border-radius: 8px; border: 1px solid #e2e8f0; font-size: 14px;
}

.confirm-booking-button {
    width: 100%; background: #99f6e4; color: #0d9488; padding: 14px; border-radius: 50px;
    font-weight: 600; border: none; cursor: pointer; margin-top: 24px; transition: 0.3s;
    font-size: 14px;
}

.confirm-booking-button:hover { background: #5eead4; }
.business-day-text { text-align: center; font-size: 11px; color: #94a3b8; margin-top: 12px;}

/* After Consultation Steps */
.steps-section {
    padding: 20px 34px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.steps-container {
    max-width: 1440px; 
    width: 100%;
    margin: 0 auto; 
    padding: 0 20px 0 20px; 
    box-sizing: border-box;
}

.steps-top-label {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8; /* text-gray-400 */
    margin-bottom: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    gap: 50px;
    
}

/* Card Styling */
.step-card {
    min-width: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 34px;
    margin-top: 20px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-sizing: border-box;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

/* Icon & Light Circle Effect */
.step-icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f0fdfa; /* teal-50 */
    border-radius: 50%;
    opacity: 0.8;
}

.step-icon-wrapper i {
    position: relative;
    z-index: 2;
    font-size: 24px;
    color: #0d9488; /* teal-600 */
}

/* Typography */
.step-number {
    font-size: 11px;
    font-weight: 700;
    color: #14b8a6; /* teal-500 */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.step-title {
    font-size: 15px;
    font-weight: 600;
    color: rgb(26, 35, 50);
    margin-bottom: 12px;
}

.step-text {
    font-size: 13px;
    color: #94a3b8; /* gray-400 */
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .consult-hero-section {
        padding-left: 40px; 
        padding-right: 40px;
   }
    .consult-main-title {
        font-size: 3rem; 
    }
   .booking-main-grid { 
       grid-template-columns: 2fr 3fr; }
}
@media (min-width: 768px) {
    .steps-grid { 
        grid-template-columns: repeat(4, 280px); 
       justify-content: center;
    }
}
@media (max-width: 600px) {
    .input-double-row { grid-template-columns: 1fr; }
}

/* --- Consultation Page End--- */


/* Services Page Start */

/* Services hero  */
.services-hero {
    position: relative;
    padding: 90px 24px 10px 24px; /* pt-32 pb-20 */
    overflow: hidden;
    background: linear-gradient(135deg, rgb(13, 22, 35) 0%, rgb(26, 35, 50) 60%, rgb(30, 58, 74) 100%);
    font-family: 'Inter', sans-serif;
}

@media (min-width: 1024px) {
    .services-hero { padding-left: 40px; padding-right: 40px; }
}

/* Background Image Layer */
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    opacity: 0.1; /* opacity 10% */
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Container & Breadcrumb */
.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.bc-link {
    color: #94a3b8; /* text-gray-400 */
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.bc-link:hover { color: #2dd4bf; }

.breadcrumb-nav i { color: #4b5563; font-size: 12px; }

.bc-current { color: #2dd4bf; font-size: 12px; }

/* Content Details */
.hero-content { max-width: 640px; }

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(45, 212, 191, 0.4);
    background: rgba(20, 184, 166, 0.1);
    color: #5eead4;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem; /* text-4xl */
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .hero-title { font-size: 3rem; } /* lg:text-5xl */
}

.hero-highlight {
    font-weight: 600;
    color: rgb(20, 184, 166); /*teal color rgb code */
}

.hero-desc {
    color: #d1d5db; /* text-gray-300 */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 512px;
}

/* Button */
.btn-teal-rounded {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: #14b8a6;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-teal-rounded:hover {
    background-color: #0d9488;
    transform: translateY(-2px);
}


/* Pricing Section Container */

.pricings-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.pricings-container {
    max-width: 100% !important; 
    padding: 0 60px; 
    margin: 0 auto;
}

/* --- Pricings-Grid --- */
.pricings-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; 
    gap: 30px;
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 50px;
}

.prices-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%; 
    transition: all 0.4s ease;
    box-sizing: border-box;
}

.prices-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Featured Card (Most Popular) */
.price-card.featured {
    border: 2px solid #1EB9A2;
    border-radius: 24px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    background-color: #ffffff;
}

.price-card.featured:hover {
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    margin-top: -50px;
    /*transform: translateX(-20%);*/
    background: #1EB9A2;
    color: #ffffff;
    padding: 8px 8px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Typography */
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #0B131D;
    margin-bottom: 15px;
}

.disclaimer-bold{
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 18px;
    color: #0B131D;
    margin-top: 3px;
    margin-bottom: 2px;
}
.card-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
}

.mains-price {
    font-size: 48px;
    font-weight: 300;
    color: #0B131D;
}

/*.prices-range {*/
/*    font-size: 20px;*/
/*    color: #94a3b8;*/
/*}*/

.price-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* Feature List */
.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-list i {
    color: #1EB9A2;
    font-size: 18px;
    margin-top: 2px;
}

/* Buttons */
.btn-solid-teal, .btn-outline-get-started {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-solid-teal {
    background: #1EB9A2; 
    color: #fff;
    border-radius: 50px;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}
.btn-solid-teal:hover {
    background: #16a08b;
    box-shadow: 0 10px 20px rgba(30, 185, 162, 0.2);
}

.btn-outline-get-started {
    border: 1px solid #e2e8f0;
    color: #0B131D;
}

.btn-outline-get-started:hover {
    background: #f8fafc;
    border-color: #1EB9A2;
    color: #1EB9A2;
}

/* --- Add-ons Styling --- */
.addons-wrapper {
    background: #f8fafc;
    padding: 20px;
    border-radius: 24px;
}

.addons-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;

}

.addons-header h3{
     font-family: 'Playfair Display', serif;
    font-size:18px ;
}

.addons-header p{
    font-size:12px ;
    line-height: 22px;
}
.addon-icon-box {
    width: 50px;
    height: 50px;
    background:var(--text-white);
    color: #1EB9A2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.addon-icon-box:hover{
    background-color: #0B131D;
    cursor: pointer;

}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 20px;

}

.addon-card {
    background: var(--text-white);;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #f1f5f9;
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)

}

.addon-card:hover{
    transform: translateY(-8px); 
    border-color: #1EB9A2; 
    box-shadow: 0 10px 25px rgba(30, 185, 162, 0.1);
}

.addon-card:hover .mini-icon-box {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.addon-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.addon-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-title-wrap h4{
    font-size: 14px;
}
.mini-icon-box {
    color: #1EB9A2;
    font-size: 22px;
}

.addon-price {
    text-align: right;
}

.price-val {
    font-weight: 600;
    color: #1EB9A2;
    font-size: 20px;
    margin: 0;
}

.price-unit {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

.addon-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* --- Responsive Code --- */
@media (max-width: 992px) {
.pricings-grid {
        grid-template-columns: 1fr !important;
    }
.pricings-container {
        padding: 0 20px;
    }
.card-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
.addons-grid {
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
.addons-grid {
        grid-template-columns: 1fr; 
    }

.addon-top {
        flex-direction: column; 
        align-items: flex-start; 
        gap: 10px;
    }

.addon-price {
    text-align: left; 
    }
    
.addon-card {
     padding: 20px;
    }
}
.form-pricing-list {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    min-height: 220px; 
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #4a5568;
}

.pricing-item span {
    max-width: 75%;
    text-align: left;
}

.special-row {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #cbd5e0;
    font-weight: 700;
    color: #1EB9A2 !important;
}

/* Card Height Consistency */
.prices-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


/* Comparison Section Styling */
.comparison-section {
    background: #ffffff;
    position: relative;
    z-index: 2;
}
.comparison-container {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.section-header { text-align: center; margin-bottom: 40px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 32px; color:#1a2332; margin-bottom: 8px; }
.section-subtitle { color: #94a3b8; font-size: 14px; }

/* Table Wrapper */
.table-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Grid System */
.table-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid #f1f5f9;
}

.table-header { border-bottom: 1px solid #e2e8f0; }

.feature-col { padding: 20px 24px; font-size: 14px; color: #4b5563; display: flex; align-items: center; }
.val-col { padding: 20px; display: flex; align-items: center; justify-content: center; border-left: 1px solid #f1f5f9; }

/* Column Highlighting */
.val-col.highlighted { background-color: #f0fdfa; border-left: 1px solid #ccfbf1; } /* Light teal bg */
.price-col.filing { background-color: #f0fdfa; border-left: 1px solid #ccfbf1; }

/* Pricing Header Details */
.price-col { padding: 24px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.package-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: #94a3b8; letter-spacing: 0.05em; margin-bottom: 4px; }
.package-label.highlighted { color: #14b8a6; }
.package-price { font-size: 18px; font-weight: 600; color: #1a2332; }

/* Row Variations */
.row-white { background-color: #ffffff; }
.row-gray { background-color: rgba(248, 250, 252, 0.5); } /* Very light gray */

/* Icons & Special Text */
.val-col i.ri-check-line { color: #14b8a6; font-size: 20px; }
.val-col i.ri-subtract-line { color: #e2e8f0; font-size: 20px; }
.text-teal { color: #0d9488; font-size: 12px; font-weight: 600; }


/* FAQ Section Styling */
.faq-section {
    padding: 40px 24px;
    background-color: white;
    font-family: 'Inter', sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header { text-align: center; margin-bottom: 48px; }

.faq-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #f0fdfa;
    color: #14b8a6;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1a2332;
}

/* Accordion Styling */
.faq-accordion { display: flex; flex-direction: column; gap: 16px; }

.faq-item {
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    background-color: #f8fafc;
    overflow: hidden;
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    outline: none;
}

.faq-question {
    font-size: 15px;
    font-weight: 600;
    color: #1a2332;
}

.faq-icon-box {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

/* Icon Switching Logic */
.faq-item[open] .add-icon { display: none; }
.faq-item:not([open]) .subtract-icon { display: none; }
.subtract-icon { color: #14b8a6; }
.add-icon { color: #94a3b8; }

.faq-content { padding: 0 24px 20px; }
.faq-content p { font-size: 14px; color: #64748b; line-height: 1.6; }

/* Bottom CTA Banner */
.bottom-cta-section {
    padding: 60px 24px;
    background-color: #f7f9fc;
}

.cta-banner {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 22px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-banner { flex-direction: row; text-align: left; }
}

.cta-text h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: #1a2332; margin-bottom: 8px; }
.cta-text p { color: #64748b; font-size: 14px; }

.btn-primary-teal {
    background-color: #14b8a6;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-primary-teal:hover { background-color: #0d9488; transform: translateY(-2px); }
/*Service Page End*/

/* Privacy Policy Page Start */

/* Privacy Policy Page Styles */
.privacy-container {
    max-width: 1000px; 
    margin: 100px auto; 
    padding: 60px;
    background-color: var(--bg-dark); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 12px;
    line-height: 1.8;
    color: var(--text-white); 
}

.privacy-container h1 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-teal); 
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.privacy-container .date {
    font-size: 14px;
    color: var(--text-muted); 
    margin-bottom: 50px;
    display: block;
}

.privacy-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff; 
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-teal); 
    padding-left: 15px;
}

.privacy-container p {
    margin-bottom: 20px;
    color: var(--text-muted); 
    font-size: 14px;
}

.privacy-container ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.privacy-container li {
    margin-bottom: 12px;
    color: var(--text-muted);
    list-style: none;
    position: relative;
}

.privacy-container li::before {
    content: "•"; 
    color: var(--primary-teal);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.privacy-container a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: var(--transition);
}

.privacy-container a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Responsive Setup */
@media (max-width: 768px) {
    .privacy-container {
        margin: 60px 20px;
        padding: 30px;
    }
    
    .privacy-container h1 {
        font-size: 28px;
    }
}

/* Privacy policy Page End */


/* Terms of Service Page Start */

/* Terms of Service Page Styles */
.terms-container {
    max-width: 1000px;
    margin: 100px auto;
    padding: 60px;
    background-color: var(--bg-dark); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    line-height: 1.8;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
}

.terms-container h1 {
    text-align: left;
    color: var(--primary-teal); 
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.terms-container .date {
    text-align: left;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    display: block;
}

.terms-container h2 {
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 1px solid rgba(30, 185, 162, 0.2); 
    padding-bottom: 10px;
}

.terms-container p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 16px;
}

.terms-container ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.terms-container li {
    margin-bottom: 12px;
    color: var(--text-muted);
    list-style-type: none;
    position: relative;
}


.terms-container li::before {
    content: "✓"; 
    color: var(--primary-teal);
    position: absolute;
    left: -25px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-container {
        margin: 40px 20px;
        padding: 30px;
    }
    .terms-container h1 {
        font-size: 28px;
    }
}

/* Terms of Service Page End */

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 14px 28px;
    background:#fff;
    color: #0B131D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#cookie-banner p {
    margin: 0;
    font-size: 14px;
}

#cookie-banner a {
    color: #1EB9A2;
    text-decoration: underline;
}

#cookie-banner button {
    background: #00a859;
    border: none;
    padding: 8px 15px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/*Cookie Banner End*/