/* 
    Agadh Logistics - Premium Corporate Design System
    Colors: Corporate Blue, Trust White, Accent Orange/Gold
*/

:root {
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;

    /* Brand Colors */
    --brand-blue-dark: #122135;
    --brand-blue: #1d334e;
    --brand-blue-light: #274160;
    --brand-accent: #f59e0b;
    /* Golden Orange for CTA to draw attention */
    --brand-accent-hover: #d97706;

    /* Layout */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px 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);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--brand-blue-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-white {
    color: #ffffff;
}

.text-white-muted {
    color: #cbd5e1;
}

.text-accent {
    color: var(--brand-accent);
}

.center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: center;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--brand-blue-light);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23);
}

.btn-accent {
    background-color: var(--brand-accent);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
}

.btn-accent:hover {
    background-color: var(--brand-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.23);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(to right, var(--brand-blue-dark), var(--brand-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--brand-blue-light);
}

/* Typography elements */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Sections Base */
section {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--brand-blue-dark);
    /* For a more premium feel, we add a subtle overlay gradient assuming an image will be placed behind it, or just use css gradient */
    background: radial-gradient(circle at 80% 20%, #1e3a8a 0%, #0a192f 100%);
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

/* Add some dynamic background elements */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subhead {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 300;
}

.trust-signals {
    margin-top: 3rem;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: inline-block;
}

/* Problem Section */
.problem-section {
    background-color: var(--bg-alt);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.problem-card p {
    color: var(--text-secondary);
}

/* Solution Section */
.solution-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-md);
}

.gradient-glow::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, transparent 100%);
    opacity: 0.15;
    z-index: -1;
    border-radius: 30px;
    filter: blur(20px);
}

.solution-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.solution-list li {
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: var(--brand-blue-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.solution-list strong {
    font-size: 1.25rem;
    color: var(--brand-blue-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.solution-list p {
    color: var(--text-secondary);
}

/* Services Section */
.services-section {
    background-color: var(--brand-blue-dark);
    position: relative;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--brand-blue-light);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Results Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f8fafc;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--brand-blue-light);
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Why Us */
.why-us-section {
    background-color: var(--bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Social Proof */
.social-proof-section {
    text-align: center;
}

.industries {
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border-top: 4px solid var(--brand-blue-light);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: #e2e8f0;
    font-family: serif;
    line-height: 1;
}

.quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.author strong {
    display: block;
    color: var(--brand-blue-dark);
}

.author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Lead Capture Form */
.lead-capture-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--brand-blue-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.form-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-blue-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-submit {
    margin-top: 1rem;
}

/* Footer CTA */
.footer-cta {
    background-color: var(--brand-blue-dark);
    padding: 6rem 0;
}

.footer-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* Footer */
.site-footer {
    background-color: #020617;
    padding: 3rem 0;
    color: var(--text-secondary);
}

.container-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-img-footer {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 992px) {

    .solution-container,
    .form-container,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .glass-panel {
        padding: 2rem;
    }
}

/* Multi-Page Additions */
.page-header {
    background: var(--brand-blue-dark);
    padding: 10rem 0 4rem;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropbtn {
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-radius: var(--radius-sm);
    top: 100%;
    left: 0;
    overflow: visible;
}

.dropdown-content a {
    color: var(--text-primary) !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background-color: var(--bg-alt);
    color: var(--brand-blue-light) !important;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

/* Sub-dropdown styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background-color: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    z-index: 1001;
}

.dropdown-submenu:hover > .dropdown-submenu-content {
    display: block;
}

/* Fix for spacing between main dropdown and submenu */
.dropdown-submenu-content {
    margin-left: 1px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.dropdown-submenu-content a {
    min-width: 200px;
}

.dropdown-submenu > a::after {
    content: " ▸";
    float: right;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: 10px;
}

.sticky-cta-btn {
    position: fixed;
    bottom: 30px;
    right: 110px;
    background-color: var(--brand-accent);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Expanded Footer */
.site-footer {
    background-color: #0a192f;
    padding: 5rem 0 2rem;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-about p {
    margin-top: 1.5rem;
    color: #94a3b8;
    line-height: 1.8;
}

.footer-contact {
    margin-top: 1.5rem;
    color: #cbd5e1;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-blue-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: #64748b;
    margin-left: 1.5rem;
}

.footer-legal-links a:hover {
    color: white;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal-links a {
        margin: 0 0.75rem;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background-color: var(--brand-blue-dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18,33,53, 0.95) 0%, rgba(18,33,53, 0.6) 50%, transparent 100%);
    z-index: -1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--brand-blue-light);
    transform: translateY(-50%) scale(1.1);
}

.prev-slide { left: 3rem; }
.next-slide { right: 3rem; }

.slide-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    background: var(--brand-accent);
    transform: scale(1.4);
    width: 30px;
    border-radius: 10px;
}

.slide .hero-content {
    max-width: 850px;
    z-index: 2;
    padding-left: 2rem;
}

.slide .hero-headline {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.slide .hero-subhead {
    font-size: 1.35rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 750px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
    line-height: 1.8;
}

.slide .hero-actions {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s;
}

.slide.active .hero-headline,
.slide.active .hero-subhead,
.slide.active .hero-actions {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .slide .hero-headline { font-size: 3.2rem; }
    .slider-btn { display: none; }
}

@media (max-width: 768px) {
    .slide .hero-headline { font-size: 2.6rem; }
    .slide .hero-content { padding-left: 0; text-align: center; margin: 0 auto; }
    .slide-overlay { background: linear-gradient(to bottom, rgba(18,33,53, 0.8) 0%, rgba(18,33,53, 0.9) 100%); }
}

/* Case Study Carousel Styles */
.case-study-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 5rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: white;
}

.carousel-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: white;
}

.carousel-image-container {
    flex: 1;
    min-width: 300px;
    height: 600px;
    position: relative;
}

.carousel-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-content {
    flex: 1.5;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--brand-blue-dark);
}

.carousel-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    color: var(--brand-blue-light);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--brand-accent);
    width: 28px;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .carousel-slide { flex-direction: column; }
    .carousel-image-container { height: 400px; }
    .carousel-content { padding: 2.5rem; }
}