/*
Theme Name: ARCO Contracting
Theme URI: https://arcocontracting.com
Author: ARCO Team
Author URI: https://arcocontracting.com
Description: Professional Construction & Engineering WordPress Theme
Version: 1.0.0
License: GPL v2 or later
Text Domain: arco
Domain Path: /languages
*/

/* =========================================
   1. CSS Variables & Reset
   ========================================= */
:root {
    /* Colors */
    --primary-color: #FED403; /* Changed from #769923 to #FED403 */
    --secondary-color: #FFFFFF;
    --text-color: #7A7A7A;
    --heading-color: #1A1A1A;
    --bg-dark: #111111;
    --bg-light: #F9F9F9;
    --border-color: #E5E5E5;
    --accent-color: #0073aa;

    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;

    /* Transitions */
    --transition: all 0.3s ease-in-out;

    /* Shadows */
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-dark: 0 15px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 48px; }
h2 { font-size: 42px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

p {
    margin-bottom: 20px;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 10px;
    border: 1px solid var(--border-color);
}

th {
    background-color: var(--bg-light);
    font-weight: 700;
}

/* WordPress Specific */
.aligncenter {
    display: block;
    margin: 20px auto;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 20px;
}

.wp-caption-text {
    font-size: 14px;
    color: var(--text-color);
    font-style: italic;
    margin-top: 10px;
}

/* =========================================
   2. Utilities / Components
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    gap: 10px;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--heading-color);
}

.btn-primary:hover {
    background-color: var(--heading-color);
    color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--heading-color);
    border-color: var(--secondary-color);
}

.btn-dark {
    background-color: var(--heading-color);
    color: var(--secondary-color);
}

.btn-dark:hover {
    background-color: var(--primary-color);
    color: var(--heading-color);
}

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-text {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* WordPress Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
    background-color: var(--secondary-color);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(254, 212, 3, 0.2); /* Updated RGBA */
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* WordPress Widgets */
.widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--heading-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.widget ul {
    list-style: none;
    margin-left: 0;
}

.widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* WordPress Comments */
.comments-area {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.comment-meta {
    color: var(--text-color);
    font-size: 14px;
}

.comment-reply-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--heading-color);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

/* =========================================
   2a. Top Bar
   ========================================= */
.top-bar {
    background-color: var(--bg-dark);
    color: #aeaeae;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    color: var(--primary-color);
}

.top-bar-social a {
    color: #aeaeae;
    margin-left: 15px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--primary-color);
}

/* =========================================
   2b. Animations
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* =========================================
   3. Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    padding: 20px 0;
    transition: var(--transition);
}

.header.sticky {
    padding: 15px 0;
    box-shadow: var(--shadow-medium);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 28px;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.custom-logo {
    max-height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--heading-color);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    min-width: 200px;
    box-shadow: var(--shadow-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-radius: 5px;
    padding: 10px 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
}

.dropdown li a:hover {
    background-color: var(--bg-light);
}

/* Megamenu */
.has-megamenu .megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 30px;
    border-radius: 10px;
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-row {
    display: flex;
    gap: 30px;
}

.megamenu-col {
    flex: 1;
}

.megamenu-col h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}

.megamenu-col ul li {
    margin-bottom: 10px;
}

.megamenu-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.megamenu-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.megamenu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.megamenu-offer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    padding: 15px;
    border-radius: 5px;
}

.megamenu-offer span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.megamenu-offer h5 {
    margin: 5px 0 0;
    font-size: 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    font-size: 18px;
    cursor: pointer;
    color: var(--heading-color);
    transition: var(--transition);
}

.search-icon:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--heading-color);
    background: none;
    border: none;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        justify-content: space-between;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .has-dropdown .dropdown,
    .has-megamenu .megamenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        display: none;
    }

    .has-dropdown.active .dropdown,
    .has-megamenu.active .megamenu {
        display: block;
    }

    .dropdown li a {
        padding-left: 30px;
    }

    .megamenu-row {
        flex-direction: column;
        gap: 20px;
    }

    .megamenu-col h4 {
        margin-bottom: 10px;
    }

    .megamenu-image {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* =========================================
   4. Hero Slider
   ========================================= */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

.hero-slider-wrapper {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content-slider {
    max-width: 800px;
    color: var(--secondary-color);
}

.slide-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.slide-desc {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--secondary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--heading-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--primary-color);
}

.hero-social-sidebar {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: var(--secondary-color);
}

.hero-social-sidebar span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    letter-spacing: 2px;
}

.hero-social-sidebar .line {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-social-sidebar a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.hero-social-sidebar a:hover {
    color: var(--primary-color);
}

/* =========================================
   5. Stats Section
   ========================================= */
.stats-section {
    background-color: var(--bg-dark);
    color: var(--secondary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   6. What We Do Section
   ========================================= */
.what-we-do-section {
    background-color: var(--secondary-color);
    overflow: hidden;
}

.wwd-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.wwd-content {
    flex: 1;
}

.wwd-image {
    flex: 1;
    position: relative;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
}

.wwd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.wwd-image:hover img {
    transform: scale(1.05);
}

.wwd-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.wwd-feature-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.wwd-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.wwd-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.wwd-feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.wwd-feature-card p {
    font-size: 14px;
    color: var(--text-color);
}

/* =========================================
   7. Why Choose Us Section
   ========================================= */
.why-choose-section {
    background-color: var(--bg-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-choose-card {
    background-color: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-bottom-color: var(--primary-color);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(254, 212, 3, 0.1); /* Updated RGBA */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 24px;
    color: var(--primary-color);
}

.why-choose-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* =========================================
   8. Services Section
   ========================================= */
.services-section {
    background-color: #F9F9F9;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card-new {
    background-color: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    padding: 40px 30px 0;
    display: flex;
    flex-direction: column;
    height: 420px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card-new:hover {
    box-shadow: var(--shadow-dark);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-header-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-header-new h3 {
    font-size: 20px;
    max-width: 80%;
    line-height: 1.4;
}

.service-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--font-heading);
    opacity: 0.3;
}

.service-desc-new {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-img-new {
    margin-top: auto;
    width: 100%;
    height: 180px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.service-img-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-new:hover .service-img-new img {
    transform: scale(1.1);
}

/* =========================================
   9. Testimonials Section
   ========================================= */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonial-content {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    quotes: "“" "„" "‚" "‛";
    position: relative;
}

.testimonial-content:before {
    content: open-quote;
    font-size: 60px;
    color: var(--primary-color);
    position: absolute;
    left: -20px;
    top: -20px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.testimonial-author span {
    color: var(--text-color);
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--heading-color);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--heading-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* =========================================
   10. Features / Passion Section
   ========================================= */
.features-passion-section {
    background-color: var(--secondary-color);
}

.passion-heading {
    text-align: center;
    font-size: 42px;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.3;
    position: relative;
}

.passion-heading span.icon-box {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    vertical-align: middle;
    margin: 0 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.passion-heading span.avatars {
    display: inline-flex;
    vertical-align: middle;
    margin: 0 5px;
}

.passion-heading span.avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -15px;
    transition: var(--transition);
}

.passion-heading span.avatars img:hover {
    transform: translateY(-5px);
    z-index: 2;
}

.passion-heading span.avatars img:first-child {
    margin-left: 0;
}

.passion-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
}

.passion-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 350px;
    transition: var(--transition);
}

/* Card 1: Dark Image */
.passion-card.dark-img {
    background-color: #000;
}

.passion-card.dark-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}

.passion-card.dark-img:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

.passion-card.dark-img h3 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-size: 24px;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Card 2: Light Form style */
.passion-card.light-form {
    background-color: var(--bg-light);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.passion-card.light-form h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Card 3: Updated to new primary color */
.passion-card.yellow-color {
    background-color: var(--primary-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.passion-card.yellow-color h2 {
    font-size: 56px;
    margin-bottom: 10px;
    line-height: 1;
    color: var(--heading-color);
}

.passion-card.yellow-color p {
    font-size: 16px;
    color: var(--heading-color);
}

/* =========================================
   11. Projects Section
   ========================================= */
.projects-section {
    padding-bottom: 70px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-info h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.project-info p {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.project-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.project-link:hover {
    color: var(--primary-color);
}

/* =========================================
   12. CTA Section
   ========================================= */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2940&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0.1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--secondary-color);
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   13. Footer
   ========================================= */
.footer {
    background-color: var(--bg-dark);
    color: #aeaeae;
    padding-top: 80px;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-widget h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo h2 {
    color: var(--secondary-color);
    font-size: 32px;
    margin-bottom: 5px;
}

.footer-logo span {
    color: var(--primary-color);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-text {
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--heading-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
    min-width: 20px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p span {
    color: var(--primary-color);
    font-weight: 700;
}

.footer-bottom a {
    color: #aeaeae;
    margin: 0 10px;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* =========================================
   14. Back to Top Button
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--heading-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--heading-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

/* =========================================
   15. Page Specific Styles
   ========================================= */
/* Single Post/Page */
.page-header,
.post-header {
    margin-bottom: 60px;
    text-align: center;
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
}

.page-header h1,
.post-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.post-thumbnail {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
}

.post-content {
    line-height: 1.8;
}

.post-content h2 {
    margin-top: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.post-content h3 {
    margin-top: 30px;
}

/* Archive Pages */
.archive-header {
    margin-bottom: 60px;
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.archive-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.archive-description {
    font-size: 18px;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-post {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.blog-post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.blog-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .blog-post-thumbnail img {
    transform: scale(1.1);
}

.blog-post-content {
    padding: 30px;
}

.blog-post-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.blog-post-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-post-excerpt {
    color: var(--text-color);
    line-height: 1.6;
}

.blog-post-read-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-404 h1 {
    font-size: 120px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-404 h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Search Results */
.search-results-header {
    margin-bottom: 40px;
    padding: 40px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.search-results-count {
    font-size: 18px;
    color: var(--text-color);
}

/* =========================================
   16. Responsive Design
   ========================================= */
@media (max-width: 1200px) {
    .section-title {
        font-size: 36px;
    }

    .slide-title {
        font-size: 54px;
    }
    
    .passion-heading {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .wwd-layout {
        flex-direction: column;
        gap: 40px;
    }

    .wwd-image {
        height: 400px;
        width: 100%;
    }

    .passion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .passion-card {
        height: 300px;
    }

    .passion-heading {
        font-size: 28px;
    }

    .passion-heading span.icon-box {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .hero-slider-section {
        min-height: 700px;
    }
    
    .hero-social-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-slider-section {
        min-height: 700px;
    }

    .slider-controls {
        bottom: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 36px;
    }

    .wwd-features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1,
    .post-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .slide-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h3:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .error-404 h1 {
        font-size: 80px;
    }
    
    .error-404 h2 {
        font-size: 24px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .hero-slider-section,
    .cta-section,
    .nav-links,
    .mobile-menu-toggle,
    .search-icon {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .btn {
        display: none;
    }
}

/* =========================================
   NEW HEADER STYLES
   ========================================= */

/* Top Announcement Bar */
.top-announcement {
    background-color: #2b2b1f;
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.announcement-content i {
    color: #FED403;
    font-size: 14px;
}

.announcement-phone {
    color: #FED403;
    font-weight: 600;
    text-decoration: none;
    margin-left: auto;
}

.announcement-phone:hover {
    color: #ffffff;
}

/* Main Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #1a1a1a;
}

.logo-main {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #2b2b1f;
}

.logo-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #FED403;
    text-transform: uppercase;
    margin-top: 2px;
}

.logo-tagline {
    font-size: 10px;
    color: #7a7a7a;
    margin-top: 4px;
    letter-spacing: 1px;
}

/* Desktop Navigation */
.nav-desktop {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2b2b1f;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover {
    color: #FED403;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FED403;
    transition: width 0.3s ease;
}

.nav-menu > li:hover > a::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 15px 0;
    z-index: 1000;
}

.nav-menu > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    color: #2b2b1f;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #FED403;
    padding-left: 30px;
}

/* Megamenu Styles */
.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 30px;
    z-index: 1000;
}

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.megamenu-column h4 {
    font-size: 16px;
    color: #2b2b1f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FED403;
    display: flex;
    align-items: center;
    gap: 10px;
}

.megamenu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-column ul li {
    margin-bottom: 12px;
}

.megamenu-column ul li a {
    color: #7a7a7a;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.megamenu-column ul li a:hover {
    color: #FED403;
    transform: translateX(5px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search */
.header-search {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    color: #2b2b1f;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: #FED403;
}

.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 20px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-search:hover .search-form {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #2b2b1f;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background-color: #f8f9fa;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #2b2b1f;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lang-dropdown a:hover {
    background-color: #f8f9fa;
    color: #FED403;
}

/* Quote Button */
.btn-quote {
    background: linear-gradient(135deg, #FED403, #d4b402);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-quote:hover {
    background: linear-gradient(135deg, #d4b402, #FED403);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 212, 3, 0.3);
    color: #ffffff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2b2b1f;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    display: none;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #2b2b1f;
}

.mobile-logo span {
    color: #FED403;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #2b2b1f;
    cursor: pointer;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu li a {
    display: block;
    padding: 18px 20px;
    color: #2b2b1f;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.mobile-menu li a:hover {
    background-color: #f8f9fa;
    color: #FED403;
}

.mobile-contact {
    padding: 30px 20px;
    background-color: #f8f9fa;
}

.mobile-phone,
.mobile-email {
    display: block;
    color: #2b2b1f;
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
}

.mobile-phone:hover,
.mobile-email:hover {
    color: #FED403;
}

.mobile-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2b1f;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background-color: #FED403;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
}

.search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.search-content h3 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 32px;
}

.search-content .search-form {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
}

.search-content input[type="search"] {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 8px;
}

.popular-searches {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.popular-searches a {
    color: #FED403;
    margin-left: 15px;
    text-decoration: none;
}

.popular-searches a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Sticky Header */
.header.sticky .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .top-announcement {
        font-size: 12px;
    }
    
    .announcement-phone {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .btn-quote span {
        display: none;
    }
    
    .btn-quote {
        padding: 10px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    
    .mobile-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 24px;
    }
    
    .logo-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .search-content h3 {
        font-size: 24px;
    }
}