/* Renowell Homes Inc. - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #0A2540;        /* Deep Navy Blue - Trust & Professionalism */
    --secondary-color: #CD7F32;      /* Muted Copper/Bronze - Warmth & Action */
    --accent-color: #D4722B;         /* Brighter Copper - Highlights */
    --dark-blue: #1E293B;            /* Dark Blue for text */
    --light-blue: #E8F0F7;           /* Light Blue tint */
    --background-light: #F5F5F5;     /* Light Gray - Clean Background */
    --text-dark: #212121;            /* Dark text */
    --text-gray: #616161;            /* Medium gray text */
    --white: #FFFFFF;                /* Crisp White */
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== Container & Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

/* ===== Header & Navigation ===== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--secondary-color);
}

.header-top a {
    color: var(--white);
    font-weight: 600;
    transition: all 0.2s ease;
}

.header-top a:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.contact-info a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-nav {
    padding: 18px 0;
    background-color: var(--primary-color);
}

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

.logo img {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu > li > a {
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding: 8px 0;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-menu > li > a:hover {
    color: var(--secondary-color);
}

/* Dropdown Menu */
.nav-menu li {
    position: relative;
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu .dropdown-toggle::after {
    content: '▼';
    font-size: 0.65rem;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    font-weight: bold;
}

.nav-menu .dropdown:hover .dropdown-toggle::after {
    transform: rotate(-180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 15px;
    padding: 12px 0;
    border-top: 3px solid var(--secondary-color);
    max-height: 500px;
    overflow-y: auto;
}

/* Custom Scrollbar for Dropdown */
.nav-menu .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.nav-menu .dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.nav-menu .dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.nav-menu .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

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

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 14px 24px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.nav-menu .dropdown-menu a::before {
    content: '›';
    position: absolute;
    left: 12px;
    opacity: 0;
    transition: all 0.2s ease;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-menu .dropdown-menu a::after {
    display: none;
}

.nav-menu .dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-left-color: var(--secondary-color);
    padding-left: 32px;
    color: var(--accent-color);
}

.nav-menu .dropdown-menu a:hover::before {
    opacity: 1;
    left: 16px;
}

/* Hide mobile contact info on desktop */
.mobile-contact-info {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: var(--secondary-color);
    border: 2px solid var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.3);
}

.mobile-menu-toggle:hover {
    background: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

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

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== Hero Section with Slider ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide-content .container {
    max-width: 1200px;
}

.hero-text {
    max-width: 700px;
    color: var(--white);
}

.hero-text h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.slider-prev,
.slider-next {
    background-color: rgba(25, 118, 210, 0.9);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--secondary-color);
    width: 30px;
    border-radius: 6px;
}

/* Old Hero Section (fallback) */
.hero {
    background: linear-gradient(135deg, var(--background-light) 0%, #E0E7FF 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ===== Service Cards ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-card ul {
    margin-bottom: 20px;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== Process Steps ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
}

/* ===== CTA Sections ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

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

.cta-section p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn-white {
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--white);
}

.cta-section .btn-white:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== About Section ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

.about-text p {
    margin-bottom: 20px;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.contact-item-content h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item-content p {
    color: var(--text-gray);
    margin: 0;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(91, 95, 219, 0.1);
}

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

.map-container {
    margin-top: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--background-light);
    color: var(--text-dark);
    padding-top: 60px;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid #E0E0E0;
    padding: 25px 0;
    text-align: center;
    background-color: var(--white);
}

.footer-bottom p {
    color: var(--text-gray);
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ===== Service Page Specific ===== */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.service-hero h1 {
    color: var(--white);
}

.service-hero p {
    color: var(--white);
    opacity: 0.95;
    font-size: 1.2rem;
}

.service-content {
    padding: 80px 0;
}

.service-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-main h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-main h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.sidebar-box h3 {
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(91, 95, 219, 0.1);
}

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

.service-list li a {
    color: var(--text-gray);
    transition: var(--transition);
    display: block;
}

.service-list li a:hover,
.service-list li a.active {
    color: var(--primary-color);
    padding-left: 10px;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero-content,
    .about-content,
    .contact-grid,
    .service-details {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    /* Mobile Menu Container */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 85%;
        max-width: 400px;
        height: 100vh;
        text-align: left;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2);
        padding: 80px 0 30px 0;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
    }

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

    /* Mobile Menu Backdrop */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        right: 0;
        width: calc(100vw - 85%);
        max-width: calc(100vw - 400px);
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    /* Mobile Menu Items */
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu > li > a {
        display: block;
        padding: 16px 25px;
        font-size: 1rem;
        width: 100%;
        text-align: left;
        color: var(--primary-color) !important;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    /* Mobile Dropdown Toggle */
    .nav-menu .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 16px 25px;
        color: var(--primary-color) !important;
    }

    .nav-menu .dropdown-toggle::after {
        content: '▼';
        font-size: 0.7rem;
        transition: transform 0.3s ease;
        margin-left: auto;
        color: #FF6F00;
    }

    .nav-menu .dropdown.active .dropdown-toggle::after {
        transform: rotate(-180deg);
    }

    /* Mobile Dropdown Menu */
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: linear-gradient(135deg, rgba(25, 118, 210, 0.08) 0%, rgba(30, 136, 229, 0.08) 100%);
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 3px solid #1976D2;
        border-radius: 0;
        border-top: none;
        padding: 0;
        width: 100%;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 800px;
        padding: 8px 0;
        margin-top: 8px;
    }

    /* Mobile Dropdown Items */
    .nav-menu .dropdown-menu li {
        border-bottom: 1px solid rgba(25, 118, 210, 0.1);
    }

    .nav-menu .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu .dropdown-menu a {
        padding: 14px 20px 14px 35px;
        font-size: 0.95rem;
        border-left: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-menu .dropdown-menu a::before {
        content: '›';
        position: static;
        opacity: 1;
        color: #FF6F00;
        font-size: 1.3rem;
        font-weight: bold;
        flex-shrink: 0;
    }

    .nav-menu .dropdown-menu a:hover,
    .nav-menu .dropdown-menu a:active {
        background: linear-gradient(90deg, rgba(25, 118, 210, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
        padding-left: 40px;
        color: #FF6F00;
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    /* Style primary button in mobile menu */
    .nav-menu .btn-primary {
        display: block;
        margin: 20px 25px;
        text-align: center;
        background-color: var(--secondary-color);
        color: var(--white) !important;
        padding: 14px 20px;
        border-radius: var(--border-radius);
        font-weight: 600;
        width: calc(100% - 50px);
        box-sizing: border-box;
    }

    .nav-menu .btn-primary:hover {
        background-color: var(--accent-color);
        color: var(--white) !important;
    }

    /* Mobile menu contact info */
    .mobile-contact-info {
        display: block;
        padding: 20px 25px;
        border-top: 2px solid rgba(0, 0, 0, 0.1);
        background: linear-gradient(135deg, rgba(10, 37, 64, 0.05) 0%, rgba(205, 127, 50, 0.05) 100%);
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-contact-info h4 {
        color: var(--primary-color);
        font-size: 0.9rem;
        margin-bottom: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: left;
    }

    .mobile-contact-info p {
        color: var(--text-dark);
        font-size: 0.9rem;
        margin: 8px 0;
        display: flex;
        align-items: center;
        gap: 8px;
        text-align: left;
        justify-content: flex-start;
    }

    .mobile-contact-info a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

    .mobile-contact-info a:hover {
        color: var(--secondary-color);
    }

    .mobile-social-links {
        display: flex;
        gap: 15px;
        margin-top: 15px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .mobile-social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #F5F5F5;
        color: var(--primary-color) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: 2px solid var(--primary-color);
    }

    .mobile-social-links a:hover {
        transform: translateY(-3px) scale(1.1);
        background: var(--primary-color);
        color: var(--white) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .mobile-social-links a:hover i {
        color: var(--white) !important;
    }

    .mobile-social-links a i {
        color: var(--primary-color) !important;
    }

    .service-sidebar {
        position: static;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 50px 0;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-slider {
        height: 500px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .slider-nav {
        bottom: 20px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-dots {
        bottom: 20px;
        right: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        font-size: 0.85rem;
        gap: 15px;
    }

    .logo img {
        height: 50px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .image-text-section {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 250px;
    }
}

/* ===== Image Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.gallery-item-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Service Image Cards ===== */
.service-card-with-image {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card-with-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-with-image:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-body {
    padding: 30px;
}

/* ===== Projects Showcase ===== */
.projects-showcase {
    background-color: var(--background-light);
    padding: 80px 0;
}

.project-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    margin-bottom: 30px;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== Image with Text Section ===== */
.image-text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

.image-text-section.reverse {
    direction: rtl;
}

.image-text-section.reverse > * {
    direction: ltr;
}

.section-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Video Showcase Section ===== */
.video-showcase {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--light-blue) 100%);
}

.video-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--text-dark);
    position: relative;
}

/* Vertical video aspect ratio (9:16) */
.video-container::before {
    content: '';
    display: block;
    padding-top: 177.78%; /* 9:16 aspect ratio for vertical video */
}

.renovation-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Video play button overlay */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(205, 127, 50, 0.95);
    border: 4px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
    background: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.video-play-button svg {
    width: 32px;
    height: 32px;
    color: var(--white);
    margin-left: 4px;
}

.video-play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Mobile responsiveness for vertical video */
@media (max-width: 768px) {
    .video-container {
        max-width: 500px;
        border-radius: 8px;
    }

    .video-play-button {
        width: 70px;
        height: 70px;
    }

    .video-play-button svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 640px) {
    .video-container {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .video-container {
        max-width: 100%;
        border-radius: 0;
    }

    .video-play-button {
        width: 60px;
        height: 60px;
    }

    .video-play-button svg {
        width: 24px;
        height: 24px;
    }
}

/* ===== Back to Top Button with Scroll Progress ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.back-to-top-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top-icon {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    z-index: 2;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke: var(--primary-color);
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    transition: stroke-dashoffset 0.1s linear;
}

/* Responsive Back to Top Button */
@media (max-width: 640px) {
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top-icon {
        font-size: 20px;
    }

    .progress-ring-circle {
        stroke-width: 2.5;
        stroke-dasharray: 176;
        stroke-dashoffset: 176;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}
