/*
 *  NEW FENCE TAMPA - STYLESHEET
 *  Image Cropping Notes:
 *  - All carousel media: object-fit: cover with center focal point
 *  - Service images: 4:3 aspect ratio maintained via aspect-ratio property
 *  - Videos: 16:9 display ratio, cropped to fill container
 *  - All images preserve quality while filling containers aesthetically
 */

/* ============================================
 *  THEME SYSTEM - 3 Style Options for Demo
 *  ============================================ */

/* Theme 1: Professional Blue (Default) */
:root,
[data-theme="professional"] {
    --primary: #2c5282;        /* Professional blue - trustworthy, construction-oriented */
    --primary_light: #4299e1;  /* Lighter blue for hover states */
    --text: #1a202c;           /* Near-black for readability */
    --bg: #ffffff;
    --card: #f7fafc;           /* Very light gray for cards */
    --border: #e2e8f0;         /* Light border color */
    --muted: #4a5568;          /* Medium gray for secondary text */
    --accent: #48bb78;         /* Green accent for checkmarks/success */
    --max_w: 1200px;
    --section_pad: 80px 20px;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow_lg: 0 10px 40px rgba(0,0,0,0.15);
    --gradient_hero: linear-gradient(135deg, #2c5282, #4299e1);
    --shadow_color: rgba(44, 82, 130, 0.15);
}

/* Theme 2: Construction Orange - Bold, energetic, trades-focused */
[data-theme="construction"] {
    --primary: #c05621;        /* Burnt orange */
    --primary_light: #dd6b20;  /* Bright orange */
    --accent: #38a169;         /* Safety green */
    --text: #1a202c;
    --bg: #fffaf0;             /* Warm white */
    --card: #fff5eb;           /* Cream */
    --border: #fbd38d;         /* Light orange */
    --muted: #744210;          /* Brown */
    --gradient_hero: linear-gradient(135deg, #c05621, #dd6b20);
    --shadow_color: rgba(192, 86, 33, 0.2);
}

/* Theme 3: Coastal Teal - Tampa Florida coastal vibes */
[data-theme="coastal"] {
    --primary: #0987a0;        /* Deep teal */
    --primary_light: #38b2ac;  /* Light teal */
    --accent: #ed8936;         /* Coral/sunset orange */
    --text: #234e52;           /* Dark teal text */
    --bg: #e6fffa;             /* Mint cream */
    --card: #b2f5ea;           /* Light mint */
    --border: #81e6d9;         /* Seafoam */
    --muted: #2c7a7b;          /* Muted teal */
    --gradient_hero: linear-gradient(135deg, #0987a0, #38b2ac);
    --shadow_color: rgba(9, 135, 160, 0.2);
}

/* Dark mode adjustments for alternate themes */
@media (prefers-color-scheme: dark) {
    :root,
    [data-theme="professional"] {
        --text: #f7fafc;
        --bg: #1a202c;
        --card: #2d3748;
        --border: #4a5568;
        --muted: #a0aec0;
    }

    [data-theme="construction"] {
        --text: #fffaf0;
        --bg: #1a1005;
        --card: #2d1a0a;
        --border: #744210;
        --muted: #fbd38d;
    }

    [data-theme="coastal"] {
        --text: #e6fffa;
        --bg: #0d3331;
        --card: #1a4044;
        --border: #0987a0;
        --muted: #81e6d9;
    }
}

/* Theme Toggle Button Styles */
.theme_toggle_container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

.theme_toggle_btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow_color);
    transition: all 0.3s;
}

.theme_toggle_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow_color);
    background: var(--primary_light);
}

.theme_icon {
    font-size: 18px;
}

.theme_label {
    opacity: 0.9;
}

.theme_name {
    text-transform: capitalize;
}

/* Theme indicator dots */
.theme_toggle_btn::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive: Move toggle on mobile */
@media (max-width: 768px) {
    .theme_toggle_container {
        top: auto;
        bottom: 100px;
        right: 15px;
    }

    .theme_toggle_btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .theme_label {
        display: none;
    }
}

/* ============================================
 *  CLICK-TO-CALL BUTTON (mobile)
 *  ============================================ */
.call_now_btn {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 15px;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 9998;
    animation: call_pulse 2.5s infinite;
}

.call_now_icon { font-size: 16px; }

@keyframes call_pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.25); }
    50% { box-shadow: 0 4px 15px rgba(0,0,0,0.25), 0 0 0 8px var(--shadow_color); }
}

@media (max-width: 768px) {
    .call_now_btn { display: flex; }
}

/* CSS Variables & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    padding: 0 0 90px;
}

/* ============================================
 *  NAVIGATION
 *  ============================================ */
.navbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max_w);
    margin: 0 auto;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: var(--shadow);
}

@media (prefers-color-scheme: dark) {
    .navbar { background: rgba(26, 32, 44, 0.98); }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font: 700 24px/1 inherit;
    color: var(--primary);
    text-decoration: none;
}

.logo_img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.logo_text {
    display: block;
}

@media (max-width: 480px) {
    .logo_text { display: none; }
    .logo_img { height: 36px; }
}

.nav_links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav_links a {
    position: relative;
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav_links a:hover {
    color: var(--primary);
}

.nav_links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav_links a:hover::after { width: 100%; }

.navbar_right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang_toggle {
    display: flex;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3px;
    gap: 2px;
    flex-shrink: 0;
}

.lang_btn {
    padding: 6px 14px;
    border: none;
    background: transparent;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--muted);
    cursor: pointer;
    transition: 0.25s;
}

.lang_btn:hover { color: var(--primary); }

.lang_btn.active {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

.menu_toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    padding: 5px;
}

/* ============================================
 *  SECTIONS BASE
 *  ============================================ */
section {
    max-width: var(--max_w);
    min-height: auto;
    margin: 0 auto;
    padding: var(--section_pad);
}

.section_title {
    margin: 0 0 40px;
    font-size: 36px;
    text-align: center;
    color: var(--primary);
}

/* ============================================
 *  HOME / CAROUSEL SECTION
 *  ============================================
 *  FULL-WIDTH CAROUSEL NOTE:
 *  - On desktop (768px+): 100vw viewport width, breaks out of max-width container
 *  - Uses negative margin technique to span full width
 *  - Images cropped to 16:9 via object-fit: cover
 *  - Max-height: 70vh prevents excessive height on widescreens
 *  - Border-radius removed on desktop for edge-to-edge look
 */

/* Home section breaks out of max-width constraint */
.home_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    max-width: none;  /* Remove max-width constraint */
    width: 100%;
    padding: 0 0 80px;  /* No horizontal padding - full bleed */
}

/* Slogan stays constrained */
.home_section .slogan_section {
    max-width: var(--max_w);
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.carousel_container {
    position: relative;
    width: 100vw;  /* Full viewport width */
    height: 600px;
    max-height: 70vh;
    margin-left: calc(-50vw + 50%);  /* Center the full-width element */
    overflow: hidden;
    box-shadow: var(--shadow_lg);
}

/* Desktop: full bleed, no border radius */
@media (min-width: 769px) {
    .carousel_container {
        border-radius: 0;
    }
}

/* Mobile: constrained with padding and rounded corners */
@media (max-width: 768px) {
    .home_section {
        padding: 40px 20px 80px;
        max-width: var(--max_w);  /* Restore max-width on mobile */
    }

    .home_section .slogan_section {
        padding: 20px 0;
    }

    .carousel_container {
        width: 100%;
        height: 350px;
        max-height: 50vh;
        margin-left: 0;  /* Remove negative margin on mobile */
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .carousel_container {
        height: 280px;
    }
}

.carousel_slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel_slide.active { opacity: 1; }

/*
 *  CROPPING STRATEGY FOR CAROUSEL IMAGES:
 *  - object-fit: cover fills container, crops excess
 *  - object-position: center center maintains composition
 *  - width/height: 100% ensures no empty space
 *  - Images cropped to show fence details prominently
 */
.carousel_media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.carousel_arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.2s, background 0.2s;
    box-shadow: var(--shadow);
}

.carousel_arrow:hover {
    transform: scale(1.1);
    background: white;
}

.carousel_nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

.carousel_dot {
    width: 14px;
    height: 14px;
    border: 2px solid white;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}

.carousel_dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

/* Slogan area */
.slogan_section {
    padding: 20px;
    text-align: center;
}

.slogan_title {
    margin: 0 0 20px;
    font-size: 42px;
    line-height: 1.2;
    background: var(--gradient_hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slogan_desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.6;
}

/* ============================================
 *  SERVICES SECTION
 *  ============================================
 *  IMAGE CROPPING NOTES:
 *  - Service images: 4:3 aspect ratio via CSS
 *  - object-fit: cover prevents distortion
 *  - Rounded corners (8px) for modern aesthetic
 *  - Double image layout: 2-column grid within card
 *  - Icon placeholders for services without images
 */
.services_section { padding: 60px 20px; }

/* Accordion toggle button - visible only on mobile */
.accordion_toggle {
    display: none;
    width: 100%;
    padding: 15px 20px;
    margin: 0 0 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}

.accordion_icon {
    transition: transform 0.3s;
}

.accordion_toggle[aria-expanded="true"] .accordion_icon {
    transform: rotate(180deg);
}

/* Mobile: show accordion, hide grid by default */
@media (max-width: 768px) {
    .accordion_toggle {
        display: flex;
    }

    .services_grid {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .services_grid.expanded {
        max-height: 3000px;  /* Arbitrary large value for animation */
    }
}

.services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 0 0 50px;
}

.service_card {
    padding: 25px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow_lg);
}

.service_images {
    margin: 0 0 20px;
}

.service_images.single {
    display: block;
}

/*
 *  DOUBLE IMAGE LAYOUT:
 *  - 2-column grid for showing multiple angles/styles
 *  - Gap of 10px between images
 *  - Both images maintain 4:3 aspect ratio
 */
.service_images.double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/*
 *  SERVICE IMAGE CROPPING:
 *  - aspect-ratio: 4/3 maintains consistent proportions
 *  - overflow: hidden contains the image
 *  - border-radius: 8px matches card styling
 */
.service_img_container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    background: var(--border);
}

.service_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}

.service_card:hover .service_img {
    transform: scale(1.05);
}

/* Icon placeholder for services without images */
.service_icon_placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gradient_hero);
    border-radius: 8px;
    font-size: 48px;
    color: white;
}

.service_name {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--primary);
}

.service_desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Service highlights bar */
.service_highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    padding: 30px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    margin: 0 0 30px;
}

.highlight_item {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

/* ============================================
 *  LOCATIONS SECTION
 *  ============================================ */
.locations_section {
    padding: 60px 20px;
    background: var(--card);
}

/* Mobile accordion for locations */
@media (max-width: 768px) {
    .locations_content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .locations_content.expanded {
        max-height: 2000px;
    }
}

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

.locations_intro {
    margin: 0 0 30px;
    font-size: 20px;
    color: var(--muted);
}

.locations_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 0 0 30px;
}

.location_item {
    padding: 12px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: 0.2s;
}

.location_item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.locations_cta {
    font-size: 18px;
    color: var(--muted);
}

.locations_link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
    transition: opacity 0.2s;
}

.locations_link:hover { opacity: 0.8; }

/* ============================================
 *  CONTACT SECTION
 *  ============================================ */
.contact_section { padding: 60px 20px 100px; }

.contact_content {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 50px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact_subtitle {
    margin: 0 0 25px;
    font-size: 26px;
    color: var(--primary);
}

.contact_highlight {
    margin: 0 0 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--card), white);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.contact_tagline {
    font-size: 17px;
    color: var(--muted);
    font-style: italic;
    line-height: 1.7;
}

.contact_form_col {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.contact_form_intro {
    margin-bottom: 25px;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form_field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form_field label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
}

.form_field input,
.form_field select,
.form_field textarea {
    padding: 12px 14px;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form_field input:focus,
.form_field select:focus,
.form_field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.form_field textarea {
    resize: vertical;
    min-height: 110px;
}

.hp_field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.captcha_field { margin-top: 4px; }

.captcha_row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.captcha_question {
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    white-space: nowrap;
}

.captcha_row input {
    flex: 1;
    min-width: 110px;
}

.form_submit_btn {
    padding: 14px 24px;
    background: var(--gradient_hero);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.form_submit_btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.form_submit_btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.form_status {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.form_status_success {
    background: rgba(47, 133, 90, 0.12);
    border: 1px solid #2f855a;
    color: #2f855a;
}

.form_status_error {
    background: rgba(197, 48, 48, 0.12);
    border: 1px solid #c53030;
    color: #c53030;
}

.contact_sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 0 0 20px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact_item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact_item_featured {
    background: var(--gradient_hero);
    border-color: var(--primary);
    color: white;
}

.contact_item_featured .contact_label,
.contact_item_featured .contact_value,
.contact_item_featured .contact_note {
    color: white;
}

.contact_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    font-size: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

.contact_label {
    margin: 0 0 5px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
}

.contact_value {
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
}

.contact_phone {
    font-size: 28px;
    font-weight: 700;
}

.contact_note {
    margin: 5px 0 0;
    font-size: 14px;
    color: var(--muted);
}

.contact_phone_link,
.contact_email_link {
    color: inherit;
    text-decoration: none;
}

.contact_phone_link:hover,
.contact_email_link:hover {
    text-decoration: underline;
}

.contact_cta_box {
    margin: 30px 0 0;
    padding: 25px;
    text-align: center;
    background: var(--gradient_hero);
    color: white;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
}

.social_subtitle {
    margin: 0 0 25px;
    font-size: 26px;
    color: var(--primary);
}

.social_grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social_link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: 0.3s;
}

.social_link:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.social_icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
}

.social_name {
    font-size: 18px;
    font-weight: 600;
}

.social_note {
    margin: 25px 0 0;
    padding: 20px;
    background: var(--card);
    border-radius: 8px;
    color: var(--muted);
    font-size: 15px;
    text-align: center;
}

/* ============================================
 *  FOOTER
 *  ============================================ */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
}

@media (prefers-color-scheme: dark) {
    .footer { background: rgba(26, 32, 44, 0.98); }
}

.footer_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: var(--max_w);
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb_sep { color: var(--border); }

.footer_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font: 700 20px/1 inherit;
    color: var(--primary);
}

.footer_logo_img {
    height: 30px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
}

.footer_social { display: flex; gap: 12px; }

.footer_social_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--muted);
    font-size: 16px;
    text-decoration: none;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: 0.3s;
}

.footer_social_link:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
 *  RESPONSIVE DESIGN
 *  ============================================ */
@media (max-width: 768px) {
    .menu_toggle { display: block; }
    .navbar_right { gap: 12px; }
    .lang_btn { padding: 5px 10px; font-size: 12px; }

    .nav_links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        opacity: 0;
        transition: 0.3s;
        pointer-events: none;
    }

    .nav_links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .slogan_title { font-size: 32px; }
    .services_grid { grid-template-columns: 1fr; }
    .service_highlights { flex-direction: column; align-items: center; }
    .locations_grid { grid-template-columns: repeat(2, 1fr); }
    .contact_content { grid-template-columns: 1fr; gap: 40px; }
    .contact_form_col { padding: 25px 20px; }
    .form_row { grid-template-columns: 1fr; }
    .breadcrumbs { display: none; }
    .footer_content { justify-content: center; gap: 20px; }
    .contact_phone { font-size: 24px; }
    .footer_logo_img { display: none; }  /* Hide logo image in footer on mobile to save space */
}

@media (max-width: 480px) {
    .logo { font-size: 19px; }
    .navbar_right { gap: 8px; }
    .lang_toggle { padding: 2px; }
    .lang_btn { padding: 4px 8px; font-size: 11px; }
    .carousel_arrow { width: 40px; height: 40px; font-size: 20px; }
    .locations_grid { grid-template-columns: 1fr; }
    .section_title { font-size: 28px; }
    .slogan_title { font-size: 26px; }
    .slogan_desc { font-size: 17px; }
}
