/* ============================================
   AZHAR & ASSOCIATES - MAIN STYLESHEET
   Professional Finance & Legal Services Website
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Professional Palette */
    --color-navy: #1A2F4B;
    --color-teal: #00796B;
    --color-gold: #D4AF37;
    --color-warm-white: #FAFAFA;
    --color-light-gray: #E8EDF2;
    --color-dark-charcoal: #2C3E50;
    --color-success: #27AE60;
    --color-alert: #E74C3C;
    --color-info: #3498DB;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-navy) 0%, var(--color-teal) 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E5B1 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 47, 75, 0.95) 0%, rgba(0, 121, 107, 0.85) 100%);
    
    /* Typography */
    --font-display: 'Libre Baskerville', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 47, 75, 0.08);
    --shadow-md: 0 4px 24px rgba(26, 47, 75, 0.12);
    --shadow-lg: 0 8px 48px rgba(26, 47, 75, 0.16);
    --shadow-xl: 0 16px 64px rgba(26, 47, 75, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark-charcoal);
    background-color: var(--color-warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

ul {
    list-style: none;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

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

.btn-outline {
    background: transparent;
    border-color: var(--color-teal);
    color: var(--color-teal);
}

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

.btn-white {
    background: white;
    color: var(--color-navy);
}

.btn-white:hover {
    background: var(--color-light-gray);
}

.btn-outline-white {
    background: transparent;
    border-color: white;
    color: white;
}

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

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
    min-height: 72px;
    overflow: visible; /* allow dropdown to show outside; no scrollbar on nav */
}

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

.header .container {
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
    flex-wrap: nowrap;
    min-height: 72px;
    overflow: visible;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
    overflow: visible;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: var(--transition-base);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
    overflow: visible; /* dropdown must show outside nav bar */
}

.nav-link {
    font-weight: 500;
    color: var(--color-dark-charcoal);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-dropdown {
    position: relative;
    overflow: visible; /* dropdown must paint outside */
}

.nav-dropdown .arrow {
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

/* Desktop: dropdown appears below the nav bar, outside header – no scroll inside nav */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 1rem 0;
    min-width: 250px;
    max-height: none;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    z-index: 1001; /* above header so it shows over page content */
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-dark-charcoal);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--color-light-gray);
    color: var(--color-teal);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    background: var(--color-light-gray);
    padding: 0.25rem;
    border-radius: var(--radius-sm);
}

.lang-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark-charcoal);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.lang-btn.active,
.lang-btn:hover {
    background: white;
    color: var(--color-teal);
}

.phone-link {
    font-weight: 600;
    color: var(--color-teal);
    white-space: nowrap;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    padding: 12rem 0 8rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fb 0%, #e8edf2 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, var(--color-navy) 0, var(--color-navy) 1px, transparent 0, transparent 50%),
        repeating-linear-gradient(-45deg, var(--color-teal) 0, var(--color-teal) 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 121, 107, 0.1);
    color: var(--color-teal);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    gap: 1rem;
    animation: fadeInLeft 0.8s ease backwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.6s; }
.benefit-item:nth-child(2) { animation-delay: 0.7s; }
.benefit-item:nth-child(3) { animation-delay: 0.8s; }

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-text strong {
    color: var(--color-navy);
    font-weight: 600;
}

.benefit-text span {
    color: #666;
    font-size: 0.9375rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.9s backwards;
}

.trust-bar {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(26, 47, 75, 0.1);
    animation: fadeIn 0.8s ease 1s backwards;
}

.trust-text {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-logo {
    padding: 0.75rem 1.5rem;
    background: rgba(26, 47, 75, 0.05);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--color-dark-charcoal);
    font-size: 0.875rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose {
    padding: var(--spacing-xl) 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: white;
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.feature-description {
    color: #666;
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-dark-charcoal);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.service-link {
    color: var(--color-teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.service-link:hover {
    gap: 1rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: var(--spacing-xl) 0;
    background: white;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, var(--color-teal), transparent);
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-navy);
}

.step-description {
    color: #666;
    line-height: 1.7;
}

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

/* ============================================
   WHO WE SERVE SECTION
   ============================================ */

.who-we-serve {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
}

.client-segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.segment-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

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

.segment-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.segment-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.segment-description {
    color: #666;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: var(--spacing-xl) 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-light-gray);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-dark-charcoal);
    font-style: italic;
}

.author-name {
    display: block;
    color: var(--color-navy);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #666;
    font-size: 0.9375rem;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: var(--gradient-overlay);
    padding: var(--spacing-xl) 0;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: var(--color-gold);
}

.footer-brand .logo-text {
    color: white;
}

.footer-tagline {
    line-height: 1.7;
    font-size: 0.9375rem;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cert-badge {
    font-size: 0.875rem;
    color: var(--color-gold);
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 0.5rem;
}

.footer-contact li {
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-navy);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.875rem;
    opacity: 0.9;
    max-width: 640px;
}

.footer-disclaimer a {
    color: var(--color-gold);
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* ============================================
   STICKY CONTACT BAR (Mobile)
   ============================================ */

.sticky-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    gap: 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-btn {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: white;
}

.sticky-phone {
    background: var(--color-teal);
}

.sticky-whatsapp {
    background: #25D366;
}

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

@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Tablet and below: use hamburger menu so top bar is not crowded */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        max-width: 320px;
        height: calc(100vh - 72px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        align-items: flex-start;
        gap: 0;
        transition: var(--transition-base);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-light-gray);
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-left: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        top: 72px;
        height: calc(100vh - 72px);
    }
    
    .hero {
        padding: 10rem 0 6rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-step::after {
        left: 40px;
        top: 80px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .sticky-contact {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card,
    .feature-card,
    .segment-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .phone-link {
        display: none;
    }
}

/* ============================================
   RTL SUPPORT (for Urdu/Punjabi)
   ============================================ */

[dir="rtl"] .nav-menu,
[dir="rtl"] .hero-content,
[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .benefit-item,
[dir="rtl"] .process-step {
    flex-direction: row-reverse;
}

[dir="rtl"] .service-list li {
    padding-left: 0;
    padding-right: 1.5rem;
}

[dir="rtl"] .service-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .benefit-list li {
    padding-left: 0;
    padding-right: 1.5rem;
}

[dir="rtl"] .benefit-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 0.5rem;
}
