/* Icon Font */
@font-face {
    font-family: 'ETmodules';
    font-display: block;
    src: url(wp-content/themes/Divi/core/admin/fonts/modules/all/modules.eot);
    src: url(wp-content/themes/Divi/core/admin/fonts/modules/all/modules.eot?#iefix) format('embedded-opentype'),
         url(wp-content/themes/Divi/core/admin/fonts/modules/all/modules.woff) format('woff'),
         url(wp-content/themes/Divi/core/admin/fonts/modules/all/modules.ttf) format('truetype'),
         url(wp-content/themes/Divi/core/admin/fonts/modules/all/modules.svg#ETmodules) format('svg');
    font-weight: 400;
    font-style: normal;
}

/* CSS Reset - Minimal and functional */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #666;
    background-color: #fff;
    font-weight: 500;
    transition: padding-top 0.3s ease;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* Utility Classes */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.column {
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #333;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* Mobile Header */
.mobile-header-wrapper {
    display: none;
}

@media (max-width: 980px) {
    .mobile-header-wrapper {
        display: block;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: relative;
        z-index: 999;
    }
}

.mobile-header {
    padding: 15px 0;
}

.mobile-info-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-logo img {
    height: 50px;
    width: auto;
}

.mobile-info {
    flex: 1;
    text-align: right;
}

.mobile-address {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.mobile-phone a {
    font-size: 16px;
    font-weight: 700;
    color: #2ea3f2;
    text-decoration: none;
}

.logo-container {
    transition: all 0.4s ease-in-out;
    position: absolute;
    height: 100%;
    width: 100%;
}

.logo-helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

#logo {
    vertical-align: middle;
}

#top-navigation {
    font-weight: 600;
    padding-top: 33px;
}

#top-menu-nav,
#top-menu {
    line-height: 0;
    float: left;
}

#top-menu li {
    display: inline-block;
    font-size: 14px;
    padding-right: 22px;
}

#top-menu li a {
    padding-bottom: 33px;
    display: block;
    color: #333;
    transition: color 0.3s ease;
}

#top-menu li a:hover {
    color: #2ea3f2;
}

/* Mobile Navigation Menu - Bootstrap-inspired compact design */
.mobile-nav-menu {
    display: none;
    background-color: #000000; /* Black background */
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 998;
}

@media (max-width: 980px) {
    .mobile-nav-menu {
        display: block;
    }
    
    /* Sticky mobile menu */
    .mobile-nav-menu.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        animation: slideDown 0.3s ease-out;
    }
    
    /* Add padding to body when menu is sticky */
    body.mobile-menu-sticky {
        padding-top: 47px; /* Height of mobile menu */
    }
}

.mobile-menu-container {
    padding: 0;
    min-width: 320px; /* Prevent layout from breaking on very small screens */
    overflow-x: auto; /* Allow horizontal scroll if needed */
}

.mobile-menu-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 320px; /* Match container min-width */
}

.mobile-menu-item {
    flex: 1 1 33.333%;
    margin: 0;
}

/* Make last two items take up 50% each */
.mobile-menu-item:nth-child(4),
.mobile-menu-item:nth-child(5) {
    flex: 1 1 50%;
}

.mobile-menu-link {
    display: block;
    padding: 12px 15px;
    color: #ecf0f1;
    text-align: center;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Remove right border from last item in each row */
.mobile-menu-item:nth-child(3) .mobile-menu-link,
.mobile-menu-item:nth-child(5) .mobile-menu-link {
    border-right: none;
}

/* Remove bottom border from last row */
.mobile-menu-item:nth-child(4) .mobile-menu-link,
.mobile-menu-item:nth-child(5) .mobile-menu-link {
    border-bottom: none;
}

/* Hover and active states */
.mobile-menu-link:hover,
.mobile-menu-link:focus {
    background-color: rgba(237, 187, 95, 0.1); /* Subtle orange background */
    color: #edbb5f; /* Orange color matching hero button */
    text-decoration: none;
}

.mobile-menu-link.active {
    background-color: rgba(237, 187, 95, 0.15);
    color: #edbb5f; /* Orange color for active state */
}

/* Subtle animation on hover */
.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.mobile-menu-link:hover::before {
    left: 100%;
}

/* Optional: Add icons to menu items */
.mobile-menu-link::after {
    content: '';
    display: none; /* Hidden by default, can be enabled if icons are needed */
    margin-left: 5px;
    font-family: 'ETmodules';
    font-size: 14px;
    vertical-align: middle;
}

/* Responsive adjustments for very small screens */
@media (max-width: 495px) {
    .mobile-menu-link {
        padding: 10px 8px;
        font-size: 12px;
        letter-spacing: 0.3px;
    }
}

/* Even smaller adjustments for iPhone SE and similar */
@media (max-width: 375px) {
    .mobile-menu-link {
        padding: 10px 5px;
        font-size: 11px;
        letter-spacing: 0.2px;
    }
    
    /* Reduce the body padding when sticky */
    body.mobile-menu-sticky {
        padding-top: 42px; /* Reduced height */
    }
}

/* For very narrow screens (320px) */
@media (max-width: 320px) {
    .mobile-menu-link {
        padding: 8px 4px;
        font-size: 10px;
        letter-spacing: 0;
    }
    
    body.mobile-menu-sticky {
        padding-top: 38px; /* Further reduced */
    }
}

/* Desktop Header */
.desktop-header-wrapper {
    display: none;
}

@media screen and (min-width: 981px) {
    .desktop-header-wrapper {
        display: block;
    }
}

/* Top Info Bar */
.top-info-bar {
    background: #fff;
    padding: 20px 0;
}

.top-info-bar .row {
    align-items: center;
}

.logo-column {
    flex: 0 0 25%;
}

.info-column {
    flex: 0 0 75%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}

.desktop-logo {
    height: 80px;
    width: auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    font-size: 24px;
    color: #2ea3f2;
}

.info-icon:before {
    font-family: 'ETmodules';
    font-weight: normal;
    font-style: normal;
}

.address-info .info-icon:before {
    content: '\e081'; /* Map pin icon */
}

.hours-info .info-icon:before {
    content: '\e08a'; /* Clock icon */
}

.phone-info .info-icon:before {
    content: '\e090'; /* Phone icon */
}

.info-content h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.info-content p {
    font-size: 12px;
    margin: 0;
    color: #666;
}

.phone-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2ea3f2;
    color: #fff;
    padding: 15px 30px;
    border-radius: 3px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background: #1a8cdb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 163, 242, 0.3);
}

/* Sticky Navigation */
.sticky-nav {
    background-color: #151515;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 99998;
    transition: all 0.3s ease;
}

.sticky-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.desktop-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.menu-item {
    padding: 0 20px;
}

.menu-item a {
    color: #ccc;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 20px 0;
    display: block;
}

.menu-item a:hover,
.menu-item a.active {
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 8%;
    padding-bottom: 260px;
    background-color: rgba(255, 255, 255, 0);
}

.parallax-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.parallax-background {
    position: absolute;
    top: -20%; /* Extend above viewport to hide gap during parallax */
    left: 0;
    right: 0;
    bottom: 0;
    height: 120%; /* Make taller to account for parallax movement */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform-origin: top center;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content-wrapper {
    text-align: right;
    max-width: 550px;
}

/* Hero content animation on load */
.hero-content {
    opacity: 0;
    animation: heroFadeUp 1.2s ease-out 0.5s forwards;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    margin-bottom: 30px;
}

.hero-subtitle {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #f2b632;
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 52px;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1.1em;
    text-shadow: 0.01em 0em 0.2em #000000;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Saira Extra Condensed', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
}

.hero-button:after {
    content: attr(data-icon);
    font-family: 'ETmodules';
    font-weight: normal;
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-button:hover {
    color: #edbb5f;
    border-color: #edbb5f;
}

.hero-button:hover:after {
    transform: translateX(5px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    cursor: pointer;
    animation: scrollBounce 2s infinite;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Secondary CTA Section */
.secondary-cta-section {
    background: #f7f7f7;
    padding: 50px 0;
    text-align: center;
}

.cta-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

/* Show desktop version by default */
.cta-heading-desktop {
    display: inline;
}

.cta-heading-mobile {
    display: none;
}

/* Switch to mobile version on smaller screens */
@media (max-width: 600px) {
    .cta-heading-desktop {
        display: none;
    }
    
    .cta-heading-mobile {
        display: inline;
    }
    
    .cta-heading {
        font-size: 18px;
        line-height: 1.4;
        text-align: center; /* Keep centered on mobile */
        margin-bottom: 20px;
    }
}

/* Further adjustments for very small screens */
@media (max-width: 400px) {
    .cta-heading {
        font-size: 16px;
        line-height: 1.3;
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-address {
    display: flex;
    gap: 20px;
}

.address-link {
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: #2ea3f2;
}

.cta-phone-button {
    background: #2ea3f2;
    color: #fff;
    padding: 15px 30px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-phone-button:hover {
    background: #1a8cdb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 163, 242, 0.3);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

/* Column Layout */
.col-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 15px;
    text-transform: none;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    margin-bottom: 30px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background-color: #2ea3f2;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: #fff;
}

.about-content {
    margin-top: 20px;
}

.about-text {
    text-align: center;
    padding: 0 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
    padding-bottom: 180px; /* Extra padding for bottom divider */
}

.services-content {
    margin-top: 40px;
}

.service-detail {
    text-align: center;
    padding: 0 30px;
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.service-divider {
    width: 40px;
    height: 2px;
    background-color: #2ea3f2;
    margin: 0 auto 30px;
}

.service-text {
    text-align: left;
    margin-bottom: 30px;
}

.service-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.service-button-wrapper {
    margin-top: 30px;
}

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

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-image a {
    display: block;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-image:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Service Gallery */
.service-gallery {
    margin-top: 80px;
    margin-bottom: 40px;
}

.gallery-row {
    margin: 0 -5px;
}

.gallery-row .column {
    padding: 0 5px;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.gallery-image:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

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

/* Section Bottom Divider */
.section-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V60C0,60,400,0,600,0C800,0,1200,60,1200,60V0Z" fill="%23ffffff"/></svg>');
    background-size: cover;
    background-position: top center;
    z-index: 1;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #2ea3f2;
    color: #fff;
    border: 2px solid #2ea3f2;
}

.btn-primary:hover {
    background-color: #1a8cdb;
    border-color: #1a8cdb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 163, 242, 0.3);
}

/* Projects Section */
.projects-section {
    background-color: #fff;
    padding: 80px 0;
}

.projects-gallery {
    margin-top: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: #f7f7f7;
}

.project-item a {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 66.66%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.project-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.project-overlay-content {
    display: none; /* Hide the plus icon */
}

.project-item:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

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

.project-item:hover .project-overlay {
    opacity: 1;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-up {
    transform: translateY(30px);
}

.fade-up.animated {
    transform: translateY(0);
}

.fade-down {
    transform: translateY(-30px);
}

.fade-down.animated {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-left.animated {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(30px);
}

.fade-right.animated {
    transform: translateX(0);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #2ea3f2;
}

.form-control.error {
    border-color: #dc3545;
}

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

.form-message {
    margin: 15px 0;
    padding: 10px 15px;
    border-radius: 3px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Quote/Contact Section */
.quote-section {
    background-color: #f7f7f7;
    padding: 80px 0;
}

.quote-content {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form button[type="submit"] {
    margin-top: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: #2ea3f2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1a8cdb;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
    .desktop-header-wrapper {
        display: none;
    }
    
    /* Hero adjustments for mobile */
    .hero-section {
        height: 300px;
        min-height: 300px;
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        align-items: center;
    }
    
    .hero-title {
        font-size: 27px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content-wrapper {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-container {
        justify-content: center;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .hero-text {
        margin-bottom: 20px;
    }
    
    .hero-button {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .info-column {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-address {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Column Layout Mobile */
    .col-2,
    .col-3,
    .col-4,
    .col-6,
    .col-8 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    /* About Section Mobile */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-text {
        padding: 0 10px;
    }
    
    /* Services Section Mobile */
    .services-content .row {
        flex-direction: column-reverse;
    }
    
    .service-detail {
        padding: 0 15px;
        margin-top: 30px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .service-text {
        text-align: center;
    }
    
    .service-images {
        margin-bottom: 30px;
    }
    
    .gallery-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-row .column {
        flex: none;
        max-width: none;
        margin-bottom: 0;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    .section-bottom-divider {
        height: 100px;
    }
    
    /* Projects Section Mobile */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .project-item a {
        padding-bottom: 75%; /* Slightly taller on mobile */
    }
    
    /* Quote Section Mobile */
    .quote-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .cta-heading {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .about-text p,
    .service-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    /* Projects Section Very Small Screens */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .project-item a {
        padding-bottom: 66.66%; /* Back to 3:2 ratio */
    }
}

/* Mobile Intro Animation Styles */
@media (max-width: 980px) {
    /* Initially hide all animate-on-scroll elements on mobile load */
    body:not(.mobile-intro-complete) .animate-on-scroll {
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
    }
    
    /* When animated class is added, elements become visible */
    body:not(.mobile-intro-complete) .animate-on-scroll.animated {
        opacity: 1;
    }
}


