:root {
    --gold-primary: #a98329;
    --gold-light: #f9ea95;
    --gold-accent: #c6a64b;
    --gold-soft: #e4cc70;
    --white: #ffffff;
    --black: #000000;
    --gray-dark: #333333;
    --gray-light: #f8f8f8;
    --dark-blue: #1a2b4a;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--gold-primary);
}

.dropdown {
    position: relative;
}

.dropdown > a {
    position: relative;
    padding-bottom: 1.5rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    list-style: none;
    min-width: 280px;
    padding: 1rem 0;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 9999;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1rem;
    background: transparent;
    z-index: 9998;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--gray-light);
    padding-left: 2rem;
}

.btn-quote {
    background: var(--gold-primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: var(--gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(169, 131, 41, 0.3);
}

.navbar-dark-blue {
    background: var(--dark-blue);
}

.navbar-dark-blue .nav-menu a {
    color: var(--white);
}

.navbar-dark-blue .nav-menu a:hover {
    color: var(--gold-light);
}

.navbar-dark-blue .dropdown-menu {
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-dark-blue .dropdown-menu a {
    color: var(--white);
}

.navbar-dark-blue .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
    padding-left: 2rem;
}

.navbar-dark-blue .mobile-menu-toggle span {
    background: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.hero-subtitle-line {
    font-size: 1.8rem;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Smaller buttons only for the hero section */
.hero-buttons .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(169, 131, 41, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--gold-primary);
}

.why-eleganza {
    padding: 6rem 0;
    background: var(--gray-light);
}

.eleganza-story {
    padding: 6rem 0;
    background: var(--white);
}

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

.section-content h2 {
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

.owner-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f9f5eb 100%);
    position: relative;
}

.owner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(169, 131, 41, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 234, 149, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.owner-image {
    position: relative;
}

.owner-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--gold-accent);
    border-radius: 10px;
    z-index: 0;
}

.owner-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(169, 131, 41, 0.2);
    position: relative;
    z-index: 1;
    border: 3px solid var(--white);
    transition: transform 0.3s ease;
}

.owner-image img:hover {
    transform: translateY(-5px);
}

.owner-content h2 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.credentials {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.credential-badge {
    max-width: 180px;
    height: auto;
    background: var(--white);
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(169, 131, 41, 0.15);
}

.services-preview {
    padding: 6rem 0;
    background: var(--gray-light);
}

.services-preview h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 3rem;
}

.gallery-carousel {
    padding: 6rem 0;
    background: var(--white);
}

.gallery-carousel h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

.carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-control:hover {
    background: rgba(0,0,0,0.65);
    transform: translateY(-50%) scale(1.05);
}

.carousel-control.prev { left: 12px; }
.carousel-control.next { right: 12px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-dots button.active, .carousel-dots button:hover {
    background: var(--gold-primary);
    transform: scale(1.1);
}

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

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--gold-accent);
}

.contact-section {
    padding: 6rem 0;
}

.contact-section h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--gray-dark);
}

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

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-group textarea {
    resize: vertical;
}

.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

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

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

.social-links a {
    font-size: 1.8rem;
    color: var(--white);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--gold-light);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-credentials {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: center;
}

.footer-badge {
    max-width: 100px;
    height: auto;
    background: var(--white);
    padding: 0.3rem;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.page-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.page-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-hero h1 {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.content-section {
    padding: 4rem 0;
}

.benefits-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

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

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-item h3 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: var(--gold-primary);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .about-content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .dropdown > a {
        padding-bottom: 0;
    }
    
    .dropdown::before {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 0.5rem;
        padding-left: 1rem;
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .owner-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* ========================================
   SERVICE PAGE CAROUSEL - ELEGANT & LUXURY
   ======================================== */

.service-carousel-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.service-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ========================================
   COMPACT SERVICE CAROUSEL - AFTER GET IN TOUCH
   ======================================== */

.compact-carousel-section {
    padding: 4rem 0;
    background: var(--white);
}

.compact-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.compact-carousel-title {
    text-align: center;
    font-size: 1.75rem;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
}

.compact-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.compact-carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.compact-carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.compact-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.compact-carousel-slide:hover img {
    transform: scale(1.03);
}

/* Subtle overlay */
.compact-carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Compact Navigation Arrows */
.compact-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold-primary);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.compact-carousel-wrapper:hover .compact-carousel-arrow {
    opacity: 1;
}

.compact-carousel-arrow:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

.compact-carousel-arrow.prev {
    left: 20px;
}

.compact-carousel-arrow.next {
    right: 20px;
}

/* Compact Navigation Dots */
.compact-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.compact-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d5d5d5;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.compact-carousel-dot:hover {
    background: var(--gold-accent);
    transform: scale(1.15);
}

.compact-carousel-dot.active {
    background: var(--gold-primary);
    width: 28px;
    border-radius: 5px;
}

/* Mobile Responsiveness for Compact Carousel */
@media (max-width: 968px) {
    .compact-carousel-section {
        padding: 3rem 0;
    }
    
    .compact-carousel-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .compact-carousel-slide {
        aspect-ratio: 4 / 3;
    }
    
    .compact-carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .compact-carousel-arrow.prev {
        left: 12px;
    }
    
    .compact-carousel-arrow.next {
        right: 12px;
    }
}

@media (max-width: 640px) {
    .compact-carousel-wrapper {
        border-radius: 10px;
    }
    
    .compact-carousel-slide {
        aspect-ratio: 1 / 1;
    }
    
    .compact-carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        opacity: 0.85;
    }
    
    .compact-carousel-arrow.prev {
        left: 8px;
    }
    
    .compact-carousel-arrow.next {
        right: 8px;
    }
    
    .compact-carousel-dots {
        gap: 8px;
        margin-top: 1.5rem;
    }
    
    .compact-carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .compact-carousel-dot.active {
        width: 22px;
    }
}

.service-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-carousel-slide:hover img {
    transform: scale(1.05);
}

/* Elegant gradient overlay */
.service-carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Navigation Arrows */
.service-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-carousel-wrapper:hover .service-carousel-arrow {
    opacity: 1;
}

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

.service-carousel-arrow.prev {
    left: 30px;
}

.service-carousel-arrow.next {
    right: 30px;
}

/* Navigation Dots */
.service-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.service-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.service-carousel-dot:hover {
    background: var(--gold-accent);
    transform: scale(1.2);
}

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

/* Optional Caption */
.service-carousel-caption {
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 2;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-carousel-slide.active .service-carousel-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .service-carousel-section {
        padding: 3rem 0;
    }
    
    .service-carousel-slide {
        aspect-ratio: 4 / 3;
    }
    
    .service-carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .service-carousel-arrow.prev {
        left: 15px;
    }
    
    .service-carousel-arrow.next {
        right: 15px;
    }
    
    .service-carousel-caption {
        font-size: 1.2rem;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 640px) {
    .service-carousel-wrapper {
        border-radius: 12px;
    }
    
    .service-carousel-slide {
        aspect-ratio: 1 / 1;
    }
    
    .service-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        opacity: 0.8;
    }
    
    .service-carousel-arrow.prev {
        left: 10px;
    }
    
    .service-carousel-arrow.next {
        right: 10px;
    }
    
    .service-carousel-dots {
        gap: 8px;
        margin-top: 1.5rem;
    }
    
    .service-carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .service-carousel-dot.active {
        width: 24px;
    }
}

/* ========================================
   AREAS WE SERVE - LOCAL SEO SECTION
   ======================================== */
.areas-we-serve {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
    position: relative;
}

.areas-we-serve .container {
    max-width: 1100px;
}

.areas-we-serve .areas-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.areas-we-serve .areas-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.areas-we-serve .areas-header h2 .accent {
    color: var(--gold-primary);
    font-style: italic;
}

.areas-we-serve .areas-header .areas-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 1.25rem auto 1.5rem;
    border: 0;
}

.areas-we-serve .areas-intro {
    max-width: 780px;
    margin: 0 auto;
    color: #555;
    font-size: 1.02rem;
    line-height: 1.8;
}

.areas-we-serve .areas-intro strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.areas-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 2.25rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.areas-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(169, 131, 41, 0.12);
}

.areas-card .areas-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.areas-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--gray-dark);
    margin-bottom: 1.1rem;
    line-height: 1.3;
}

.areas-card .areas-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem 0.45rem;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .areas-card .areas-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .areas-card .areas-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .areas-card .areas-list {
        grid-template-columns: 1fr;
    }
}

.areas-card .city {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.75rem;
    background: #fbfaf6;
    border: 1px solid #eee6cf;
    border-radius: 8px;
    color: var(--gray-dark);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.areas-card .city::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-accent);
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.areas-card .city:hover {
    background: var(--white);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateX(3px);
    box-shadow: 0 4px 14px rgba(169, 131, 41, 0.12);
}

.areas-card .city:hover::before {
    background: var(--gold-primary);
    transform: scale(1.3);
}

.areas-card.primary-card {
    background: linear-gradient(180deg, #fffdf6 0%, #fbf4de 100%);
    border-color: #f0e4b8;
}

.areas-card.primary-card .city {
    background: rgba(255, 255, 255, 0.7);
    border-color: #f0e4b8;
}

.areas-card.primary-card .city::before {
    background: var(--gold-primary);
}

.areas-card.primary-card .city:hover {
    background: var(--white);
    border-color: var(--gold-primary);
}

.areas-services-block {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid #eee6cf;
    border-bottom: 1px solid #eee6cf;
}

.areas-services-block p {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    max-width: 860px;
    margin: 0 auto;
}

.areas-services-block p strong {
    color: var(--gray-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .areas-we-serve {
        padding: 4rem 0;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .areas-card {
        padding: 1.75rem 1.5rem;
    }

    .areas-card h3 {
        font-size: 1.2rem;
    }

    .areas-card .city {
        font-size: 0.88rem;
        padding: 0.5rem 0.7rem;
    }
}
