@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    /* Color Palette */
    --color-primary: #123e47;        /* Deep Slate Teal - Trust & Depth */
    --color-primary-light: #1b5d6b;  /* Medium Teal */
    --color-secondary: #06b6d4;      /* Vibrant Aqua/Mint - Cleanliness */
    --color-secondary-light: #ecfeff;/* Light Mint Ice */
    --color-accent: #dca963;         /* Warm Gold/Sand - Premium feel */
    --color-accent-dark: #b8863f;    /* Darker Gold */
    --color-text-dark: #1e293b;      /* Slate 800 - Body text */
    --color-text-muted: #64748b;     /* Slate 500 - Captions/Muted */
    --color-bg-light: #f8fafc;       /* Off-white */
    --color-bg-white: #ffffff;
    --color-bg-dark: #0f172a;        /* Deep Slate 900 - Footer background */
    --color-border: #e2e8f0;         /* Slate 200 */
    --color-success: #10b981;        /* Emerald 500 */
    --color-error: #ef4444;          /* Red 500 */

    /* Typography */
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* 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);
    --shadow-glass: 0 8px 32px 0 rgba(18, 62, 71, 0.08);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Container Width */
    --container-width: 1200px;
}

/* --- BASE & RESET --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
}

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

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* --- TYPOGRAPHY UTILITIES --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 { font-size: 3rem; font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: 2.25rem; font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }

/* --- LAYOUT COMPONENTS --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

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

.section-title-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.section-title-wrapper h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title-wrapper h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-full);
    margin: 0.75rem auto 0 auto;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: #0891b2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-weight: 700;
}

.btn-accent:hover {
    background-color: var(--color-accent-dark);
    color: var(--color-bg-white);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: clamp(1.1rem, 3.5vw, 1.35rem);
    color: var(--color-primary);
    text-decoration: none;
}

.logo svg {
    color: var(--color-secondary);
}

.logo span {
    color: var(--color-secondary);
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-subtitle {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-top: 0.125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

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

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

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

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

/* Services Dropdown in Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem;
    min-width: 240px;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--color-secondary-light);
    color: var(--color-primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-primary);
    border-radius: 9px;
    transition: var(--transition-normal);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background-color: var(--color-bg-white);
        box-shadow: var(--shadow-xl);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        gap: 1.5rem;
        overflow-y: auto;
        max-height: 100vh;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideIn 0.3s ease-out forwards;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        position: static;
        transform: none;
        display: block;
        opacity: 1;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
    }
    
    .header-actions {
        display: none;
    }
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.96) 100%), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80') no-repeat center center;
    background-size: cover;
    padding: 6rem 0 8rem 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 550px;
}

.hero-tagline {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-tagline::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-secondary);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item svg {
    color: var(--color-success);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Premium Visual Representation for clean page design */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 480px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background-color: var(--color-secondary-light);
    border-radius: 40% 60% 60% 40% / 40% 30% 70% 60%;
    z-index: -1;
    filter: blur(40px);
    animation: blob-float 12s infinite alternate ease-in-out;
}

.floating-badge {
    position: absolute;
    background-color: var(--color-bg-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: badge-bounce 4s infinite ease-in-out;
}

.floating-badge.badge-1 {
    top: 10%;
    left: -5%;
}

.floating-badge.badge-2 {
    bottom: 10%;
    right: -5%;
    animation-delay: 2s;
}

.badge-icon {
    background-color: var(--color-secondary-light);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.badge-title {
    font-size: 0.85rem;
    font-weight: 700;
}

.badge-subtitle {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-tagline {
        justify-content: center;
    }
    
    .hero-tagline::before {
        display: none;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper {
        height: 380px;
    }
}

/* --- STATS SECTION --- */
.stats-bar {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 2.5rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-secondary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* --- SERVICE CARDS SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: var(--transition-spring);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: var(--color-secondary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.925rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link svg {
    transition: var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--color-secondary);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

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

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

/* --- WHY CHOOSE US --- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-secondary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.why-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-xl);
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-experience {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-exp-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.why-exp-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .why-visual {
        height: 350px;
    }
}

/* --- PROCESS SECTION --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-num-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    border: 2px solid var(--color-border);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.5rem auto;
    position: relative;
    transition: var(--transition-normal);
}

.process-step:hover .step-num-wrapper {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-bg-white);
    transform: scale(1.1);
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.925rem;
    color: var(--color-text-muted);
}

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

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

.testimonial-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.testimonial-content {
    font-style: italic;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-secondary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.client-details h4 {
    font-size: 0.95rem;
    color: var(--color-primary);
}

.client-details p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CALL TO ACTION --- */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-section h2 {
    color: var(--color-bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(6, 182, 212, 0.15);
    border-radius: 50%;
    z-index: 1;
}

.cta-blob-1 { top: -100px; left: -100px; }
.cta-blob-2 { bottom: -100px; right: -100px; }

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* --- BLOG GRID & LIST --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.blog-card-image {
    height: 200px;
    background-color: var(--color-secondary-light);
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.blog-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card:hover .blog-link {
    color: var(--color-secondary);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SINGLE BLOG & SERVICE DETAIL PAGE STYLING --- */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-bg-white);
    padding: 6rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--color-bg-white);
    margin-bottom: 1rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 5rem 0;
    min-width: 0;
}

.content-area {
    background-color: var(--color-bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    min-width: 0;
}

.content-area img.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.content-area h2 { margin: 2rem 0 1rem 0; }
.content-area h3 { margin: 1.5rem 0 1rem 0; }
.content-area p { margin-bottom: 1.25rem; font-size: 1.05rem; color: #334155; }
.content-area ul { margin-bottom: 1.5rem; padding-left: 1.5rem; list-style-type: disc; }
.content-area li { margin-bottom: 0.5rem; }

.checklist-box {
    background-color: var(--color-bg-light);
    border-left: 4px solid var(--color-secondary);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 2rem 0;
}

.checklist-box h3 { margin-top: 0; }

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.checklist-item svg {
    color: var(--color-success);
    flex-shrink: 0;
}

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

.widget {
    background-color: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.5rem;
}

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

.widget-contact-item {
    display: flex;
    gap: 0.75rem;
}

.widget-contact-item svg {
    color: var(--color-secondary);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .page-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .content-area {
        padding: 1.5rem;
    }
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CONTACT FORM & DETAILS --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.contact-card-wrapper {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

/* --- SINGLE-PAGE ENQUIRY FORM --- */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.form-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary-light));
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.form-section-header h3 {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin: 0;
}

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

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

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-bg-light);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}

.checkbox-card:hover {
    border-color: var(--color-primary-light);
    background-color: var(--color-bg-white);
}

.checkbox-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    cursor: pointer;
    margin-top: 0.2rem;
    accent-color: var(--color-secondary);
    flex-shrink: 0;
}

.checkbox-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.checkbox-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
}

.checkbox-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Checked state card styling */
.checkbox-card:has(input[type="checkbox"]:checked) {
    border-color: var(--color-secondary);
    background-color: var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

/* Validation error state card styling */
.checkbox-card.is-invalid {
    border-color: var(--color-error);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.form-actions .btn-submit {
    min-width: 180px;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-actions {
        justify-content: center;
    }
    
    .form-actions .btn-submit {
        width: 100%;
        min-width: unset;
    }
}

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

@media (max-width: 600px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

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

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-control {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    transition: var(--transition-normal);
}

.form-control:focus {
    border-color: var(--color-secondary);
    background-color: var(--color-bg-white);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.form-group-inline {
    display: flex;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Form Validation Styling */
.form-control.is-invalid {
    border-color: var(--color-error);
}

.invalid-feedback {
    display: none;
    color: var(--color-error);
    font-size: 0.8rem;
    font-weight: 600;
}

.form-control.is-invalid + .invalid-feedback {
    display: block;
}

/* Success notification message */
.form-success-message {
    display: none;
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-success-message.show {
    display: block;
}

.info-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--color-secondary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.info-card-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.map-container {
    height: 300px;
    background-color: #e2e8f0;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.map-placeholder-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #cbd5e1 10%, #e2e8f0 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-card-wrapper {
        padding: 2rem;
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    .info-box-wrapper {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
}

/* --- FOOTER --- */
footer {
    background-color: var(--color-bg-dark);
    color: #94a3b8;
    padding: 5rem 0 2rem 0;
    border-top: 5px solid var(--color-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: var(--color-bg-white);
    margin-bottom: 0;
}

.footer-col .logo-group {
    margin-bottom: 1.5rem;
}

.footer-col .logo-subtitle {
    color: #64748b;
    margin-top: 0.25rem;
}

.footer-logo span {
    color: var(--color-secondary);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--color-bg-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
    margin-top: 0.5rem;
}

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

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

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

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact-item span {
        word-break: break-all;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }
}

/* --- ANIMATIONS & INTERACTIVE STYLING --- */
@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.08); }
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBILE RESPONSIVENESS UPGRADES --- */

/* Hero rates flex wrap container */
.hero-rates {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary-light);
    opacity: 0.9;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-rates span {
    display: inline-block;
}

.hero-rates .separator {
    color: var(--color-secondary);
}

@media (max-width: 992px) {
    .hero-rates {
        justify-content: center;
    }
}

/* Responsive Container padding and overflow */
@media (max-width: 768px) {
    .container {
        padding: 0 20px !important;
        max-width: 100% !important;
    }
    
    section,
    footer {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .contact-card-wrapper,
    .info-box-wrapper {
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px !important;
        overflow-x: hidden;
    }
}

/* Shrink Header Logo & Subtitle on mobile viewports */
@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
        gap: 0.35rem;
    }
    .logo svg {
        width: 26px;
        height: 26px;
    }
    .logo-subtitle {
        font-size: 0.55rem;
        letter-spacing: 0.05em;
    }
    .header-container {
        height: 4.5rem;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 0.9rem;
    }
    .logo svg {
        width: 22px;
        height: 22px;
    }
    .logo-subtitle {
        font-size: 0.5rem;
    }
}

/* Hide hero floating badges on mobile/tablet to prevent offscreen overflow scroll */
@media (max-width: 992px) {
    .floating-badge {
        display: none !important;
    }
}

/* Navigation active dropdown toggling under 992px */
@media (max-width: 992px) {
    .nav-dropdown .dropdown-menu {
        display: none;
        opacity: 0;
        transition: none;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .nav-dropdown .dropdown-menu.active {
        display: block !important;
        opacity: 1 !important;
    }
}

/* Responsive table wrapper container */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-white);
    box-sizing: border-box;
}

.table-wrapper table {
    width: 100%;
    min-width: 600px; /* Force minimum width to enable horizontal scroll on mobile */
    border-collapse: collapse;
    margin: 0 !important;
    border: none !important;
}

/* Mobile: allow text wrapping in table cells so tables don't force horizontal scroll */
@media (max-width: 768px) {
    .table-wrapper th,
    .table-wrapper td,
    .content-area table th,
    .content-area table td {
        white-space: normal !important;
        word-break: break-word;
        padding: 0.5rem 0.6rem !important;
        font-size: 0.85rem !important;
    }

    /* Blog visual banners with inline height of 380px */
    .content-area > div[style*="height: 380px"],
    .content-area > div[style*="height:380px"] {
        height: 220px !important;
    }

    /* Constrain all inline-styled images */
    .content-area img[style] {
        max-width: 100% !important;
        height: auto !important;
        max-height: 280px !important;
    }

    /* Blockquote mobile padding */
    .content-area blockquote {
        padding: 1rem 1rem !important;
        margin: 1.5rem 0 !important;
        font-size: 1rem !important;
    }

    /* Ordered/unordered list padding adjustment */
    .content-area ol,
    .content-area ul {
        padding-left: 1.2rem !important;
    }

    /* Blog meta row */
    .blog-meta {
        flex-wrap: wrap;
        font-size: 0.8rem !important;
    }
}

/* Sections and hero elements mobile padding */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 5rem 0;
    }
    .page-hero {
        padding: 3.5rem 0;
    }
    .section {
        padding: 3rem 0;
    }
    
    .page-layout {
        padding: 2rem 0;
        gap: 2rem;
        /* Prevent grid children from blowing out the layout */
        overflow: hidden;
        max-width: 100%;
    }
    
    .content-area {
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
        border-radius: 0;
        /* Critical: constrain width and prevent overflow */
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    /* Constrain all child elements inside content-area */
    .content-area > * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Tables should scroll within content-area, not push it wider */
    .table-wrapper {
        max-width: 100% !important;
    }
    
    /* Ensure content-area text elements wrap properly */
    .content-area p,
    .content-area li,
    .content-area h2,
    .content-area h3,
    .content-area h4,
    .content-area blockquote {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }
    
    /* Inline-styled divs (banners, etc.) must be constrained */
    .content-area > div[style] {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }
    
    /* Inline-styled images must be constrained */
    .content-area img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .widget {
        padding: 1.5rem;
    }
    
    .content-area img.featured-image {
        height: 240px;
        margin-bottom: 1.5rem;
        object-fit: cover;
    }
    
    /* Handle service page placeholder banners height */
    .content-area div[style*="height: 350px"],
    .content-area div[style*="height:350px"] {
        height: 200px !important;
    }
    
    /* Contact page mobile card padding & spacing */
    .info-card {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }
}

/* Stats grid mobile layout override */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .why-experience {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 0 1rem 1.5rem 1rem;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .checklist-box {
        padding: 1.25rem 1rem;
        margin: 1.5rem 0;
    }
    
    /* Contact page mobile adjustments */
    .contact-card-wrapper {
        padding: 1.5rem 1.25rem;
    }
    .info-card-content p {
        word-break: break-all;
    }
}

/* Headings mobile typography scaling scale */
@media (max-width: 480px) {
    h1, .hero h1 {
        font-size: 1.75rem !important;
    }
    h2 {
        font-size: 1.4rem !important;
    }
    h3 {
        font-size: 1.15rem !important;
    }
}

/* Slide-in keyframes for mobile menu navigation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* --- FAQ ACCORDION SECTION --- */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-primary);
    user-select: none;
    gap: 1rem;
    font-size: 1.05rem;
}

.faq-question svg {
    transition: var(--transition-normal);
    color: var(--color-secondary);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
    padding: 0 1.75rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer p {
    padding-bottom: 1.25rem;
}

/* Active FAQ Item state */
.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

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

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--color-accent-dark);
}

.faq-item.active .faq-answer {
    padding-top: 1.25rem;
}

/* --- GLOBAL MOBILE WORD BREAK SAFEGUARDS --- */
a[href^="mailto:"], 
a[href^="tel:"], 
.info-card-content p, 
.footer-contact-item span {
    word-break: break-all;
    overflow-wrap: break-word;
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 4rem;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.testimonial-slide {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    display: none;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: flex;
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease-in-out;
    z-index: 10;
}

.slider-btn:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

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

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--color-border);
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.slider-dots .dot.active {
    background-color: var(--color-secondary);
}

@media (max-width: 600px) {
    .testimonials-slider-container {
        padding: 0;
    }
    .slider-btn {
        display: none;
    }
    .testimonial-slide {
        padding: 1.75rem 1.5rem;
        min-height: 220px;
    }
}



