/* =========================================
   IndiaTenders.in - Complete Stylesheet
   ========================================= */

/* CSS Variables / Design Tokens */
:root {
    /* Colors */
    --primary: #ea580c;
    --primary-foreground: #ffffff;
    --primary-hover: #c2410c;
    
    --secondary: #f5f5f4;
    --secondary-foreground: #1c1917;
    
    --accent: #22c55e;
    --accent-foreground: #ffffff;
    
    --background: #ffffff;
    --foreground: #0c0a09;
    
    --muted: #f5f5f4;
    --muted-foreground: #78716c;
    
    --card: #ffffff;
    --card-foreground: #0c0a09;
    
    --border: #e7e5e4;
    --input: #e7e5e4;
    --ring: #ea580c;
    
    /* Spacing */
    --radius: 0.5rem;
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-background {
    background-color: var(--background);
}

.text-primary {
    color: var(--primary);
}

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

.container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    white-space: nowrap;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.btn-sm {
    height: 2.25rem;
    padding: 0 0.75rem;
}

.btn-md {
    height: 2.5rem;
    padding: 0 1rem;
}

.btn-lg {
    height: 2.75rem;
    padding: 0 2rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary) !important;
    color: var(--primary-foreground) !important;
    border: none !important;
    padding: 0.75rem 1.5rem;
    height: auto;
    min-height: 2.5rem;
}

/* Margin top utility for buttons after content */
.btn-mt {
    margin-top: 1.5rem;
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
}

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

.btn-secondary:hover {
    background-color: #e7e5e4;
}

.btn-outline {
    background-color: var(--background);
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    background-color: var(--muted);
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-foreground);
}

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

.btn-ghost {
    background-color: transparent;
    border: none;
    color: var(--primary);
    padding: 0;
    height: auto;
    font-weight: 500;
}

.btn-ghost:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

.btn-ghost svg,
.btn-ghost i {
    transition: transform 0.2s ease;
}

.btn-ghost:hover svg,
.btn-ghost:hover i {
    transform: translateX(4px);
}

/* Header specific buttons */
.btn-header-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.5rem;
    padding: 0 1rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-header-outline:hover {
    background-color: var(--muted);
}

.btn-header-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.5rem;
    padding: 0 1rem;
    background-color: var(--primary);
    border: none;
    border-radius: var(--radius);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-header-primary:hover {
    background-color: var(--primary-hover);
}

/* Icons */
.icon-xs {
    width: 0.75rem;
    height: 0.75rem;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-md {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-feature {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--accent);
}

.icon-check {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 0.125rem;
}

/* =========================================
   Header
   ========================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.75rem 1rem;
}

@media (min-width: 640px) {
    .header-container {
        padding: 0.75rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0.75rem 2rem;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 3rem;
    width: auto;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--foreground);
}

.nav-link-primary {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
}

.nav-link-primary:hover {
    color: var(--primary-hover);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: var(--background);
    border-top: 1px solid var(--border);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    border-radius: var(--radius);
    transition: background-color 0.2s ease;
}

.mobile-nav-link:hover {
    background-color: var(--muted);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* =========================================
   WhatsApp Button
   ========================================= */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 1.75rem;
    height: 1.75rem;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--muted);
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(234, 88, 12, 0.08), transparent 60%);
}

.hero-container {
    position: relative;
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 6rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 6rem 2rem;
    }
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    background-color: rgba(234, 88, 12, 0.1);
    border: 1px solid rgba(234, 88, 12, 0.3);
    border-radius: 9999px;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    margin-bottom: 2rem;
    max-width: 36rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: auto;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.hero-image-wrapper {
    display: none;
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        display: block;
    }
}

.hero-image-container {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-2xl);
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* =========================================
   Stats Section
   ========================================= */
.stats-section {
    border-bottom: 1px solid var(--border);
    background-color: var(--background);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 3rem 1rem;
}

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

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

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* =========================================
   GeM Partner Section
   ========================================= */
.gem-partner-section {
    border-bottom: 1px solid var(--border);
    background-color: var(--background);
}

.gem-partner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    flex-wrap: wrap;
}

.gem-logo {
    height: 3.5rem;
    width: auto;
}

@media (min-width: 640px) {
    .gem-logo {
        height: 4rem;
    }
}

.gem-partner-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
}

@media (min-width: 640px) {
    .gem-partner-text {
        text-align: left;
    }
}

.gem-partner-title {
    display: block;
    font-weight: 600;
    color: var(--foreground);
}

/* =========================================
   Section Headers
   ========================================= */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.section-title {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    margin-top: 0.75rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted-foreground);
}

/* =========================================
   Services Section
   ========================================= */
.services-section {
    padding: 5rem 1rem;
}

@media (min-width: 640px) {
    .services-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-section {
        padding: 5rem 2rem;
    }
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-card {
    padding: 1.5rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.service-card:hover {
    border-color: rgba(234, 88, 12, 0.4);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    background-color: rgba(234, 88, 12, 0.1);
    border-radius: var(--radius);
    color: var(--primary);
    transition: all 0.2s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.service-title {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.service-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.section-cta {
    margin-top: 2.5rem;
    text-align: center;
}

/* =========================================
   About Section
   ========================================= */
.about-section {
    padding: 5rem 1rem;
    background-color: var(--muted);
}

@media (min-width: 640px) {
    .about-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 5rem 2rem;
    }
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-top: 0.5rem;
}

.about-text {
    margin-top: 1rem;
    color: var(--muted-foreground);
}

.about-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-card {
    padding: 1.25rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}

.about-card-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.about-card-title {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.about-card-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* =========================================
   Why Choose Section
   ========================================= */
.why-choose-section {
    padding: 5rem 1rem;
    background-color: var(--muted);
}

.why-choose-card {
    padding: 2rem;
    background-color: rgba(234, 88, 12, 0.05);
    border: 1px solid rgba(234, 88, 12, 0.2);
    border-radius: 1rem;
}

@media (min-width: 640px) {
    .why-choose-card {
        padding: 3rem;
    }
}

.why-choose-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-choose-item {
    text-align: center;
}

.why-choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    background-color: rgba(234, 88, 12, 0.1);
    border-radius: 50%;
}

.why-choose-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.why-choose-title {
    font-weight: 600;
    color: var(--foreground);
}

.why-choose-text {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* =========================================
   GeM Services Section
   ========================================= */
.gem-services-section {
    padding: 5rem 1rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: var(--background);
}

@media (min-width: 640px) {
    .gem-services-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .gem-services-section {
        padding: 5rem 2rem;
    }
}

.gem-services-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .gem-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.gem-services-content .section-label,
.gem-services-content .section-title {
    text-align: left;
}

.gem-services-intro {
    margin-top: 1rem;
    color: var(--muted-foreground);
}

.gem-services-block {
    margin-top: 1.5rem;
}

.gem-services-subtitle {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--foreground);
}

.gem-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gem-services-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
}

.roi-badge {
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
}

.roi-badge p {
    font-size: 0.875rem;
    font-weight: 500;
}

.roi-highlight {
    color: var(--accent);
}

.manpower-block {
    margin-bottom: 1.5rem;
}

.integrated-advantage {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.advantage-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}

.advantage-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    background-color: #4f46e5;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
}

.advantage-content h4 {
    font-weight: 600;
    color: var(--foreground);
}

.advantage-content p {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* =========================================
   How It Works Section
   ========================================= */
.how-it-works-section {
    padding: 5rem 1rem;
}

@media (min-width: 640px) {
    .how-it-works-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .how-it-works-section {
        padding: 5rem 2rem;
    }
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

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

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background-color: var(--primary);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.step-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.step-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
    padding: 5rem 1rem;
    background-color: var(--muted);
}

@media (min-width: 640px) {
    .testimonials-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-section {
        padding: 5rem 2rem;
    }
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

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

.testimonial-card {
    padding: 1.5rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    fill: var(--primary);
    color: var(--primary);
}

.testimonial-text {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-style: italic;
    color: var(--muted-foreground);
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    padding: 5rem 1rem;
}

@media (min-width: 640px) {
    .faq-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 5rem 2rem;
    }
}

.faq-container {
    max-width: 42rem;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    font-weight: 500;
    text-align: left;
    color: var(--foreground);
    transition: color 0.2s ease;
}

.faq-question:hover {
    text-decoration: underline;
}

.faq-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    background-color: var(--primary);
}

.cta-container {
    padding: 4rem 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .cta-container {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-container {
        padding: 4rem 2rem;
    }
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    margin-top: 1rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--foreground);
    color: var(--background);
    border-top: 1px solid var(--border);
}

.footer .container {
    padding: 3rem 1rem;
}

@media (min-width: 640px) {
    .footer .container {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer .container {
        padding: 3rem 2rem;
    }
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: auto;
    max-height: 3.5rem;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: var(--background);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: var(--background);
}

.footer-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-logo {
    margin-right: auto;
}

.hero-actions .btn {
    padding: 0.75rem 2rem;
    height: auto;
    min-height: 2.75rem;
}
/* =========================================
   Animations
   ========================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Focus States for Accessibility */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-btn,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
}

/* =========================================
   Legal Pages (Terms & Privacy)
   ========================================= */
.legal-page-section {
    padding: 4rem 1rem;
    background-color: var(--background);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--foreground);
}

/* ... existing legal page styles ... */

.legal-content .section-title {
    text-align: left;
    margin-bottom: 0.25rem;
}

.legal-content .text-muted {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.legal-content .divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.legal-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

.legal-content li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.legal-content strong {
    color: var(--foreground);
}

/* NEW LINK STYLE */
.link-primary-underline {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.link-primary-underline:hover {
    color: var(--primary-hover);
}

@media (min-width: 640px) {
    .legal-page-section {
        padding: 5rem 1.5rem;
    }
}