/* ============================================
   RAIPUR REPAIR SERVICE - MAIN STYLESHEET
   Professional Appliance Repair Services
   Mobile-First Responsive Design
   ============================================ */

/* CSS Variables for consistent theming */
:root {
    /* Primary Colors */
    --primary-blue: #1e40af;
    --primary-blue-dark: #1e3a8a;
    --primary-blue-light: #3b82f6;
    
    /* Secondary Colors */
    --secondary-orange: #f97316;
    --secondary-orange-dark: #ea580c;
    --secondary-orange-light: #fb923c;
    
    /* Neutral Colors */
    --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;
    
    /* Success/Trust Colors */
    --green-500: #22c55e;
    --green-600: #16a34a;
    
    /* Warning Colors */
    --yellow-500: #eab308;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --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);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Font Families */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', var(--font-primary);
}

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.25rem); }

p {
    margin-bottom: var(--spacing-md);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.header-top {
    background: var(--primary-blue);
    color: white;
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.header-top a {
    color: white;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.header-top a:hover {
    color: var(--secondary-orange-light);
}

.header-main {
    padding: var(--spacing-md) 0;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-500);
}

/* Navigation */
.nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: var(--spacing-xl);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: var(--spacing-sm) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.nav-dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.nav-dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary-blue);
}

.nav-dropdown-item svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-phone {
    display: none;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }
}

.header-phone svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-sm);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    padding-top: 120px;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    padding: var(--spacing-lg);
}

.mobile-nav-link {
    display: block;
    padding: var(--spacing-md);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-link:hover {
    color: var(--primary-blue);
}

.mobile-services-list {
    padding-left: var(--spacing-lg);
}

.mobile-services-list a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--gray-600);
    font-size: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary-orange);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-orange-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-blue);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
}

.btn-xl {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    color: white;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--secondary-orange);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.hero-title span {
    color: var(--secondary-orange);
}

.hero-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: auto;
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .hero-features {
        justify-content: flex-start;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    color: var(--green-500);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Hero Form */
.hero-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-xl);
}

.hero-form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.hero-form-header h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.hero-form-header p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: var(--spacing-xs);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.form-consent input {
    margin-top: 3px;
}

.form-consent a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
    background: white;
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-badges-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    color: var(--green-500);
}

.trust-badge strong {
    color: var(--gray-900);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.section-badge {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-blue);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-description {
    color: var(--gray-600);
    font-size: 1.0625rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@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 {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--secondary-orange);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card-content {
    padding: var(--spacing-lg);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
}

.service-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.service-card-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.service-card-feature svg {
    width: 14px;
    height: 14px;
    color: var(--green-500);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9375rem;
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-choose-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@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-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    background: var(--gray-50);
    transition: all var(--transition-normal);
}

.why-choose-card:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-5px);
}

.why-choose-card:hover h4,
.why-choose-card:hover p {
    color: white;
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.why-choose-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
}

.why-choose-card h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.why-choose-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ============================================
   BRANDS SECTION
   ============================================ */

.brands-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-100);
}

.brands-title {
    text-align: center;
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-lg);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
}

.brand-logo {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--transition-normal);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: var(--yellow-500);
    fill: var(--yellow-500);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
}

.cta-phone svg {
    width: 32px;
    height: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    cursor: pointer;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding-bottom: var(--spacing-lg);
    color: var(--gray-600);
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */

.disclaimer-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.disclaimer-title svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-orange);
}

.disclaimer-text {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.disclaimer-text a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--gray-900);
    color: white;
    padding-top: var(--spacing-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-description {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-blue);
    color: white;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-link {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: var(--spacing-lg) 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-legal-link {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal-link:hover {
    color: white;
}

/* Company Registration Info */
.footer-registration {
    background: var(--gray-800);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-lg);
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.footer-registration p {
    margin-bottom: var(--spacing-xs);
}

.footer-registration strong {
    color: var(--gray-300);
}

/* ============================================
   FIXED CALL BUTTON
   ============================================ */

.fixed-call-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-orange), var(--secondary-orange-dark));
    color: white;
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    z-index: 100;
    animation: pulse 2s infinite;
    width: calc(100% - 40px);
    max-width: 400px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(249, 115, 22, 0.6);
    }
}

.fixed-call-btn svg {
    width: 28px;
    height: 28px;
    animation: ring 1.5s ease-in-out infinite;
}

/* Responsive fixed call button */
@media (min-width: 768px) {
    .fixed-call-btn {
        width: auto;
        max-width: none;
        padding: var(--spacing-md) var(--spacing-2xl);
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* ============================================
   SERVICE LANDING PAGE SPECIFIC
   ============================================ */

.service-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.service-hero-text {
    color: white;
}

.service-hero-text h1 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.service-hero-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.service-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--green-500);
}

/* Service Details Section */
.service-details-section {
    padding: var(--spacing-3xl) 0;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

@media (min-width: 1024px) {
    .service-details-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.service-main-content h2 {
    margin-bottom: var(--spacing-md);
}

.service-main-content h3 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.service-main-content ul {
    list-style: disc;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.service-main-content li {
    margin-bottom: var(--spacing-sm);
    color: var(--gray-600);
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 140px;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-lg);
}

.sidebar-card h4 {
    margin-bottom: var(--spacing-md);
}

.price-display {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-xs);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-note {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Process Steps */
.process-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.process-step h4 {
    margin-bottom: var(--spacing-sm);
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: var(--spacing-md); }
.mb-1 { margin-bottom: var(--spacing-md); }
.mt-2 { margin-top: var(--spacing-xl); }
.mb-2 { margin-bottom: var(--spacing-xl); }

.hidden { display: none; }

@media (max-width: 767px) {
    .hide-mobile { display: none; }
}

@media (min-width: 768px) {
    .hide-desktop { display: none; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS
   ============================================ */

/* Mobile-specific improvements */
@media (max-width: 480px) {
    /* Smaller text on very small screens */
    body {
        font-size: 15px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.125rem; }
    
    /* Container padding */
    .container {
        padding: 0 0.75rem;
    }
    
    /* Header adjustments */
    .header-top {
        font-size: 0.75rem;
        padding: 0.375rem 0;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .header-main {
        padding: 0.5rem 0;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.625rem;
    }
    
    /* Hero section mobile */
    .hero {
        padding-top: 130px;
        min-height: auto;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hero-features {
        gap: 0.75rem;
    }
    
    .hero-feature {
        font-size: 0.8125rem;
    }
    
    /* Hero form/CTA wrapper mobile */
    .hero-form-wrapper {
        padding: 1.25rem;
        border-radius: 0.75rem;
        margin: 0 -0.5rem;
    }
    
    .hero-form-wrapper h2 {
        font-size: 1.25rem !important;
    }
    
    .hero-form-wrapper .btn-lg {
        font-size: 1.25rem !important;
        padding: 0.875rem 1.5rem !important;
    }
    
    /* Service hero mobile */
    .service-hero {
        padding-top: 130px;
        min-height: auto;
        padding-bottom: 2rem;
    }
    
    .service-hero-text h1 {
        font-size: 1.375rem;
    }
    
    .service-hero-text p {
        font-size: 0.9375rem;
    }
    
    .service-features-list {
        gap: 0.5rem;
    }
    
    .service-feature-item {
        font-size: 0.875rem;
    }
    
    .service-feature-item svg {
        width: 16px;
        height: 16px;
    }
    
    /* Trust badges mobile */
    .trust-badges {
        padding: 1rem 0;
    }
    
    .trust-badges-content {
        gap: 0.75rem;
    }
    
    .trust-badge {
        font-size: 0.75rem;
        flex: 0 0 calc(50% - 0.5rem);
        justify-content: center;
    }
    
    .trust-badge svg {
        width: 18px;
        height: 18px;
    }
    
    /* Services section mobile */
    .services-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .section-description {
        font-size: 0.9375rem;
    }
    
    .service-card-content {
        padding: 1rem;
    }
    
    .service-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.0625rem;
    }
    
    .service-card p {
        font-size: 0.875rem;
    }
    
    /* Why choose section mobile */
    .why-choose-section {
        padding: 2rem 0;
    }
    
    .why-choose-card {
        padding: 1.25rem;
    }
    
    .why-choose-icon {
        width: 56px;
        height: 56px;
    }
    
    .why-choose-icon svg {
        width: 26px;
        height: 26px;
    }
    
    /* Testimonials mobile */
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.9375rem;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-phone {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-phone svg {
        width: 28px;
        height: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Service details mobile */
    .service-details-section {
        padding: 2rem 0;
    }
    
    .service-main-content h2 {
        font-size: 1.25rem;
    }
    
    .service-main-content h3 {
        font-size: 1.0625rem;
        margin-top: 1.5rem;
    }
    
    .service-main-content ul {
        padding-left: 1.25rem;
    }
    
    .service-main-content li {
        font-size: 0.9375rem;
    }
    
    /* Sidebar mobile */
    .service-sidebar {
        position: static;
    }
    
    .sidebar-card {
        padding: 1.25rem;
    }
    
    .price-value {
        font-size: 1.75rem;
    }
    
    /* Process section mobile */
    .process-section {
        padding: 2rem 0;
    }
    
    .process-step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .process-step h4 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.8125rem;
    }
    
    /* SEO Keywords section mobile */
    section[style*="padding: 3rem 0"] {
        padding: 1.5rem 0 !important;
    }
    
    section[style*="padding: 3rem 0"] h2 {
        font-size: 1.125rem !important;
        margin-bottom: 1rem !important;
    }
    
    section[style*="padding: 3rem 0"] span {
        font-size: 0.75rem !important;
        padding: 0.375rem 0.75rem !important;
    }
    
    /* Disclaimer mobile */
    .disclaimer-section {
        padding: 1.25rem 0;
    }
    
    .disclaimer-title {
        font-size: 0.875rem;
    }
    
    .disclaimer-text {
        font-size: 0.75rem;
    }
    
    /* Footer mobile */
    .footer {
        padding-top: 2rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    
    .footer-logo-text {
        font-size: 1.0625rem;
    }
    
    .footer-title {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.875rem;
    }
    
    .footer-contact-item {
        font-size: 0.875rem;
    }
    
    .footer-registration {
        padding: 0.75rem;
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
    
    .footer-legal-link {
        font-size: 0.75rem;
    }
    
    /* Fixed call button mobile */
    .fixed-call-btn {
        bottom: 15px;
        padding: 0.875rem 1.5rem;
        font-size: 1.125rem;
        border-radius: 2rem;
        width: calc(100% - 30px);
        max-width: 350px;
    }
    
    .fixed-call-btn svg {
        width: 24px;
        height: 24px;
    }
    
    /* Buttons mobile */
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .btn-xl {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Medium mobile devices (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .service-hero {
        padding-top: 140px;
    }
    
    .hero-form-wrapper {
        padding: 1.5rem;
    }
    
    .trust-badge {
        flex: 0 0 auto;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
}

/* Tablet devices (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto var(--spacing-xl);
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-hero-text {
        text-align: center;
    }
    
    .service-features-list {
        align-items: center;
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sidebar-card {
        margin-bottom: 0;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-link,
    .footer-link,
    .mobile-nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .btn {
        min-height: 44px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover {
        transform: none;
    }
    
    .why-choose-card:hover {
        background: var(--gray-50);
        color: inherit;
        transform: none;
    }
    
    .why-choose-card:hover h4,
    .why-choose-card:hover p {
        color: inherit;
    }
    
    /* Active states for touch */
    .btn:active {
        transform: scale(0.98);
    }
    
    .service-card:active {
        transform: scale(0.99);
    }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 130px 0 2rem;
    }
    
    .service-hero {
        min-height: auto;
        padding: 130px 0 2rem;
    }
    
    .fixed-call-btn {
        bottom: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon,
    .service-card-icon,
    .why-choose-icon,
    .footer-logo-icon {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fixed-call-btn {
        animation: none;
    }
    
    .fixed-call-btn svg {
        animation: none;
    }
}

/* ============================================
   BRAND PAGE STYLES
   ============================================ */

/* Breadcrumb */
.brand-breadcrumb {
    background: var(--gray-50);
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--gray-200);
    margin-top: 110px;
}

.brand-breadcrumb nav {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.brand-breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.brand-breadcrumb a:hover {
    color: var(--primary-blue-dark);
}

.brand-breadcrumb .separator {
    margin: 0 0.5rem;
    color: var(--gray-400);
}

.brand-breadcrumb .current {
    color: var(--gray-700);
    font-weight: 600;
}

/* Page Title */
.brand-page-title {
    background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
    padding: 2.5rem 0;
    text-align: center;
}

.brand-page-title h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.3;
}

/* Main Content */
.brand-content {
    padding: 2.5rem 0;
}

.brand-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.brand-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

.brand-content-image {
    text-align: center;
    margin: 1.5rem 0;
}

.brand-content-image img {
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.brand-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

/* Service Listings */
.brand-services-list {
    margin: 1.5rem 0;
}

.brand-services-list p {
    margin: 0.35rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.25rem 0;
}

/* FAQ Accordion */
.brand-faq {
    padding: 2.5rem 0;
    background: white;
}

.brand-faq h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: white;
    transition: box-shadow var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: var(--gray-50);
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    transition: background var(--transition-fast);
    gap: 1rem;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Need More Help CTA */
.brand-cta {
    padding: 2.5rem 0;
    background: var(--gray-50);
    text-align: center;
}

.brand-cta h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.brand-cta p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

.brand-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.brand-cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-blue);
}

.brand-cta-phone svg {
    color: var(--primary-blue);
}

/* ============================================
   BRAND PAGE MOBILE RESPONSIVENESS
   ============================================ */

@media (max-width: 480px) {
    .brand-breadcrumb {
        margin-top: 95px;
        padding: 0.625rem 0;
    }

    .brand-breadcrumb nav {
        font-size: 0.8rem;
    }

    .brand-page-title {
        padding: 1.5rem 0;
    }

    .brand-page-title h1 {
        font-size: 1.4rem;
    }

    .brand-content {
        padding: 1.5rem 0;
    }

    .brand-content h2 {
        font-size: 1.2rem;
    }

    .brand-intro {
        font-size: 0.9rem;
    }

    .brand-services-list p {
        font-size: 0.875rem;
    }

    .brand-faq {
        padding: 1.5rem 0;
    }

    .brand-faq h2 {
        font-size: 1.2rem;
    }

    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .faq-answer-inner {
        padding: 0 1rem 0.875rem;
        font-size: 0.8125rem;
    }

    .brand-cta {
        padding: 1.5rem 0;
    }

    .brand-cta h2 {
        font-size: 1.2rem;
    }

    .brand-cta p {
        font-size: 0.9rem;
    }

    .brand-cta-phone {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .brand-breadcrumb {
        margin-top: 100px;
    }

    .brand-page-title h1 {
        font-size: 1.6rem;
    }

    .brand-content h2 {
        font-size: 1.35rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .brand-breadcrumb {
        margin-top: 105px;
    }

    .brand-page-title h1 {
        font-size: 1.8rem;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Users can enable this if needed */
}

/* Print styles */
@media print {
    .header,
    .fixed-call-btn,
    .mobile-menu,
    .cta-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: black;
        background: white;
    }
    
    .hero,
    .service-hero {
        background: none;
        color: black;
        padding-top: 0;
        min-height: auto;
    }
    
    .hero-text,
    .service-hero-text {
        color: black;
    }
    
    .hero-title,
    .service-hero-text h1 {
        color: black;
    }
}

/* ========================================================= */
/* ====== NEW PREMIUM LAYOUT STYLES (Overrides) ====== */
/* ========================================================= */

:root {
    --primary-blue: #0f172a;
    /* Slate 900 */
    --accent-blue: #2563eb;
    /* Blue 600 */
    --accent-vibrant: #3b82f6;
    /* Blue 500 */
    --accent-orange: #f97316;
    /* Orange 500 */
    --complement-teal: #06b6d4;
    /* Cyan 500 */
    --success-green: #10b981;
    /* Emerald 500 */
    --text-dark: #1e293b;
    /* Slate 800 */
    --text-gray: #64748b;
    /* Slate 500 */
    --bg-light: #f1f5f9;
    /* Slate 100 */
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    /* Slate 200 */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 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 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 25px 50px -12px rgba(15, 23, 42, 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Enhancements */
h1, h2, h3, h4 {
    color: var(--primary-blue);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Premium Top Bar */
.top-bar {
    background: var(--primary-blue);
    color: #e2e8f0;
    padding: 8px 0;
    font-size: 0.825rem;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-content div {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Modern Sticky Header with Glassmorphism */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo span {
    background: linear-gradient(135deg, var(--accent-orange), #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Impactful Hero Section */
.hero {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    margin-bottom: 40px;
    max-width: 90%;
    color: #cbd5e1;
}

.hero-benefits {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-bottom: 40px; 
    font-weight: 700; 
    color: white;
}

.independent-notice {
    border-left: 4px solid var(--accent-orange); 
    padding-left: 20px; 
    background: rgba(255, 255, 255, 0.1); 
    padding-top: 15px; 
    padding-bottom: 15px; 
    border-radius: 0 8px 8px 0;
}

.independent-notice p {
    font-size: 0.9rem; 
    color: #e2e8f0; 
    margin-bottom: 0; 
    line-height: 1.4;
}

.hero-benefits {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-bottom: 40px; 
    font-weight: 700; 
    color: white;
}

.independent-notice {
    border-left: 4px solid var(--accent-orange); 
    padding-left: 20px; 
    background: rgba(255, 255, 255, 0.1); 
    padding-top: 15px; 
    padding-bottom: 15px; 
    border-radius: 0 8px 8px 0;
}

.independent-notice p {
    font-size: 0.9rem; 
    color: #e2e8f0; 
    margin-bottom: 0; 
    line-height: 1.4;
}

/* Professional Form Card */
.form-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.form-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #f8fafc;
}

.form-input:focus {
    background: white;
    border-color: var(--accent-vibrant);
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Buttons with Animations */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), #ea580c);
    color: white;
    width: 100%;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.4);
}

.btn-call {
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Features Grid */
.section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-vibrant);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 32px;
    display: inline-block;
    filter: drop-shadow(0 10px 10px rgba(59, 130, 246, 0.1));
}

/* Stats Row - Glassmorphism variant */
.stats-row {
    background: var(--primary-blue);
    position: relative;
    padding: 80px 0;
    color: white;
    overflow: hidden;
}

.stats-row::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 8px;
    color: var(--accent-orange);
    background: linear-gradient(135deg, #fbbf24, var(--accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: #94a3b8;
    font-weight: 500;
}

/* Brands Section Styling */
.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.brand-item {
    font-weight: 900;
    font-size: 1.5rem;
    color: #cbd5e1;
    transition: var(--transition);
    cursor: default;
}

.brand-item:hover {
    color: var(--accent-blue);
    transform: scale(1.1);
}

/* Footer Overhaul */
.footer {
    background: #020617;
    color: #f1f5f9;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 28px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links li {
    list-style: none;
    margin-bottom: 16px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

/* Sticky Mobile Footer - Fixed for better UX */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 24px;
    display: none;
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}

/* Image Styling */
.feature-img-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #e2e8f0;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

.hero-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--glass-border);
}

/* 📱 Mobile Responsiveness Overrides */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .badge-row {
        justify-content: center;
    }

    .form-card {
        transform: none;
        max-width: 550px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .sticky-footer {
        display: block;
    }

    body {
        padding-bottom: 90px;
    }

    .stats-row .grid-3 {
        gap: 48px;
    }

    .top-bar {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .badge-row {
        flex-wrap: wrap;
    }
}


.wc-logo {
    background-color: var(--accent-vibrant, #2563eb);
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 0.2rem 0.6rem;
    border-radius: 0.5rem;
    margin-right: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero {
    padding: 60px 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}
.badge-row { margin-bottom: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,0.1); padding: 5px 12px; border-radius: 20px; color: white; font-size: 0.9rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); }
.hero-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 30px 0; color: white; font-weight: 500; }
.independent-notice { background: rgba(0,0,0,0.5); border-left: 4px solid #facc15; padding: 15px; color: #cbd5e1; font-size: 0.9rem; border-radius: 4px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.stat-item { text-align: center; background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.stat-item h3 { font-size: 2.5rem; color: #1e293b; margin-bottom: 10px; }
.stat-item p { color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: #1e293b; margin-bottom: 15px; }
.section-title p { color: #64748b; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.feature-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: transform 0.3s; padding: 30px; }
.feature-card:hover { transform: translateY(-5px); }
.feature-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.feature-card h3 { font-size: 1.25rem; color: #1e293b; margin-bottom: 15px; }
.feature-card p { color: #64748b; line-height: 1.6; }
.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px) { .brand-grid { grid-template-columns: repeat(4, 1fr); } }
.brand-item { background: white; padding: 20px; text-align: center; font-weight: 700; color: #475569; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: white; }


/* Desktop Navigation Menu */
.desktop-menu {
    display: none;
    list-style: none;
    gap: 20px;
    align-items: center;
}
.desktop-menu a {
    text-decoration: none;
    color: var(--text-dark, #1e293b);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.desktop-menu a:hover {
    color: var(--accent-orange, #f97316);
}

@media (min-width: 992px) {
    .desktop-menu {
        display: flex;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: 15px;
}
.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark, #1e293b);
    border-radius: 3px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}
.mobile-menu-overlay.active {
    transform: translateY(0);
}
.mobile-menu-links {
    list-style: none;
    text-align: center;
    width: 100%;
}
.mobile-menu-links li {
    margin: 20px 0;
}
.mobile-menu-links a {
    text-decoration: none;
    color: var(--text-dark, #1e293b);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}
.mobile-menu-links a.active {
    color: var(--accent-orange, #f97316);
}
.header-actions {
    display: flex;
    align-items: center;
}

@media (max-width: 500px) { .hide-mobile { display: none; } }
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 30px !important;
        height: 22px !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }
    .mobile-menu-toggle span {
        background-color: #0f172a !important; 
        height: 3px !important;
        width: 100% !important;
        display: block !important;
        border-radius: 3px !important;
    }
}


/* Premium Nav Bar Overrides */
.header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important;
    padding: 12px 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1005 !important;
}

.desktop-menu {
    gap: 32px !important;
}

.desktop-menu a {
    color: #334155 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    position: relative;
    padding: 5px 0;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.desktop-menu a:hover {
    color: #2563eb !important;
}

.desktop-menu a:hover::after {
    width: 100%;
}

.btn-call-premium {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    margin-left: 30px !important;
    display: inline-block;
    text-decoration: none;
}

.btn-call-premium:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 20px -3px rgba(37, 99, 235, 0.4) !important;
}


/* Mobile Header Layout Fixes */
@media (max-width: 500px) {
    .btn-call-premium {
        padding: 8px 12px !important;
        margin-left: 10px !important;
        font-size: 1rem !important;
    }
    .mobile-menu-toggle {
        margin-left: 10px !important;
        flex-shrink: 0 !important;
    }
    .logo {
        font-size: 1rem !important;
    }
    .logo .wc-logo {
        font-size: 1rem !important;
        padding: 0.2rem 0.4rem !important;
    }
    .logo > div:last-child {
        font-size: 1.1rem !important;
    }
}


/* Dropdown Menus */
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1005;
    list-style: none;
    border: 1px solid rgba(0,0,0,0.05);
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    margin: 0;
}
.dropdown-menu a {
    display: block !important;
    padding: 8px 20px !important;
    color: #475569 !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
}
.dropdown-menu a:hover {
    background: #f8fafc;
    color: #2563eb !important;
}
.dropdown-menu a::after {
    display: none !important;
}
.view-more-btn {
    margin-top: 5px;
    border-top: 1px solid #e2e8f0;
    padding-top: 8px !important;
    color: #f97316 !important;
    font-weight: 700 !important;
}

/* Mobile Sub-menu */
.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
    display: none;
}
.mobile-dropdown.active .mobile-submenu {
    display: block;
}
.mobile-submenu a {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    padding: 8px 0;
}
.mobile-dropdown-btn {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-align: center;
    padding: 0;
    background: none;
    border: none;
    color: var(--text-dark, #1e293b) !important;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}


/* Mobile Action Bar */
.mobile-action-bar {
    display: none; /* Hidden by default (on desktop) */
}

@media (max-width: 768px) {
    .fixed-call-btn {
        display: none !important; /* Hide the old floating button if it still exists */
    }
    
    body {
        padding-bottom: 60px; /* Make sure the bar doesn't overlap footer content */
    }

    .mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 1002;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    
    .mobile-action-bar .action-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-action-bar .call-btn {
        background-color: var(--accent-orange, #f97316);
    }
    
    .mobile-action-bar .wa-btn {
        background-color: #25D366; /* Official WhatsApp Green */
    }
    
    .mobile-action-bar .icon {
        margin-right: 8px;
        font-size: 1.3rem;
    }
}
