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

.cta-feature h3 {
    line-height: 1.4;
}

:root {
    --primary-color: #1ea5de;
    --primary-light: #5ED4DB;
    --primary-dark: #103558;
    --secondary-color: #1E4D6B;
    --secondary-dark: #143A52;
    --navy-blue: #2A5173;
    --dark-color: #103558;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #999999;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #28A745;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.15);
}

.accordion-item.active h3 {
  display: none;
}

.accordion-item.active p {
  padding-top: 15px;
}

.accordion-item.active .accordion-content {
    max-height: max-content !important;
}

a.btn.btn-primary, a.btn-secondary, .section-badge, a.cta-link, a.sticky-btn, span.cta-badge, a.btn.btn-large, a.footer-cta-button, .work-item, a.work-button, span.feature-tag {
    border-radius: 17px !important;
}

.accordion-item.active li {
  margin-left: 20px;
  padding-top: 10px;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 22.4px;
    color: var(--gray-dark);
    background-color: var(--white);
    font-weight: 400;
    font-style: normal;
}

.locationbold {
text-decoration: underline;
}

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

/* Header */
.header {
    background-color: transparent;
    position: absolute;
    top: 41px; /* Account for top bar height */
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 20px;
}

.hizo-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.header.scrolled .hizo-logo {
    filter: none;
}

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

span.btn-icon {
    color: #19415c;
}

.phone-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.phone-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, #1ea5de, #103558);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(60, 188, 195, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(60, 188, 195, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    flex: 1;
}

.hero-badge {
    position: absolute;
    right: 5%;
    bottom: -50px;
    z-index: 4;
    width: 300px;
    height: 300px;
}

.hero-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

a.quote-btn:hover {
    color: white;
}

.hero-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 1.5rem;
    line-height: 26px;
    font-weight: 500;
    max-width: 800px;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 2.5rem;
    line-height: 24px;
    font-weight: 400;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border 0.25s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.btn-primary {
    background-color: #1ea5de;
    border-color: #1ea5de;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: #1ea5de;
    border-color: #1ea5de;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Quality Services Section */
.quality-services {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.quality-services h2 {
    font-size: 36px;
    color: #103558;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    line-height: 42px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quality-services p {
    font-size: 16px;
    line-height: 22.4px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    color: var(--gray-medium);
    font-weight: 400;
}

/* Promo Video Section */
.promo-video {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.promo-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video-text h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

.video-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    font-weight: 400;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: #000;
    max-width: 500px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 0;
}

.play-button {
    background: rgba(30, 165, 222, 0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-button:hover {
    background: rgba(30, 165, 222, 1);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 165, 222, 0.4);
}

.play-button svg {
    margin-left: 4px;
}

@media (max-width: 768px) {
    .promo-video {
        padding: 4rem 0;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .video-text h2 {
        font-size: 32px;
    }
    
    .video-text p {
        font-size: 16px;
    }
    
    .video-features {
        align-items: center;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--white);
}

.services h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    line-height: 42px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-intro {
    text-align: center;
    font-size: 16px;
    line-height: 22.4px;
    margin-bottom: 3.5rem;
    color: var(--gray-medium);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

@media (max-width: 768px) {
    .service-card {
        padding: 0 !important;
    }

.type-card {
padding: 0 !important;
}

.hero-badge {
        right: 32% !important;
}
}

.service-image-gallery {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    transform: scale(1);
}

.gallery-image.active {
    opacity: 1;
    transform: scale(1.1);
}

.service-card:hover .gallery-image.active {
    transform: scale(1.15);
}

/* Subtle zoom effect during display */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    margin: -35px auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin: 0 2.5rem 1.5rem;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
}

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

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2.5rem 2.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-item:hover {
    background: rgba(30, 165, 222, 0.05);
    border-color: rgba(30, 165, 222, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(30, 165, 222, 0.3);
}

.service-item-icon i {
    font-size: 18px;
    color: white;
}

.service-item-content {
    flex: 1;
}

.service-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-item p {
    font-size: 15px;
    line-height: 22px;
    color: var(--gray-medium);
    margin: 0;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 165, 222, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(60, 188, 195, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

.why-choose .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.why-choose-stats .stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-choose-stats .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-stats .stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.85;
    font-weight: 400;
    margin: 0;
}

/* Building Types Section */
.building-types {
    padding: 5rem 0;
    background-color: var(--white);
}

.building-types h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 3.5rem;
    text-align: center;
    font-weight: 600;
    line-height: 42px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.type-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(60, 188, 195, 0.03), rgba(94, 212, 219, 0.03));
}

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

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

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

.type-card h3 {
    font-size: 20px;
    margin: 1.5rem 2rem 1rem;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 26px;
}

.type-card p {
    line-height: 22.4px;
    color: var(--gray-medium);
    font-size: 16px;
    font-weight: 400;
    padding: 0 2rem 2rem;
    margin: 0;
}

/* Service Areas Section */
.service-areas {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 165, 222, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(60, 188, 195, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-areas .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(30, 165, 222, 0.3);
}

.service-areas h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

.section-header p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.areas-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.area-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.area-card:hover .area-overlay {
    opacity: 1;
}

.area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 165, 222, 0.05), rgba(60, 188, 195, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(30, 165, 222, 0.3);
}

.area-icon i {
    font-size: 32px;
    color: white;
}

.area-content {
    position: relative;
    z-index: 2;
}

.area-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.area-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.area-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(30, 165, 222, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(30, 165, 222, 0.2);
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.coverage-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('./assets/featured-commercial-insulation-project.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 77, 107, 0.4) 0%, 
        rgba(42, 81, 115, 0.4) 100%);
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(60, 188, 195, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(60, 188, 195, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.cta-section .container {
    position: relative;
    z-index: 3;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 42px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section > .container > p {
    font-size: 16px;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 22.4px;
}

.cta-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 20px 20px 0 0;
}

.cta-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(60, 188, 195, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.cta-content p {
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border 0.25s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #1ea5de;
    border-color: #1ea5de;
    color: #fff;
}

.btn-large:hover,
.btn-large:active {
    background-color: #1ea5de;
    border-color: #1ea5de;
    color: #fff;
}

/* Button Icon */
.btn-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Featured Work Section */
.featured-work {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.featured-work h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
    line-height: 42px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.work-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.work-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.work-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.work-cta {
    margin-top: 1rem;
}

.work-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.work-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 165, 222, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    margin-bottom: 80px; /* Space for sticky bottom menu */
}

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

/* Footer About Section */
.footer-about {
    max-width: 350px;
}

.footer-about h3 {
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 26px;
    color: white;
    text-transform: uppercase;
}

.footer-about p {
    line-height: 22.4px;
    opacity: 0.9;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.business-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.business-item {
    font-size: 14px;
    line-height: 20px;
    opacity: 0.85;
}

.business-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer Section Headers */
.footer-section h4 {
    font-size: 18px;
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.footer-section h5 {
    font-size: 16px;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section p {
    line-height: 22.4px;
    opacity: 0.9;
    font-size: 16px;
    font-weight: 400;
}

/* Footer Lists */
.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.35rem 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 400;
}

.footer-section ul li:hover {
    opacity: 1;
}

.footer-services-list a,
.footer-areas-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-services-list a:hover,
.footer-areas-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Contact Section */
.footer-contact {
    max-width: 300px;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 0.75rem;
    font-size: 14px;
    line-height: 20px;
}

.contact-item strong {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
}

.phone-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

/* Footer CTA */
.footer-cta {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta p {
    margin-bottom: 1rem;
    font-size: 14px;
    opacity: 0.9;
}

.footer-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    margin: 0.25rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 165, 222, 0.4);
}

.footer-cta-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.footer-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright {
    flex: 1;
    min-width: 300px;
}

.copyright p {
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    max-width: 600px;
}

.footer-bottom-links {
    flex-shrink: 0;
    min-width: 250px;
}

.footer-bottom-links nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 0.25rem 0;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        align-items: center;
    }
    
    .copyright {
        min-width: auto;
        order: 2;
    }
    
    .copyright p {
        max-width: 100%;
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        order: 1;
        min-width: auto;
    }
    
    .footer-bottom-links nav {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature,
.type-card,
.area-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1),
.feature:nth-child(1),
.type-card:nth-child(1),
.area-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2),
.feature:nth-child(2),
.type-card:nth-child(2),
.area-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature:nth-child(3),
.type-card:nth-child(3),
.area-item:nth-child(3) {
    animation-delay: 0.3s;
}

.type-card:nth-child(4),
.area-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Header Navigation */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links > a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.75rem 0;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    text-transform: uppercase;
}

.header.scrolled .nav-links > a {
    color: var(--gray-dark);
    text-shadow: none;
}

/* Ensure navigation is white in transparent mode */
.header:not(.scrolled) .nav-links > a {
    color: white;
}

.header:not(.scrolled) .dropdown-toggle {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

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

.nav-links > a:hover {
    color: var(--primary-color);
}

.nav-links > a:hover::after {
    width: 100%;
}

/* Remove hover underline for dropdown toggles */
.dropdown-toggle::after {
    display: none !important;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header.scrolled .dropdown-toggle {
    color: var(--gray-dark);
    text-shadow: none;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle {
    color: var(--primary-color);
}

.header.scrolled .nav-dropdown:hover .dropdown-toggle {
    color: var(--primary-color);
}

.header:not(.scrolled) .nav-dropdown:hover .dropdown-toggle {
    color: rgba(255, 255, 255, 0.8);
}

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

.dropdown-menu {
    position: fixed;
    top: calc(100px + 10px);
    left: 50%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-top: 3px solid var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: calc(100vw - 80px);
    max-width: 1200px;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: grid;
    grid-template-columns: 45% 31% 1fr;
    gap: 2rem;
}

.dropdown-menu.single-column {
    position: absolute;
    grid-template-columns: 1fr;
    width: 240px;
    max-width: none;
    gap: 0;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%) translateY(-10px);
    padding: 1.25rem;
}

.nav-dropdown:hover .dropdown-menu.single-column {
    transform: translateX(-50%) translateY(0);
}

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

.dropdown-section {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    transition: color 0.3s ease;
}

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

.dropdown-subsection {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-subsection a,
.dropdown-menu.single-column > a {
    font-size: 0.85rem;
    color: var(--gray-medium);
    text-decoration: none;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 0.75rem;
    line-height: 1.4;
    display: block;
}

.dropdown-subsection a:hover,
.dropdown-menu.single-column > a:hover {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

/* Featured Services Styling */
.featured-services {
    background: rgba(248, 249, 250, 1);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(60, 188, 195, 0.2);
}

.featured-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.featured-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.featured-item:hover {
    background: rgba(60, 188, 195, 0.1);
}

.featured-item:last-child {
    margin-bottom: 0;
}

.featured-item i {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.featured-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.featured-item strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
}

.featured-item span {
    font-size: 0.75rem;
    color: var(--gray-medium);
    line-height: 1.3;
}

.featured-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(60, 188, 195, 0.3);
}

.featured-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.featured-cta a:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Top Bar */
.top-bar {
    background: rgba(30, 77, 107, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.header.scrolled .top-bar {
    display: none;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

/* Top Bar Styling - all items uniform */

/* Navigation CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta .quote-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header.scrolled .nav-cta .quote-btn {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-shadow: none;
}

/* Ensure CTA buttons are white in transparent mode */
.header:not(.scrolled) .nav-cta .quote-btn {
    color: white;
    border-color: white;
}

.header:not(.scrolled) .nav-cta .phone-btn {
    background: var(--primary-color);
    color: white;
}

.nav-cta .quote-btn:hover {
    background: var(--primary-color);
    color: white;
}

.nav-cta .phone-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta .phone-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header:not(.scrolled) .hamburger-line {
    background-color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle:hover .hamburger-line,
.mobile-menu-toggle:active .hamburger-line {
    background-color: var(--primary-color);
}

.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-menu.active {
    transform: translateY(0) !important;
}

.mobile-menu a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    background-color: rgba(30, 165, 222, 0.05);
    padding-left: 16px;
}

.mobile-menu .nav-dropdown {
    width: 100%;
}

.mobile-menu .dropdown-toggle {
    display: block;
    width: 100%;
    position: relative;
}

.mobile-menu .dropdown-toggle i {
    float: right;
}

.mobile-menu .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--primary-color);
    padding: 8px 0 8px 16px;
    margin: 8px 0 8px 12px;
    width: 100% !important;
    max-width: none !important;
    background: rgba(30, 165, 222, 0.03);
}

.mobile-menu .dropdown-menu a {
    padding: 10px 12px;
    font-size: 0.9rem;
    border-bottom: none;
}

.mobile-menu .dropdown-section {
    margin-bottom: 12px;
}

.mobile-menu .dropdown-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.mobile-menu .featured-services {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-container {
        padding: 0 15px;
    }

    .top-bar-right {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: flex-end;
    }

    .top-bar a {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    /* Fix header positioning on mobile */
    .header {
        position: fixed !important;
        top: 0 !important;
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        border-bottom: 1px solid rgba(224, 224, 224, 0.3);
    }

    /* Navigation Mobile */
    .nav-container {
        padding: 0.75rem 15px;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .logo {
        flex: 1;
    }

    .logo svg {
        max-width: 160px;
        height: auto;
    }

    /* Fix logo visibility on mobile - remove white filter */
    .hizo-logo {
        filter: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .hamburger-line {
        background-color: var(--gray-dark) !important;
    }

    .header.scrolled .hamburger-line {
        background-color: var(--gray-dark) !important;
    }

    /* Add padding to body to account for fixed header */
    body {
        padding-top: 60px;
    }
    
    /* Dropdown Mobile Adjustments */
    .dropdown-menu {
        width: 100vw;
        max-width: none;
        left: 0;
        transform: translateX(0) translateY(-10px);
        padding: 1.5rem;
        border-radius: 5px;
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .dropdown-menu.single-column {
        width: calc(100vw - 40px);
        left: 20px;
        max-width: 300px;
        padding: 1rem;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        transform: translateX(0) translateY(0);
    }
    
    .dropdown-section {
        margin-bottom: 1.5rem;
    }
    
    .dropdown-section:last-child {
        margin-bottom: 0;
    }
    
    .featured-services {
        padding: 1.25rem;
    }
    
    .featured-item {
        padding: 0.4rem;
        margin-bottom: 0.75rem;
    }
    
    .featured-item strong {
        font-size: 0.8rem;
    }
    
    .featured-item span {
        font-size: 0.7rem;
    }
    
    .hero {
        padding: 3rem 1.5rem 4rem;
        min-height: 500px;
        margin-top: 0; /* No extra margin since header is fixed */
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 1rem;
    }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .hero-subtext {
        font-size: 0.85rem;
        line-height: 1.4;
        display: none; /* Hide secondary text on very small screens */
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        letter-spacing: 0.5px;
    }
    
    h2 {
        font-size: 28px !important;
        line-height: 34px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .why-choose-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .types-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .service-areas h2 {
        font-size: 32px;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .area-card {
        padding: 2rem;
    }
    
    .hero-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -40px;
        width: 200px;
        height: 200px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        min-height: 48px; /* Better touch target */
        font-size: 0.95rem;
        padding: 14px 24px;
    }

    .btn-text {
        font-size: 0.9rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-section > .container > h2 {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .service-card {
        padding: 0;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin: 0 1rem 0.75rem;
    }

    .service-item {
        padding: 17px 0;
    }

    .services, .building-types, .service-areas {
        padding: 3rem 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2rem;
    }
    
    .footer-about,
    .footer-contact {
        max-width: 100%;
    }
    
    
    .footer-cta {
        padding: 1rem;
    }
    
    .footer-cta-button {
        display: block;
        margin: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .dropdown-menu {
        max-width: 900px;
        gap: 1.5rem;
        padding: 1.75rem;
    }
    
    .dropdown-menu.single-column {
        width: 260px;
        padding: 1.25rem;
    }
    
    .featured-services {
        padding: 1.5rem;
    }
    
    .nav-container {
        max-width: 1000px;
        padding: 1rem 20px;
    }
    
    .top-bar-container {
        max-width: 1000px;
    }
}

/* Sticky Bottom Menu */
.sticky-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1ea5de 0%, #3CBCC3 100%);
    color: white;
    z-index: 1000;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.sticky-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    min-height: 70px;
    padding: 12px 24px;
    gap: 16px;
}

.sticky-menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sticky-menu-item:first-child {
    justify-content: flex-start;
}

.sticky-menu-item:last-child {
    justify-content: flex-end;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 8px;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 44px;
    position: relative;
    overflow: hidden;
}

.sticky-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.sticky-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sticky-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sticky-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.sticky-text {
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.sticky-social {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.sticky-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 44px;
    min-width: 44px;
}

.sticky-social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.sticky-social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Responsive sticky menu */
@media (max-width: 768px) {
    .footer {
        margin-bottom: 90px; /* Larger space for mobile sticky menu */
    }
    
    .sticky-bottom-menu {
        min-height: 80px;
    }
    
    .sticky-menu-container {
        grid-template-columns: 1fr 1fr;
        padding: 16px 20px;
        min-height: 80px;
        gap: 12px;
    }
    
    .sticky-menu-item:first-child,
    .sticky-menu-item:last-child {
        justify-content: center;
    }
    
    .sticky-social {
        display: none;
    }
    
    .sticky-text {
        font-size: 0.85rem;
    }
    
    .sticky-btn {
        padding: 14px 18px;
        font-size: 0.9rem;
        min-height: 48px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .hero-text {
        font-size: 0.875rem;
    }

    h2 {
        font-size: 24px !important;
        line-height: 30px !important;
    }

    .service-card h3,
    .type-card h3,
    .area-item h3 {
        font-size: 1.1rem !important;
    }

    .service-item,
    .feature-item {
        font-size: 0.875rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-image-gallery {
        height: 200px;
    }

    .type-card,
    .area-card {
        padding: 1.5rem;
    }

    .hero-badge {
        width: 150px;
        height: 150px;
        bottom: -30px;
    }

    .quality-services {
        padding: 3rem 1rem;
    }

    .quality-services h2 {
        font-size: 22px !important;
        line-height: 28px !important;
    }

    .quality-services p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* Hide top bar on very small screens */
    .top-bar {
        display: none !important;
    }

    /* Header at top without top bar */
    .header {
        position: fixed !important;
        top: 0 !important;
    }

    /* Adjust body padding for header only */
    body {
        padding-top: 60px !important;
    }

    .footer-section h3,
    .footer-about h3 {
        font-size: 1.1rem !important;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        top: 60px;
        bottom: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
        padding: 3rem 1.5rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-subtext {
        display: none;
    }

    .hero-badge {
        display: none; /* Hide badge in landscape to save space */
    }
}

/* Improve touch targets and spacing */
@media (hover: none) and (pointer: coarse) {
    /* Touch device specific styles */
    a, button, .btn, .sticky-btn {
        min-height: 44px;
        min-width: 44px;
    }

    .service-item a,
    .dropdown-subsection a,
    .dropdown-menu.single-column > a {
        padding: 12px 16px;
        margin: 4px 0;
    }

    .nav-links a {
        padding: 12px 16px;
    }

    /* Prevent text selection issues on touch */
    .btn, .sticky-btn, .mobile-menu-toggle {
        -webkit-tap-highlight-color: rgba(30, 165, 222, 0.2);
        user-select: none;
    }

    /* Form inputs optimized for touch */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
    }

    textarea {
        min-height: 120px;
    }
}

/* Mobile form improvements */
@media (max-width: 768px) {
    #dynamic-form {
        max-width: 100% !important;
        padding: 1.5rem !important;
        border-radius: 8px !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        width: 100%;
        font-size: 16px; /* Prevents iOS zoom */
        padding: 14px 16px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        margin-bottom: 12px;
    }

    form label {
        font-size: 0.95rem;
        margin-bottom: 6px;
        display: block;
        font-weight: 500;
    }

    form button[type="submit"],
    form .submit-btn {
        width: 100%;
        min-height: 50px;
        font-size: 1rem;
        padding: 14px 24px;
        border-radius: 8px;
        margin-top: 12px;
    }

    /* Modal improvements for mobile */
    .modal-content {
        margin: 1rem;
        max-width: calc(100vw - 2rem) !important;
    }

    .modal-body {
        padding: 1.5rem !important;
    }

    .modal-header {
        padding: 1rem 1.5rem !important;
    }

    .modal-footer {
        padding: 1rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    #dynamic-form {
        padding: 1rem !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px;
        padding: 12px 14px;
    }

    form label {
        font-size: 0.9rem;
    }
}