:root {
    --primary-color: #266e46;
    /* Green-600 */
    --primary-light: #69a77c;
    /* Green-200 */
    --primary-dark: #144228;
    /* Green-700 */
    --bg-pink: #eef5f0;
    /* Green-50 */
    --hero-gradient-start: #d3e8da;
    --hero-gradient-end: #69a77c;

    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --white: #ffffff;

    --footer-bg: #0d2b1a;
    /* Emerald-900 */
    --footer-text: #e5e7eb;

    --radius-md: 0.5rem;
    --radius-lg: 1rem;

    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

/* Header */
header {
    padding: 1rem 0;
    padding: 1rem 0;
    background-color: var(--footer-bg);
    /* Match footer */
    backdrop-filter: none;
    /* Optional: removing blur as it's solid color now, or keep it if transparency desired. Footer is usually solid. */
    position: fixed;
    width: 100%;
    z-index: 1100;
    top: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
}

.nav-links a:hover {
    color: var(--primary-light);
}

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
    /* Ensure dropdown is positioned relative to the parent li */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 260px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
    z-index: 1000;
    border: 1px solid #f3f4f6;
}

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

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 400;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-pink);
    color: var(--primary-dark);
    padding-left: 1.8rem;
    /* subtle shift effect */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, #eef5f0 100%);
    padding-top: 8rem;
    /* Space for fixed header */
    padding-bottom: 4rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Decorative circle in background top left */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(38, 110, 70, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-content h1 .highlight {
    color: var(--text-dark);
    /* "ready!" is black in image */
    color: var(--primary-dark);
    /* Or dark pink? Image shows "ready!" in pink/red actually. "We are" is black. */
}

/* Wait, image says "Perfect Cleaning" (Pink) "We are" (Black) "ready!" (Pink) */
.hero-content h1 {
    color: var(--primary-color);
}

.hero-content h1 span.black {
    color: var(--text-dark);
}

/* Let's adjust HTML if needed, but CSS targeting: */
/* Actually the HTML structure: <h1>Perfect Cleaning<br>We are <span class="highlight">ready!</span></h1> */
/* "Perfect Cleaning" is part of H1 text. "We are" is part of H1 text. "ready!" is span */
/* So I need to style specific parts. Let's rely on basic coloring for now: */
/* First line pink, second line: "Top text pink", "bottom text black and pink". */

.hero-content h1 {
    color: var(--primary-color);
}

.hero-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 400px;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(38, 110, 70, 0.4);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 110, 70, 0.6);
}

.btn-arrow {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
}

.stats {
    display: flex;
    gap: 3rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-main {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    /* Optional: drop-shadow to make it pop like a cutout if the image had transparency, 
       but here it's a full image. The generated image has a background. 
       To make it look like the design (cutout), we'd need to remove background.
       Since we can't easily remove background, we'll style it to look like a nice photo card or blend it.
    */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(38, 110, 70, 0.2);
}

/*.image-placeholder {
    width: 400px;
    height: 500px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #666;
}*/

/* Logos Section */
.logos-section {
    padding: 2rem 0;
    background-color: white;
    border-bottom: 1px solid #f3f4f6;
}

.logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #9ca3af;
    text-transform: uppercase;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--bg-pink);
    /* Soft green bg */
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 4rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent */
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*.team-img-placeholder {
    width: 150px;
    height: 150px;
    background-color: #eee;
    border-radius: var(--radius-lg); 
    margin-bottom: 1rem;
    object-fit: cover;
}*/

.team-card h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.team-card p {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.role-tag {
    font-size: 0.7rem;
    background: var(--hero-gradient-start);
    color: var(--primary-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

/* Curious Section */
.curious-section {
    padding: 5rem 0;
    background: url('images/bg_office.png') no-repeat center center/cover;
    /* Placeholder bg */
    position: relative;
}

/* Semi-transparent overlay to make text readable/match design */
.curious-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
}

.curious-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.curious-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.curious-content p {
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.quote-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quote-form input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    min-width: 250px;
}

.btn-submit {
    background: var(--primary-color);
    /* Orange in design? Let's check "Request a free quote" btn color. It's orange/yellow in the image! */
    /* Oh, the form button in "Curious about possibilities" is ORANGE/YELLOW. */
    background: #fbbf24;
    /* Amber-400 */
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
}

/* Testimonials Small */
.testimonials-small {
    padding: 3rem 0;
    background: white;
}

.testimonial-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-lg);
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background: #ddd;
    border-radius: 50%;
    flex-shrink: 0;
}

.testi-text h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testi-text p {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-gray);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: white;
}

.footer-col p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

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

.contact-form input {
    padding: 0.6rem;
    border: none;
    border-radius: 4px;
}

.btn-footer {
    background: #fbbf24;
    border: none;
    color: white;
    padding: 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

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

.social-links a {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Utility to ensure text colors in Hero H1 match image better */
.hero-content h1 {
    color: var(--primary-dark);
}

.hero-content h1 {
    /* "Perfect Cleaning" - Pink */
    /* "We are" - Dark */
    /* "ready!" - Pink */
}

/* Since I can't inject spans easily into the H1 blindly without JS or knowing exact content structure, I'll rely on what I wrote in HTML:
<h1>Perfect Cleaning<br>We are <span class="highlight">ready!</span></h1>
*/
/* So: */
.hero-content h1 {
    color: var(--primary-color);
    /* Default Pink ("Perfect Cleaning") */
}

/* But "We are" is just text. Need to wrap it? 
Actually, "Perfect Cleaning" is first line.
"We are" is start of second line.
"ready!" is highlight.
I should correct HTML to be safer, like separate spans, but let's try CSS first.
*/
/* The current HTML is:
<h1>Perfect Cleaning<br>We are <span class="highlight">ready!</span></h1>
Browser renders "Perfect Cleaning" (Pink)
"We are" (Pink)
"ready!" (Black if style applied)
*/
/* I need "We are" to be black. I'll modify HTML in next step or use <br> styling tricks (not possible).
I'll wrap "We are" in a span in the next update or just let it be pink for now.
*/

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1200;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
        /* Image on top on mobile? Or bottom. Usually top or hid. */
        margin-bottom: 2rem;
    }

    .cta-group {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--footer-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links li a,
    .nav-links li button {
        padding: 1rem;
        width: 100%;
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        display: none;
        margin-top: 0.5rem;
    }

    .dropdown-item.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 0.8rem 2rem;
        color: var(--primary-light);
    }

    .btn-nav-call {
        width: 90%;
        margin: 1rem auto;
    }
}

/* City Page Specific Styles */

/* City Hero */
.city-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero_new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Header space */
    color: white;
}

.city-hero-content {
    width: 100%;
    text-align: left;
}

.city-accent {
    color: #fbbf24;
    /* Amber-400 - Gold color */
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.city-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white !important;
}

.city-hero h1 .highlight {
    color: #fbbf24 !important;
}

.city-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #e5e7eb;
}

.btn-call {
    background-color: #fbbf24;
    color: #1f2937;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

/* Local Reach Bar */
.local-reach-bar {
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
}

.local-reach-title {
    color: #fbbf24;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.local-reach-headline {
    color: var(--primary-dark);
    font-size: 2rem;
    font-weight: 700;
}

/* City Content Layout */
.city-content-section {
    padding: 4rem 0;
    background-color: white;
}

.city-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.city-text h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.city-text p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
}

.city-text h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.services-list-city {
    list-style: none;
    margin-bottom: 2rem;
}

.services-list-city li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.services-list-city li::before {
    content: '•';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Sidebar Contact Card */
.sidebar-card {
    background-color: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    height: fit-content;
}

.sidebar-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sidebar-content {
    background-color: #fbbf24;
    padding: 2rem;
    text-align: center;
    color: #1f2937;
}

.sidebar-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.sidebar-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-sidebar {
    background-color: var(--footer-bg);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    display: block;
    width: 100%;
    transition: var(--transition);
}

.btn-sidebar:hover {
    background-color: #06150d;
}

/* Mobile Responsive for City Pages */
@media (max-width: 900px) {
    .city-layout {
        grid-template-columns: 1fr;
    }

    .city-hero {
        height: auto;
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .city-hero h1 {
        font-size: 2.5rem;
    }
}

/* Updated Footer Alignment */
.footer-col.right-align {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact-list a {
    color: var(--footer-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .footer-col.right-align {
        text-align: left;
        align-items: flex-start;
    }

    .footer-contact-list li {
        justify-content: flex-start;
    }
}


/* Nav Call Button */
.btn-nav-call {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-nav-call:hover {
    background-color: white;
    color: var(--primary-dark);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.3s;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover,
.close:focus {
    color: var(--primary-dark);
    text-decoration: none;
    cursor: pointer;
}

.modal-content h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.modal-content p {
    font-size: 1.2rem;
    margin: 15px 0;
    color: var(--text-dark);
}

.modal-content a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

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

/* Industries Carousel Styles */
.industries-carousel {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track {
    position: relative;
    width: 100%;
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

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

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background-color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: -25px;
}

.carousel-arrow.next {
    right: -25px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: var(--transition);
}

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

.dot.active {
    background-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* Mobile Responsive for Carousel */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-arrow.prev {
        left: 10px;
    }
    
    .carousel-arrow.next {
        right: 10px;
    }
    
    .carousel-slide .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}