/* ============================================
   ATLANTA KITCHEN EXPERTS - MASTER STYLESHEET
   Combined styles for homepage & service pages
   ============================================ */

/* ============================================
   1. CSS VARIABLES & RESET
   ============================================ */

:root {
    --navy: #1a0a00;
    --navy-rgb: 26, 10, 0;
    --navy-dark: #0f0600;
    --white: #ffffff;
    --orange: #c9a84c;
    --light-gray: #fdf8f0;
    --dark-gray: #2c1a00;
    --border-gray: #e8d5a3;
} 

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Header Styles */
header {
    background: var(--navy);
    /* Synced with social proof bar */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    /* Uniform padding for all pages */
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo img {
    width: 160px;
    /* Uniform logo width for all pages */
    height: auto;
}

nav {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav li {
    position: relative;
}

nav a {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

nav a:hover {
    color: var(--orange);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    white-space: nowrap;
    color: var(--navy);
    /* Keep dark text on white dropdown background */
}

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

/* Google Maps style pin icon for zip codes */
.zip-pin {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: text-top;
    position: relative;
    top: 4px;
}

.zip-pin svg {
    width: 100%;
    height: 100%;
    display: block;
}

.header-phone {
    display: none;
    color: var(--orange);
    font-weight: 700;
    font-size: 24px;
    /* Increased for better visibility */
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Nav Active State */
@media (max-width: 1023px) {

    /* Center logo on mobile */
    .header-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .logo {
        grid-column: 2;
        justify-self: center;
    }

    .mobile-menu-toggle {
        grid-column: 3;
    }

    nav.nav-active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav.nav-active ul {
        flex-direction: column;
        gap: 5px;
    }

    nav.nav-active .dropdown-menu {
        position: static;
        display: none;
        background: var(--white);
        box-shadow: none;
        margin-top: 10px;
        border-radius: 4px;
        padding: 10px 15px;
    }

    nav.nav-active .dropdown.open .dropdown-menu {
        display: block;
    }

    nav.nav-active .dropdown-menu a {
        padding: 6px 0;
    }

    nav.nav-active a {
        padding: 5px 0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(var(--navy-rgb), 0.7), rgba(var(--navy-rgb), 0.7));
    color: var(--white);
    padding: 30px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.tagline {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

.hero-services-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: var(--orange);
    color: var(--white);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(var(--navy-rgb), 0.15);
    text-align: center;
    border: none;
}

.hero-services-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(var(--navy-rgb), 0.2);
}

.hero-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: var(--navy);
    color: var(--white);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(var(--navy-rgb), 0.3);
    text-align: center;
}

.hero-call-btn:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(var(--navy-rgb), 0.4);
    color: var(--white);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    align-items: stretch;
}

.hero-features {
    list-style: none;
    margin-bottom: 30px;
}

.hero-features li {
    margin-bottom: 12px;
    font-size: 16px;
}

.hero-features li:before {
    content: "✓ ";
    color: var(--orange);
    font-weight: bold;
    margin-right: 8px;
}

.hero-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-form h3 {
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 22px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-gray);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--orange);
}

.form-disclaimer {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    color: var(--dark-gray);
}

/* Glassmorphism Card Styles */
.glass-cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px;
    /* Minimal padding */
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    /* Minimal gap */
    align-items: center;
    /* margin: 0 auto; Removed to be fully controlled by grid */
    margin: 0 auto;
}

.glass-cta-card h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.glass-benefit-list {
    list-style: none;
    margin-bottom: 5px;
    /* Minimal space before button */
    width: 100%;
}

.glass-benefit-item {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 15px;
    margin-bottom: 5px;
    transition: transform 0.3s ease, background 0.3s ease;

    /* Vertical Alignment Grid */
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    text-align: left;
}

.glass-benefit-item::before {
    content: "✓";
    color: #48bb78;
    font-weight: 900;
    font-size: 18px;
    grid-column: 1;
    grid-row: 1 / span 2;
    /* Centered relative to the text lines */
    margin-top: 2px;
}

.glass-benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.glass-benefit-title {
    font-weight: 700;
    font-size: 16px;
    /* Slightly smaller for better grid fit */
    display: block;
    margin-bottom: 0px;
    /* Removed gap */
    line-height: 1.1;
    grid-column: 2;
}

.glass-benefit-desc {
    font-size: 13px;
    opacity: 0.9;
    display: block;
    line-height: 1.1;
    grid-column: 2;
}

.glass-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--navy);
    /* Model matching blue */
    color: var(--white);
    padding: 6px 15px;
    /* Reduced vertical padding for lower height */
    border-radius: 12px;
    font-size: 18px;
    /* Slightly smaller for proportion */
    font-weight: 700;
    text-align: center;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(var(--navy-rgb), 0.4);
    width: 100%;
    /* Spans the full width of the card's padding */
}

.glass-cta-button:hover {
    background: var(--navy-dark);
    transform: scale(1.02);
    color: var(--white);
}

.phone-icon-emoji {
    font-size: 24px;
}

/* Social Proof Bar */
.social-proof {
    background: var(--navy);
    color: var(--white);
    padding: 25px 20px;
    /* Increased for better spacing on mobile */
    text-align: center;
}

.social-proof-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-proof-items span {
    font-size: 14px;
}

/* Section General Styles */
section {
    padding: 40px 20px;
}

.section-light {
    background: var(--light-gray);
}

h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 15px;
}

h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

/* Side by Side Layouts */
.side-by-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.side-by-side img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* About Section Layout */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

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

.about-text h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: auto;
    order: -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Services Grid */
.services-list {
    max-width: 1200px;
    margin: 30px auto 0;
}

.service-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-gray);
}

.service-item:last-child {
    border-bottom: none;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--orange);
}

.process-step h3 {
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 20px;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* USP Grid */
.usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.usp-item {
    background: var(--white);
    padding: 15px;
    /* Reduced from 30px */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.usp-item h3 {
    font-size: 18px;
    /* Slightly smaller */
    margin-bottom: 5px;
}

.usp-item .icon {
    font-size: 32px;
    /* Reduced from 48px */
    margin-bottom: 10px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 30px auto 0;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: var(--orange);
    font-size: 18px;
}

.testimonial-text {
    line-height: 1.7;
    color: var(--dark-gray);
}

/* Service Areas */
.areas-top-row {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

@media (min-width: 1024px) {
    .areas-top-row {
        grid-template-columns: 1fr 30%;
    }

    .zip-card {
        position: sticky;
        top: 100px;
    }
}

.areas-intro {
    margin-bottom: 0;
}

/* ZIP Card */
.zip-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.zip-card h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.zip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.zip-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.zip-list li a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.zip-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.zip-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    margin: 0 0 10px 0;
}



.cities-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0;
}

.cities-list li {
    padding: 10px;
    background: var(--white);
    border-radius: 4px;
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

details {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

summary {
    padding: 20px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary:before {
    content: "+";
    margin-right: 10px;
    font-size: 24px;
    color: var(--orange);
}

details[open] summary:before {
    content: "−";
}

.faq-answer {
    padding: 0 20px 20px;
    line-height: 1.7;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 30px auto 0;
}

.contact-box {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-box .icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--navy);
}

.contact-box p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.contact-box a {
    color: var(--orange);
    font-weight: 600;
}

.contact-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    color: var(--navy);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-col p,
.footer-col ul {
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: var(--white);
    opacity: 0.9;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--orange);
}

.footer-stars {
    color: var(--orange);
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    margin: 0 10px;
}

/* Sticky Call Button */
#sticky-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: #00C921;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

#sticky-call:hover {
    transform: scale(1.1) translateY(-5px);
    background: #00a81c;
}

@media (min-width: 768px) {
    #sticky-call {
        bottom: 30px;
    }
}

/* Service Row Styles */
/* Services Grid & Card Styles */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(var(--navy-rgb), 0.25);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(var(--navy-rgb), 0.35);
}

.service-card .icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

.service-card .learn-more-link {
    display: inline-block;
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.service-card .learn-more-link:hover {
    border-bottom-color: var(--orange);
    transform: translateX(5px);
}

/* Mobile Styles */
@media (max-width: 767px) {
    h2 {
        font-size: 24px;
    }

    /* Make hero buttons full width on mobile */
    .hero-call-btn,
    .hero-services-btn {
        flex: 1 1 100%;
        text-align: center;
    }

    .hero-services-btn {
        padding: 6px 30px;
        /* Reduced vertical padding */
    }
}

/* Tablet Styles */
@media (min-width: 768px) {

    .hero-content {
        grid-template-columns: 1fr 40%;
        /* Right side (card) takes exactly 40% of the space */
        align-items: center;
        gap: 50px;
    }

    .hero-text h1 {
        font-size: 42px;
        text-align: left;
    }

    .tagline {
        text-align: left;
    }

    .social-proof {
        padding: 10px 20px;
    }

    .social-proof-items {
        gap: 30px;
    }

    .social-proof-items span {
        font-size: 16px;
    }

    .side-by-side {
        grid-template-columns: 1fr 1fr;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
    }

    .about-image {
        order: 0;
    }

    .about-text {
        text-align: left;
    }

    .about-text h2 {
        text-align: left;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cities-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Desktop Styles */
@media (min-width: 1024px) {
    nav {
        display: block;
    }

    .header-phone {
        display: inline-block;
        background-color: rgba(72, 187, 120, 0.2);
        color: #48bb78;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-left: 15px;
    }

    .header-phone:hover {
        background-color: rgba(72, 187, 120, 0.3);
        color: #48bb78;
        transform: translateY(-2px);
    }

    .mobile-menu-toggle {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(5, 1fr);
		gap: 20px; 
    }

    .hero-text h1 {
        font-size: 48px;
        text-align: center;
    }

    .hero-text .tagline {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Ghost button style for desktop only */
    .hero-services-btn {
        background: transparent;
        border: 3px solid var(--orange);
        box-shadow: none;
    }

    .hero-services-btn:hover {
        background: var(--orange);
        color: var(--white);
        box-shadow: 0 6px 16px rgba(var(--navy-rgb), 0.2);
    }

    .process-timeline {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .process-step {
        flex: 0 1 calc(33.333% - 20px);
        min-width: 300px;
        padding: 15px 20px;
        display: block;
        /* Vertical layout within cards for 3-col fit */
        text-align: center;
        margin-bottom: 0;
    }

    .process-step h3 {
        flex: none;
        margin-bottom: 8px;
    }

    .usp-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cities-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ============================================
   SERVICE PAGES STYLES
   ============================================ */

/* Breadcrumbs */
.breadcrumbs {
    background: var(--light-gray);
    padding: 15px 0;
}

.breadcrumbs-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.breadcrumbs-list li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: var(--dark-gray);
}

.breadcrumbs-list a {
    color: var(--navy);
}

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

/* Service Hero */
.service-hero {
    background: linear-gradient(rgba(var(--navy-rgb), 0.85), rgba(var(--navy-rgb), 0.85)), url('../images/kitchen-renovation-hero.jpg') center/cover;
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.service-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero .tagline {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Overview */
.service-overview {
    padding: 60px 20px;
    background: var(--white);
}

.service-overview-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.service-overview h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 30px;
    text-align: center;
}

.service-content {
    font-size: 18px;
    line-height: 1.8;
}

.service-content p {
    margin-bottom: 20px;
}

/* Service CTA Card */
.service-cta-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 12px;
    padding: 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--white);
    text-align: center;
}

.service-cta-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--white);
}

.service-cta-card p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.cta-features li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-features li:last-child {
    border-bottom: none;
}

.cta-features li::before {
    content: "✓";
    color: #48bb78;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
}

.cta-phone {
    display: block;
    background: var(--orange);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-phone:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--navy-rgb), 0.15);
}

.cta-schedule {
    display: block;
    background: transparent;
    color: var(--white);
    padding: 8px 28px;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-schedule:hover {
    background: var(--white);
    color: var(--navy);
}

.cta-badge {
    display: inline-block;
    background: rgba(72, 187, 120, 0.2);
    color: #48bb78;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* What's Included Section */
.whats-included {
    padding: 60px 20px;
    background: var(--light-gray);
}

.whats-included h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 40px;
    text-align: center;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.included-item {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.included-item-icon {
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}

.included-item h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
}

.included-item p {
    font-size: 16px;
    color: var(--dark-gray);
}

/* Process Section (Service Pages) */
.process-section {
    padding: 60px 20px;
    background: var(--white);
}

.process-section h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 40px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 20px 15px;
    background: var(--navy);
    border-radius: 8px;
    color: var(--white);
}

.step-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 16px;
    color: var(--white);
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: var(--light-gray);
}

.faq-section h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list details {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-list summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--navy);
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    font-size: 24px;
    color: var(--orange);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* CTA Section (Service Pages) */
.cta-section {
    padding: 60px 20px;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE - SERVICE PAGES
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .service-overview-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 32px;
    }

    .service-hero .tagline {
        font-size: 18px;
    }

    .service-overview h2,
    .whats-included h2,
    .process-section h2,
    .faq-section h2,
    .cta-section h2 {
        font-size: 28px;
    }

    /* Mobile - Réduire les espacements des sections */
    .service-overview,
    .whats-included,
    .process-section,
    .faq-section,
    .cta-section {
        padding: 40px 20px;
    }

    .service-content {
        text-align: center;
    }

    /* Mobile - Réduire gap des grilles */
    .included-grid {
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .process-steps {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile - Réduire taille des cercles numérotés */
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 40px;
        margin-bottom: 12px;
    }

    /* Mobile - Réduire padding des process steps */
    .process-step {
        padding: 20px 15px;
    }

    .process-step h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .process-step p {
        font-size: 15px;
    }

    /* Mobile - Réduire padding des included items */
    .included-item {
        padding: 12px;
    }

    .included-item-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .included-item h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .included-item p {
        font-size: 14px;
    }

    /* Mobile - Titres de section */
    .service-overview h2,
    .whats-included h2,
    .process-section h2 {
        margin-bottom: 25px;
    }

    /* Mobile - CTA Card */
    .service-cta-card {
        padding: 18px 18px;
    }

    .cta-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .service-cta-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .service-cta-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-features {
        margin-bottom: 20px;
    }

    .cta-features li {
        padding: 6px 0;
        font-size: 14px;
        gap: 10px;
    }

    .cta-features li::before {
        font-size: 18px;
    }

    .cta-phone {
        padding: 9px 25px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .cta-schedule {
        padding: 7px 25px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   LOCATION MAP SECTION (Find Kitchen Remodeling)
   ============================================ */
.location-map-section {
    padding: 40px 20px;
    background: var(--white);
}

.location-map-section h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 10px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 16px;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.location-map-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-column {
    width: 100%;
}

.map-wrapper {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.contact-column {
    width: 100%;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--white);
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-details h4 {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-details p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.3;
}

.contact-details a {
    color: #48bb78;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}

.contact-details a:hover {
    color: #68d391;
}

.contact-cta {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-btn-primary {
    display: block;
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn-primary:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--navy-rgb), 0.15);
}

.contact-btn-secondary {
    display: block;
    background: transparent;
    color: var(--white);
    padding: 8px 20px;
    border: 2px solid var(--white);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Desktop Layout - 65/35 split */
@media (min-width: 1024px) {
    .location-map-container {
        grid-template-columns: 65% 35%;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .location-map-section {
        padding: 40px 20px;
    }

    .location-map-section h2 {
        font-size: 28px;
    }

    .section-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-info-card h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .contact-icon {
        font-size: 24px;
        width: 40px;
        height: 40px;
    }

    .contact-details h4 {
        font-size: 16px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .contact-details a {
        font-size: 18px;
    }
}
/* ============================================
   CALL EXPERT BUTTON (before Process Section)
   ============================================ */
.call-expert-wrapper {
    text-align: center;
    margin: 30px auto;
}
.call-expert-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    width: auto;
}
/* Mobile - Compact version */
@media (max-width: 768px) {
    .call-expert-wrapper {
        margin: 20px auto 15px;
    }
    .call-expert-btn {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        max-width: 85%;
        white-space: normal;
        line-height: 1.3;
    }
}