/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Professional Indian Market Palette */
    --primary-blue: #1e40af;
    --primary-blue-dark: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-hero: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.section-tag {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav {
    width: 100%;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon-link {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.logo-icon {
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.footer-logo .logo-icon {
    width: 200px;
    height: 75px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    color: var(--gray-900);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-left: 8px;
}

.logo-text-footer {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-link.active {
    color: var(--primary-blue);
    transition: var(--transition);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
    text-decoration-color: var(--accent-orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-login-btn {
    background: transparent;
    color: var(--gray-700);
    border: none;
    padding: 8px 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    /* display: inline-block; */
}

.nav-login-btn:hover {
    color: var(--primary-blue);
}

.btn.btn-primary {
    background: linear-gradient(90deg,#ff7a00,#ff9900);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.btn.btn-primary:hover {
    background: linear-gradient(90deg,#ff9900,#ff7a00);
}

/* Hamburger (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background: var(--gray-700);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Privacy Policy SECTION ===== */

.privacy-policy {
    background: #f9f9f9; /* light background for contrast */
    padding: 85px 20px !important;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.privacy-policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.privacy-policy-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.privacy-policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-policy-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-policy-content ul li {
    margin-bottom: 10px;
}

.privacy-policy-content a {
    color: #007bff;
    text-decoration: none;
}

.privacy-policy-content a:hover {
    text-decoration: underline;
}

/* ===== TERMS OF SERVICE SECTION ===== */

.terms-service {
    background: #f9f9f9;
    padding: 85px 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.terms-service-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-service-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.terms-service-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-service-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.terms-service-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-service-content ul li {
    margin-bottom: 10px;
}

.terms-service-content a {
    color: #007bff;
    text-decoration: none;
}

.terms-service-content a:hover {
    text-decoration: underline;
}

/* ===== COOKIE POLICY SECTION ===== */

.cookie-policy {
    background: #f9f9f9;
    padding: 85px 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.cookie-policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cookie-policy-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cookie-policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.cookie-policy-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.cookie-policy-content ul li {
    margin-bottom: 10px;
}

.cookie-policy-content a {
    color: #007bff;
    text-decoration: none;
}

.cookie-policy-content a:hover {
    text-decoration: underline;
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23f97316" stop-opacity="0.1"/><stop offset="100%" stop-color="%23f97316" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="20" r="30" fill="url(%23a)"/><circle cx="80" cy="80" r="40" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-text {
    font-weight: 500;
}

.contact-phone {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-phone:hover {
    color: var(--accent-orange-light);
}

/* ===== CLIENTS TESTIMONIAL SLIDER SECTION ===== */

.clients {
    background: var(--gray-50);
    padding: 3rem 0;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.clients-title {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-weight: 500;
}

.slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.client-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px dashed var(--gray-300);
    text-align: center;
}

.client-card img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto 1rem;
    border-radius: 8px;
}

.client-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover:not(:disabled) {
    background: #f3f4f6;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover {
    background: #9ca3af;
}

.slider-dot.active {
    background: var(--gray-600);
    width: 24px;
    border-radius: 5px;
}

/* Tablet */
@media (max-width: 768px) {
    .client-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .slider {
        max-width: 600px;
        padding: 0 50px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .client-card {
        flex: 0 0 100%;
    }
    
    .slider {
        padding: 0 50px;
    }

    .clients-container {
        padding: 0 1rem;
    }
}

/* ===== END OF TESTIMONIAL SLIDER SECTION ===== */

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
    padding: var(--section-padding);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.about .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
}

.about .section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 0;
    
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.about-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-feature .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 1.5rem;
    background: var(--gradient-orange);
    color: var(--white);
}

.about-feature .feature-content h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.about-feature .feature-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

.about-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--gray-50);
    padding: var(--section-padding);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header .section-title {
    margin-bottom: 1rem;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 1.5rem;
    background: var(--gradient-orange);
    color: var(--white);
    flex-shrink: 0;
}

.feature-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.2;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

/* ===== STATISTICS SECTION ===== */
.statistics {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0;
}

.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
}


/* ===== SUPPORT SECTION ===== */
.support {
    background: var(--gray-50);
    padding: 4rem 0;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.support-content {
    margin-bottom: 3rem;
}

.support-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.support-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.support-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.support-text {
    font-weight: 600;
    color: var(--gray-700);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--white);
    padding: var(--section-padding);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header .section-title {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.334rem);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-quote {
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover:not(:disabled) {
    background: var(--gray-100);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover {
    background: #9ca3af;
}

.slider-dot.active {
    background: var(--gray-600);
    width: 24px;
    border-radius: 5px;
}

/* Tablet */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .slider {
        max-width: 600px;
        padding: 0 50px;
    }

    .testimonials-header .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .slider {
        padding: 0 50px;
    }

    .testimonials-container {
        padding: 0 1rem;
    }

    .testimonials-header .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-header {
        margin-bottom: 2rem;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--gray-50);
    padding: var(--section-padding);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header .section-title {
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--gradient-orange);
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.contact-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 2rem 0 1rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.25rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.social-links a:hover {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

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

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
}

.footer-section ul li a.active {
    font-weight: 600;
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-700);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.8rem;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles */
@media (max-width: 1024px) {

    .nav-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about .section-title {
        font-size: 2.5rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* ===== Privacy Policy SECTION ===== */
    
    .privacy-policy {
        padding: 90px 20px !important;
    }
    
    .privacy-policy-content h1 {
        font-size: 2.2rem;
    }
    
    .privacy-policy-content h2 {
        font-size: 1.4rem;
    }
    
    .privacy-policy-content p,
    .privacy-policy-content ul li {
        font-size: 0.98rem;
    }
    
    /* ===== TERMS OF SERVICE SECTION ===== */
    .terms-service {
        padding: 80px 20px;
    }

    .terms-service-content h1 {
        font-size: 2.2rem;
    }

    .terms-service-content h2 {
        font-size: 1.4rem;
    }

    .terms-service-content p,
    .terms-service-content ul li {
        font-size: 0.98rem;
    }

    /* ===== COOKIE POLICY SECTION ===== */

    .cookie-policy {
        padding: 80px 20px;
    }

    .cookie-policy-content h1 {
        font-size: 2.2rem;
    }

    .cookie-policy-content h2 {
        font-size: 1.4rem;
    }

    .cookie-policy-content p,
    .cookie-policy-content ul li {
        font-size: 0.98rem;
    }

}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }
    
    .nav-menu,
    .nav-actions {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        display: none;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active,
    .nav-actions.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    
    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    
    .support-options {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .logo-placeholder {
        min-width: 120px;
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    /* ===== Privacy Policy SECTION ===== */
    
    .privacy-policy {
        padding: 90px 15px !important;
    }
    
    .privacy-policy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-policy-content h2 {
        font-size: 1.3rem;
    }
    
    .privacy-policy-content p,
    .privacy-policy-content ul li {
        font-size: 0.95rem;
    }

    /* ===== TERMS OF SERVICE SECTION ===== */

    .terms-service {
        padding: 80px 15px;
    }

    .terms-service-content h1 {
        font-size: 2rem;
    }

    .terms-service-content h2 {
        font-size: 1.3rem;
    }

    .terms-service-content p,
    .terms-service-content ul li {
        font-size: 0.95rem;
    }

    /* ===== COOKIE POLICY SECTION ===== */

    .cookie-policy {
        padding: 80px 15px;
    }

    .cookie-policy-content h1 {
        font-size: 2rem;
    }

    .cookie-policy-content h2 {
        font-size: 1.3rem;
    }

    .cookie-policy-content p,
    .cookie-policy-content ul li {
        font-size: 0.95rem;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-logos {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about .section-title {
        font-size: 2.5rem;
    }
    
    .about .section-description {
        font-size: 1.125rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* ===== Privacy Policy SECTION ===== */

    .privacy-policy {
        padding: 80px 10px !important;
    }

    .privacy-policy-content h1 {
        font-size: 1.8rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.1rem;
    }

    .privacy-policy-content p,
    .privacy-policy-content ul li {
        font-size: 0.9rem;
    }

    /* ===== TERMS OF SERVICE SECTION ===== */

    .terms-service {
        padding: 80px 10px;
    }

    .terms-service-content h1 {
        font-size: 1.8rem;
    }

    .terms-service-content h2 {
        font-size: 1.1rem;
    }

    .terms-service-content p,
    .terms-service-content ul li {
        font-size: 0.9rem;
    }

    /* ===== COOKIE POLICY SECTION ===== */

    .cookie-policy {
        padding: 80px 10px;
    }

    .cookie-policy-content h1 {
        font-size: 1.8rem;
    }

    .cookie-policy-content h2 {
        font-size: 1.1rem;
    }

    .cookie-policy-content p,
    .cookie-policy-content ul li {
        font-size: 0.9rem;
    }

}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for better accessibility */
.btn:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.nav-link:focus {
    color: var(--primary-blue);
    transition: var(--transition);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    text-decoration-color: var(--accent-orange);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gray-600: #000000;
        --gray-500: #000000;
    }
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .hero-actions,
    .contact-form,
    .footer {
        display: none;
    }
    
    .hero {
        background: none;
        color: #000;
    }
    
    .section {
        page-break-inside: avoid;
    }
}