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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #EAEAEA;
    background-color: #1C1C1C;
    overflow-x: hidden;
}

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Better mobile handling */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    .container {
        width: 100%;
        max-width: 100vw;
        padding: 0 2vw;
    }
}

.container {
    max-width: 85vw;
    margin: 0 auto;
    padding: 0 1.5vw;
    justify-content: center;
    align-items: center;
}

/* Better mobile container behavior */
@media (max-width: 768px) {
    .container {
        max-width: 95vw;
        padding: 0 2vw;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 98vw;
        padding: 0 1vw;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #D97742;
    font-weight: 600;
    margin-bottom: 1.5vh;
}

.section-title {
    text-align: center;
    font-size: 4vh;
    margin-bottom: 5vh;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5vh;
    left: 50%;
    transform: translateX(-50%);
    width: 4vw;
    height: 0.4vh;
    background-color: #9E6F4C;
}

/* Buttons */
.btn {
    padding: 1.2vh 2.5vw;
    border: none;
    border-radius: 0.6vh;
    font-size: 1.5vh;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #9E6F4C;
    color: #EAEAEA;
    box-shadow: 0 0.4vh 1.5vh rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #8B5F3F;
    transform: translateY(-0.3vh);
    box-shadow: 0 0.8vh 2.5vh rgba(0, 0, 0, 0.6), 0 0.6vh 2vh rgba(158, 111, 76, 0.3);
}

.btn-secondary {
    background-color: rgba(217, 119, 66, 0.15);
    color: #D97742;
    border: 0.3vh solid #D97742;
    backdrop-filter: blur(10px);
    box-shadow: 0 0.4vh 1.5vh rgba(0, 0, 0, 0.4), 0 0.3vh 1vh rgba(217, 119, 66, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #D97742;
    color: #FFFFFF;
    transform: translateY(-0.3vh);
    box-shadow: 0 0.8vh 2.5vh rgba(0, 0, 0, 0.6), 0 0.8vh 2vh rgba(217, 119, 66, 0.5);
    border-color: #D97742;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 2vh;
    height: 2vh;
    top: 50%;
    left: 50%;
    margin-left: -1vh;
    margin-top: -1vh;
    border: 0.3vh solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: auto;
    min-height: 8vh;
    background-color: rgba(28, 28, 28, 0.4);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.5vh 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 0;
    box-shadow: 0 0.6vh 3vh rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transform: none !important;
}

.nav-container {
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 3vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
    gap: .5vw;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 1.5vw;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 10vh;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.company-name {
    display: flex;
    align-items: baseline;
    margin: 0;
    line-height: 1.1;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.engineer-text {
    /* color: #1B365D; */
    color: #D4AF37;
    font-size: 3.5vh;
    font-weight: 800;
    letter-spacing: 0.2vh;
    text-shadow: 0 0.2vh 0.5vh rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.ampersand {
    /* color: #D4AF37; */
    color: #1B365D;
    font-size: 2.8vh;
    font-weight: 600;
    margin: 0 0.5vw;
    text-shadow: 0 0.1vh 0.3vh rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.builder-text {
    color: #1B365D;
    color: #D4AF37;
    font-size: 2.8vh;
    font-weight: 700;
    letter-spacing: 0.1vh;
    text-shadow: 0 0.2vh 0.4vh rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.company-tagline {
    /* color: #D4AF37; */
    color: #1B365D;
    font-size: 1.6vh;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
    font-style: italic;
    transition: all 0.3s ease;
    letter-spacing: 0.1vh;
    text-shadow: 0 0.1vh 0.3vh rgba(0, 0, 0, 0.3);
}

.nav-logo a:hover .engineer-text {
    color: #D4AF37;
    transform: scale(1.02);
    text-shadow: 0 0.3vh 0.6vh rgba(212, 175, 55, 0.5);
}

.nav-logo a:hover .builder-text {
    color: #D4AF37;
    transform: scale(1.02);
    text-shadow: 0 0.3vh 0.5vh rgba(212, 175, 55, 0.5);
}

.nav-logo a:hover .ampersand {
    color: #1B365D;
    transform: scale(1.05);
    text-shadow: 0 0.2vh 0.4vh rgba(27, 54, 93, 0.4);
}

.nav-logo a:hover .company-tagline {
    color: #1B365D;
    transform: scale(1.02);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5vw;
    align-items: center;
}

/* Desktop styles for new structure */
.nav-menu-items {
    display: contents;
}

.nav-menu-items ul {
    display: flex;
    list-style: none;
    gap: 1.2vw;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu-items li {
    margin: 0;
    opacity: 1;
    transform: none;
    animation: none;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.nav-menu-items a {
    text-decoration: none;
    color: #EAEAEA;
    font-weight: 500;
    font-size: 1.6vh;
    padding: 0.8vh 1vw;
    border-radius: 0.8vh;
    letter-spacing: 0.05vh;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: auto;
    min-width: auto;
    border-radius: 0.8vh;
}

.nav-menu-items a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(158, 111, 76, 0.1), transparent);
    transition: left 0.5s ease;
    border-radius: 0.8vh;
}

.nav-menu-items a:hover::before {
    left: 100%;
}

.nav-menu-items a:hover {
    background-color: rgba(158, 111, 76, 0.1);
    color: #9E6F4C;
    transform: translateY(-0.1vh);
    box-shadow: 0 0.2vh 0.5vh rgba(158, 111, 76, 0.2);
    border: none;
}

.nav-contact-section {
    display: none;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 1.2vh;
    border-radius: 0;
    background-color: rgba(158, 111, 76, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    width: 6vh;
    height: 6vh;
}

.hamburger span {
    width: 4vw;
    height: 0.1vh;
    background-color: #D97742;
    margin: 0.5vh 0;
    transition: all 0.3s ease;
    border-radius: 0.3vh;
    box-shadow: 0 0.1vh 0.2vh rgba(0, 0, 0, 0.2);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-0.6vw, 0.8vh);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-0.6vw, -0.8vh);
}

.hamburger:hover {
    background-color: rgba(158, 111, 76, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0.2vh 0.5vh rgba(158, 111, 76, 0.3);
}

.menu-close {
    display: none;
    position: absolute;
    top: 50%;
    right: 3vw;
    transform: translateY(-50%);
    width: 5vh;
    height: 5vh;
    background-color: rgba(158, 111, 76, 0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1003;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 0.1vh solid rgba(158, 111, 76, 0.3);
    box-shadow: 0 0.2vh 0.5vh rgba(0, 0, 0, 0.2);
}

.menu-close i {
    font-size: 2.2vh;
    color: #9E6F4C;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background-color: rgba(158, 111, 76, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0.3vh 0.8vh rgba(158, 111, 76, 0.4);
    border-color: rgba(158, 111, 76, 0.5);
}

.menu-close:hover i {
    color: #D97742;
    transform: rotate(90deg);
}

/* Ensure close button and hamburger are hidden on desktop */
@media (min-width: 769px) {
    .menu-close {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    padding-left: 5vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

/* Removed overlay and controls for cleaner design */

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 70vw;
    padding: 0 2vw;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3vh;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2vh;
    padding: 4vh 4vw;
}

.hero-subtitle {
    font-size: 2vh;
    color: #9E6F4C;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2vh;
    margin: 0;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0.2vh 0.4vh rgba(0, 0, 0, 0.8), 0 0 1vh rgba(0, 0, 0, 0.6);
}

.hero-title {
    font-size: 7vh;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0.4vh 0.4vh 0.8vh rgba(0, 0, 0, 0.9), 0 0 2vh rgba(0, 0, 0, 0.7), 0 0 3vh rgba(158, 111, 76, 0.4);
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: 0.1vh;
    line-height: 1.1;
}

.hero-description {
    font-size: 2.2vh;
    color: #F5F5F5;
    margin: 0;
    text-shadow: 0.3vh 0.3vh 0.6vh rgba(0, 0, 0, 0.9), 0 0 1.5vh rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.4s both;
    line-height: 1.6;
    font-weight: 400;
    max-width: 60vw;
}

.hero-buttons {
    display: flex;
    gap: 2vw;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 2vh;
}

/* Services Section */
.services {
    padding: 8vh 0;
    background-color: #2A2A2A;
}

/* Better section spacing on mobile */
@media (max-width: 768px) {
    .services,
    .about,
    .why-choose-us,
    .projects,
    .cost-estimator,
    .testimonials,
    .instagram-section,
    .contact {
        padding: 6vh 0;
    }
}

@media (max-width: 480px) {
    .services,
    .about,
    .why-choose-us,
    .projects,
    .cost-estimator,
    .testimonials,
    .instagram-section,
    .contact {
        padding: 4vh 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
    margin-top: 3vh;
}

.service-card {
    background: #1C1C1C;
    padding: 2.5vh 2vw;
    border-radius: 1.5vh;
    text-align: center;
    box-shadow: 0 0.6vh 3vh rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 0.15vh solid rgba(158, 111, 76, 0.2);
}

.service-card:hover {
    transform: translateY(-1.5vh);
    box-shadow: 0 2vh 6vh rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 8vh;
    height: 8vh;
    background: linear-gradient(135deg, #9E6F4C, #8B5F3F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5vh;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 3vh;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 1.5vh;
    color: #D97742;
}

.service-card p {
    color: #B0B0B0;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 8vh 0;
    background: #1C1C1C;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6vw;
    align-items: center;
}

.about-text h2 {
    font-size: 4vh;
    margin-bottom: 2.5vh;
}

.about-text p {
    font-size: 1.8vh;
    color: #B0B0B0;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.stat {
    text-align: center;
    padding: 1.5vh;
    background: #2A2A2A;
    border-radius: 1.5vh;
    border-left: 0.6vh solid #9E6F4C;
}

.stat h3 {
    font-size: 4vh;
    color: #9E6F4C;
    margin-bottom: 0.8vh;
}

.stat p {
    color: #D97742;
    font-weight: 500;
}

/* Why Choose Us */
.why-choose-us {
    padding: 8vh 0;
    background-color: #2A2A2A;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
    margin-top: 3vh;
}

.feature-card {
    background: #1C1C1C;
    padding: 2vh;
    border-radius: 1.5vh;
    text-align: center;
    box-shadow: 0 0.6vh 3vh rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 0.15vh solid rgba(158, 111, 76, 0.2);
}

/* 8 cards in two rows - 4 cards per row, no centering needed */

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(158, 111, 76, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-0.8vh);
    box-shadow: 0 2vh 6vh rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 7vh;
    height: 7vh;
    background: linear-gradient(135deg, #D97742, #C66B35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5vh;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2.8vh;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #9E6F4C, #8B5F3F);
}

.feature-card h3 {
    margin-bottom: 1.5vh;
    color: #D97742;
}

.feature-card p {
    color: #B0B0B0;
    line-height: 1.6;
}

/* Projects Section */
.projects {
    padding: 8vh 0;
    background: #1C1C1C;
    position: relative;
    overflow: hidden;
}



/* Featured Project Video */
.featured-project {
    margin-bottom: 6vh;
    border-radius: 3vh;
    overflow: hidden;
    box-shadow: 0 2vh 6vh rgba(0, 0, 0, 0.4);
    position: relative;
    background: #2A2A2A;
}

.project-video-container {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.project-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.7), rgba(42, 42, 42, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3vh;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-video-container:hover .video-overlay {
    opacity: 1;
}

.project-video-container:hover video {
    transform: scale(1.05);
}

/* Project Slideshow Styles */
.project-slideshow-section {
    margin: 8vh 0;
}

.slideshow-title {
    font-size: 3.5vh;
    color: #9E6F4C;
    text-align: center;
    margin-bottom: 4vh;
    font-weight: 600;
    letter-spacing: 0.1vh;
}

.project-slideshow-container {
    position: relative;
    height: 70vh;
    overflow: hidden;
    border-radius: 2vh;
    box-shadow: 0 2vh 4vh rgba(0, 0, 0, 0.3);
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(28, 28, 28, 0.8), rgba(158, 111, 76, 0.3));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 4vh;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide:hover .slide-overlay {
    opacity: 1;
}

.slide-info {
    color: white;
    text-align: center;
    background: rgba(28, 28, 28, 0.9);
    padding: 2vh 3vw;
    border-radius: 1vh;
    border: 0.1vh solid rgba(158, 111, 76, 0.3);
}

.slide-info h4 {
    font-size: 2.5vh;
    margin-bottom: 1vh;
    color: #9E6F4C;
    font-weight: 600;
}

.slide-info p {
    font-size: 1.6vh;
    color: #EAEAEA;
    line-height: 1.4;
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2vw;
    pointer-events: none;
}

.slideshow-controls button {
    background: rgba(158, 111, 76, 0.8);
    border: none;
    color: white;
    font-size: 3vh;
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slideshow-controls button:hover {
    background: rgba(158, 111, 76, 1);
    transform: scale(1.1);
}

.slideshow-dots {
    position: absolute;
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1vh;
    pointer-events: none;
}

.slideshow-dots .dot {
    width: 1.5vh;
    height: 1.5vh;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slideshow-dots .dot.active {
    background: #9E6F4C;
    transform: scale(1.2);
}

.project-slideshow-container:hover .slide img {
    transform: scale(1.05);
}

.video-info {
    color: white;
    text-align: center;
}

.video-info h3 {
    font-size: 3.5vh;
    margin-bottom: 1.5vh;
    color: #D97742;
    font-weight: 600;
}

.video-info p {
    font-size: 1.8vh;
    color: #EAEAEA;
    opacity: 0.9;
}



/* Project Stats */
.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15vw, 1fr));
    gap: 3vw;
    margin-bottom: 5vh;
}

.stat-item {
    text-align: center;
    padding: 3vh;
    background: linear-gradient(135deg, rgba(158, 111, 76, 0.1), rgba(42, 42, 42, 0.3));
    border-radius: 2.5vh;
    border: 0.15vh solid rgba(158, 111, 76, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(158, 111, 76, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-0.8vh);
    box-shadow: 0 1.5vh 4.5vh rgba(158, 111, 76, 0.2);
    border-color: rgba(158, 111, 76, 0.4);
}

.stat-number {
    font-size: 5vh;
    font-weight: 700;
    color: #D97742;
    margin-bottom: 0.8vh;
    background: linear-gradient(135deg, #D97742, #9E6F4C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #B0B0B0;
    font-size: 1.6vh;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15vh;
}

.projects-button {
    text-align: center;
    margin-top: 5vh;
}

/* Cost Estimator */
.cost-estimator {
    padding: 8vh 0;
    background-color: #1C1C1C;
    justify-content: center;
    align-items: center;
}

.section-subtitle {
    text-align: center;
    align-items: center;
    font-size: 1.1rem;
    color: #B0B0B0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.estimator-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.estimator-form {
    background: #2A2A2A;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(158, 111, 76, 0.2);
    flex: 0 0 500px;
    max-width: 500px;
}

.estimator-form h3 {
    color: #D97742;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.estimator-form .form-group {
    margin-bottom: 1.5rem;
}

.estimator-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #D97742;
    font-weight: 500;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #B0B0B0;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background-color: rgba(158, 111, 76, 0.1);
    color: #EAEAEA;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #9E6F4C;
}

.estimate-result {
    position: sticky;
    top: 120px;
}

.result-card {
    background: #2A2A2A;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(158, 111, 76, 0.2);
    text-align: center;
    flex: 0 0 500px;
    max-width: 500px;
}

.result-card h3 {
    color: #D97742;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.result-card h3 i {
    color: #9E6F4C;
}

.estimate-details {
    margin-bottom: 2rem;
}

.estimate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(158, 111, 76, 0.2);
}

.estimate-item.total {
    border-bottom: none;
    border-top: 2px solid #9E6F4C;
    margin-top: 1rem;
    padding-top: 1.5rem;
    font-weight: 600;
}

.estimate-item .label {
    color: #B0B0B0;
    font-size: 1rem;
}

.estimate-item .value {
    color: #D97742;
    font-size: 1.1rem;
    font-weight: 600;
}

.estimate-item.total .value {
    color: #9E6F4C;
    font-size: 1.3rem;
    font-weight: 700;
}

.estimate-note {
    background: rgba(158, 111, 76, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #9E6F4C;
}

.estimate-note p {
    color: #B0B0B0;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.estimate-note i {
    color: #9E6F4C;
}

.estimate-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: #2A2A2A;
}

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

.testimonial-card {
    background: #1C1C1C;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(158, 111, 76, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #9E6F4C;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #B0B0B0;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: #D97742;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: #B0B0B0;
    font-size: 0.9rem;
}

/* Instagram Section */
.instagram-section {
    padding: 8vh 0;
    background: linear-gradient(135deg, #1C1C1C 0%, #2A2A2A 100%);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(27, 54, 93, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.8vh;
    color: #B0B0B0;
    margin-bottom: 5vh;
    max-width: 60vw;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2vh;
    margin-bottom: 6vh;
    position: relative;
    z-index: 2;
}

.instagram-video {
    position: relative;
    height: 40vh;
    border-radius: 2vh;
    overflow: hidden;
    box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.instagram-video:hover {
    transform: translateY(-1vh) scale(1.02);
    box-shadow: 0 2vh 6vh rgba(0, 0, 0, 0.4);
}

.instagram-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-video:hover video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.instagram-video:hover .video-overlay {
    opacity: 1;
}

.instagram-icon {
    width: 8vh;
    height: 8vh;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5vh 2vh rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.instagram-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0.8vh 3vh rgba(0, 0, 0, 0.4);
}

.instagram-icon i {
    font-size: 3vh;
    color: white;
}

.instagram-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8), rgba(28, 28, 28, 0.9));
    padding: 4vh 3vw;
    border-radius: 2vh;
    border: 0.1vh solid rgba(158, 111, 76, 0.2);
    box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.instagram-cta h3 {
    font-size: 3vh;
    color: #D4AF37;
    margin-bottom: 1.5vh;
    font-weight: 700;
}

.instagram-cta p {
    font-size: 1.8vh;
    color: #B0B0B0;
    margin-bottom: 3vh;
    line-height: 1.6;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
    padding: 1.5vh 3vw;
    font-size: 1.6vh;
    font-weight: 600;
    border-radius: 2.5vh;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1vh;
    transition: all 0.3s ease;
    box-shadow: 0 0.5vh 2vh rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-0.3vh);
    box-shadow: 0 0.8vh 3vh rgba(220, 39, 67, 0.4);
    color: white;
}

.btn-instagram i {
    font-size: 2vh;
}

/* Contact Section */
.contact {
    padding: 6vh 0;
    background: #1C1C1C;
}

/* Contact Inspiration Section */
.contact-inspiration {
    margin: 3vh 0;
    border-radius: 2vh;
    overflow: hidden;
    box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.3);
    position: relative;
}

.inspiration-image {
    position: relative;
    height: 35vh;
    overflow: hidden;
    border-radius: 2vh;
}

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

.inspiration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.8), rgba(212, 175, 55, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.inspiration-image:hover .inspiration-overlay {
    opacity: 1;
}

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

.inspiration-text {
    text-align: center;
    color: white;
    padding: 2vh;
}

.inspiration-text h3 {
    font-size: 4vh;
    font-weight: 700;
    margin-bottom: 1vh;
    color: #D4AF37;
    text-shadow: 0 0.2vh 0.5vh rgba(0, 0, 0, 0.8);
}

.inspiration-text p {
    font-size: 2.5vh;
    font-weight: 600;
    margin-bottom: 2vh;
    color: #FFFFFF;
    text-shadow: 0 0.2vh 0.4vh rgba(0, 0, 0, 0.8);
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    align-items: center;
}

.trust-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8vh 1.5vh;
    border-radius: 2vh;
    font-size: 1.6vh;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 0.1vh solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #FFFFFF;
    text-shadow: 0 0.1vh 0.3vh rgba(0, 0, 0, 0.8);
}

.trust-item:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-0.2vh);
    box-shadow: 0 0.3vh 1vh rgba(212, 175, 55, 0.4);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #D97742;
}

.contact-info p {
    font-size: 1.1rem;
    color: #B0B0B0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #2A2A2A;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(158, 111, 76, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
    background: linear-gradient(135deg, #9E6F4C, #D4AF37);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(158, 111, 76, 0.3);
}

.contact-item i {
    font-size: 1.4rem;
    color: #D4AF37;
    width: 24px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item:hover i {
    color: white;
}

.contact-item span {
    flex: 1;
    line-height: 1.5;
}

.contact-item span li {
    list-style: none;
    margin-bottom: 0.3rem;
}

.contact-item span li:last-child {
    margin-bottom: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background: #2A2A2A;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(158, 111, 76, 0.2);
    height: fit-content;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    align-self: start;
}

/* Enhanced sticky form effect */
.contact-form.sticky-active {
    background: linear-gradient(135deg, #2A2A2A, #3A3A3A);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
    border: 3px solid #9E6F4C !important;
}

.contact-form.sticky-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 15px;
    pointer-events: none;
}

.contact-form h3 {
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #404040;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #1C1C1C;
    color: #EAEAEA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9E6F4C;
    box-shadow: 0 0 0 3px rgba(158, 111, 76, 0.1);
}

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

/* Careers Page Styles */
.careers-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.careers-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.careers-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
}

.careers-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 80vw;
    padding: 0 2vw;
}

.careers-hero-text {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 2vh;
    padding: 4vh 4vw;
    border: 0.1vh solid rgba(158, 111, 76, 0.3);
}

.careers-hero-title {
    font-size: 5vh;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 2vh 0;
    text-shadow: 0.3vh 0.3vh 0.6vh rgba(0, 0, 0, 0.8);
    letter-spacing: 0.1vh;
}

.careers-hero-subtitle {
    font-size: 2.2vh;
    color: #F5F5F5;
    margin: 0;
    text-shadow: 0.2vh 0.2vh 0.4vh rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

.why-work-with-us {
    padding: 8vh 0;
    background-color: #2A2A2A;
    text-align: center;
}

.section-description {
    font-size: 2vh;
    color: #EAEAEA;
    line-height: 1.8;
    max-width: 80vw;
    margin: 0 auto;
    font-weight: 400;
}

.open-positions {
    padding: 8vh 0;
    background-color: #1C1C1C;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35vw, 1fr));
    gap: 3vh;
    margin-top: 4vh;
}

.job-card {
    background: linear-gradient(135deg, #2A2A2A, #1C1C1C);
    border-radius: 1.5vh;
    padding: 3vh;
    border: 0.1vh solid rgba(158, 111, 76, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 0.5vh 1.5vh rgba(0, 0, 0, 0.3);
}

.job-card:hover {
    transform: translateY(-0.5vh);
    box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.4);
    border-color: rgba(158, 111, 76, 0.4);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2vh;
    flex-wrap: wrap;
    gap: 1vh;
}

.job-title {
    font-size: 2.2vh;
    font-weight: 700;
    color: #D97742;
    margin: 0;
    flex: 1;
}

.job-location {
    background: rgba(158, 111, 76, 0.2);
    color: #9E6F4C;
    padding: 0.5vh 1vh;
    border-radius: 0.5vh;
    font-size: 1.4vh;
    font-weight: 600;
    white-space: nowrap;
}

.job-description {
    font-size: 1.6vh;
    color: #EAEAEA;
    line-height: 1.6;
    margin: 0 0 2.5vh 0;
}

.apply-btn {
    width: 100%;
    margin-top: 1vh;
}

.life-at-company {
    padding: 8vh 0;
    background-color: #2A2A2A;
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3vh;
    margin-top: 4vh;
}

.life-item {
    text-align: center;
    transition: all 0.3s ease;
}

.life-item:hover {
    transform: translateY(-0.5vh);
}

.life-item img {
    width: 100%;
    height: 25vh;
    object-fit: cover;
    border-radius: 1vh;
    margin-bottom: 1.5vh;
    transition: all 0.3s ease;
}

.life-item:hover img {
    filter: brightness(1.1) contrast(1.1);
}

.life-item h3 {
    font-size: 1.8vh;
    font-weight: 600;
    color: #D97742;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1vh;
}

.application-form {
    padding: 8vh 0;
    background-color: #1C1C1C;
}

.form-container {
    max-width: 60vw;
    margin: 0 auto;
    background: linear-gradient(135deg, #2A2A2A, #1C1C1C);
    border-radius: 2vh;
    padding: 4vh;
    border: 0.1vh solid rgba(158, 111, 76, 0.2);
    box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.3);
}

.career-form {
    display: flex;
    flex-direction: column;
    gap: 2.5vh;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.6vh;
    font-weight: 600;
    color: #D97742;
    margin-bottom: 1vh;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.5vh;
    border: 0.1vh solid rgba(158, 111, 76, 0.3);
    border-radius: 0.8vh;
    background-color: rgba(28, 28, 28, 0.8);
    color: #EAEAEA;
    font-size: 1.6vh;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D97742;
    box-shadow: 0 0 0 0.2vh rgba(217, 119, 66, 0.2);
    background-color: rgba(28, 28, 28, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 12vh;
}

.submit-btn {
    width: 100%;
    margin-top: 1vh;
    padding: 2vh;
    font-size: 1.8vh;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #0F0F0F;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(158, 111, 76, 0.2);
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #9E6F4C;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #9E6F4C;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1C1C1C;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid rgba(158, 111, 76, 0.2);
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #D97742;
    transition: color 0.3s ease;
}

.close:hover {
    color: #9E6F4C;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.floating-btn.whatsapp {
    background-color: #25D366;
}

.floating-btn.call {
    background-color: #9E6F4C;
}

.floating-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Enhanced Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.slide-left {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-left.animate {
    transform: translateX(0);
}

.animate-on-scroll.slide-right {
    transform: translateX(50px);
}

.animate-on-scroll.slide-right.animate {
    transform: translateX(0);
}

.animate-on-scroll.scale-up {
    transform: scale(0.9);
}

.animate-on-scroll.scale-up.animate {
    transform: scale(1);
}

/* Enhanced Staggered animations for grid items */
.service-card,
.feature-card,
.testimonial-card,
.stat-item {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card.animate,
.feature-card.animate,
.testimonial-card.animate,
.stat-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(1vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cool Animations */

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Shake Animation */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(229, 62, 62, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(229, 62, 62, 0.6), 0 0 40px rgba(229, 62, 62, 0.4);
    }
}

/* Slide In From Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In From Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In From Bottom */
@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Wobble Animation */
@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Heart Beat Animation */
@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

/* Rubber Band Animation */
@keyframes rubberBand {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scaleX(1.25) scaleY(0.75);
    }
    40% {
        transform: scaleX(0.75) scaleY(1.25);
    }
    50% {
        transform: scaleX(1.15) scaleY(0.85);
    }
    65% {
        transform: scaleX(0.95) scaleY(1.05);
    }
    75% {
        transform: scaleX(1.05) scaleY(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* Tada Animation */
@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Typewriter Effect */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Blink Effect */
@keyframes blink {
    0%, 50% {
        border-color: transparent;
    }
    51%, 100% {
        border-color: #E53E3E;
    }
}

/* Spin Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Bounce In Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Flip In Animation */
@keyframes flipInX {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

/* Zoom In Animation */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Light Speed Animation */
@keyframes lightSpeedIn {
    0% {
        opacity: 0;
        transform: translateX(200px) skewX(-30deg);
    }
    60% {
        opacity: 1;
        transform: translateX(-20px) skewX(30deg);
    }
    80% {
        transform: translateX(0) skewX(-15deg);
    }
    100% {
        transform: translateX(0) skewX(0deg);
    }
}

/* Roll In Animation */
@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

/* Jack In The Box Animation */
@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }
    50% {
        transform: rotate(-10deg);
    }
    70% {
        transform: rotate(3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Animation Classes */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-rotate {
    animation: rotate 2s linear infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-slide-in-bottom {
    animation: slideInBottom 0.8s ease-out;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease-out;
}

.animate-wobble {
    animation: wobble 1s ease-in-out;
}

.animate-heartbeat {
    animation: heartBeat 1.3s ease-in-out;
}

.animate-rubberband {
    animation: rubberBand 0.8s ease-in-out;
}

.animate-tada {
    animation: tada 0.8s ease-in-out;
}

.animate-bounce-in {
    animation: bounceIn 0.8s ease-out;
}

.animate-flip-in {
    animation: flipInX 0.8s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

.animate-light-speed {
    animation: lightSpeedIn 0.8s ease-out;
}

.animate-roll-in {
    animation: rollIn 0.8s ease-out;
}

.animate-jack-in-box {
    animation: jackInTheBox 0.8s ease-out;
}

/* Gradient Animation */
.animate-gradient {
    background: linear-gradient(-45deg, #E53E3E, #C53030, #1A365D, #2C3E50);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
}

/* Shimmer Effect */
.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Typewriter Effect */
.animate-typewriter {
    overflow: hidden;
    border-right: 2px solid #E53E3E;
    white-space: nowrap;
    animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
}

/* Hover Animations */
.hover-float:hover {
    animation: float 1s ease-in-out infinite;
}

.hover-pulse:hover {
    animation: pulse 1s ease-in-out infinite;
}

.hover-bounce:hover {
    animation: bounce 1s ease-in-out;
}

.hover-shake:hover {
    animation: shake 0.5s ease-in-out;
}

.hover-wobble:hover {
    animation: wobble 1s ease-in-out;
}

.hover-heartbeat:hover {
    animation: heartBeat 1.3s ease-in-out;
}

.hover-rubberband:hover {
    animation: rubberBand 0.8s ease-in-out;
}

.hover-tada:hover {
    animation: tada 0.8s ease-in-out;
}

.hover-glow:hover {
    animation: glow 1s ease-in-out infinite;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-scroll {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in-scroll.animated {
    opacity: 1;
}

.animate-slide-left-scroll {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-left-scroll.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right-scroll {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-right-scroll.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale-in-scroll {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-scale-in-scroll.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-rotate-in-scroll {
    opacity: 0;
    transform: rotate(-10deg) scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-rotate-in-scroll.animated {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.animate-bounce-in-scroll {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-bounce-in-scroll.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-flip-in-scroll {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-flip-in-scroll.animated {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
}

/* Staggered Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Enhanced Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hover-rotate {
    transition: all 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Loading Animations */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(229, 62, 62, 0.3);
    border-top: 4px solid #E53E3E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Text Animations */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: textReveal 0.8s ease forwards;
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax Effects */
.parallax-slow {
    transform: translateZ(0);
    will-change: transform;
}

.parallax-fast {
    transform: translateZ(0);
    will-change: transform;
}

/* Floating Elements */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

.float-animation:nth-child(2) {
    animation-delay: 0.5s;
}

.float-animation:nth-child(3) {
    animation-delay: 1s;
}

/* Magnetic Effect */
.magnetic {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.magnetic:hover {
    transform: scale(1.1);
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Card Hover Effects */
.service-card, .feature-card {
    position: relative;
    overflow: hidden;
}

.service-card::after, .feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(229, 62, 62, 0.1), transparent);
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::after, .feature-card:hover::after {
    transform: translateX(100%) translateY(100%);
}

/* Icon Animations */
.service-icon, .feature-icon {
    position: relative;
    overflow: hidden;
}

.service-icon::before, .feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.service-icon:hover::before, .feature-icon:hover::before {
    width: 100%;
    height: 100%;
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: textReveal 0.8s ease forwards;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(229, 62, 62, 0.3);
    border-top: 2px solid #E53E3E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

/* Enhanced Focus States */
.btn:focus, .service-card:focus, .feature-card:focus {
    outline: 2px solid #E53E3E;
    outline-offset: 2px;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateY(-100%);
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        background-color: rgba(28, 28, 28, 0.98);
        backdrop-filter: blur(20px);
        text-align: left;
        transition: all 0.4s ease;
        box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.4);
        padding: 0;
        border-radius: 0;
        border: none;
        opacity: 0;
        visibility: hidden;
        z-index: 1001;
        overflow: hidden;
        justify-content: flex-start;
        align-items: stretch;
    }


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

    .nav-menu-items {
        height: 65vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3vh 0 2vh 0;
        position: relative;
    }

    .nav-menu-items::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20%;
        right: 20%;
        height: 0.1vh;
        background: linear-gradient(90deg, transparent, rgba(158, 111, 76, 0.4), rgba(158, 111, 76, 0.4), transparent);
        border-radius: 0.05vh;
    }

    .nav-contact-section {
        display: flex;
    }

    .nav-menu-items ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1vh;
    }

    .nav-contact-section {
        height: 35vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2vh 4vw;
        background-color: rgba(28, 28, 28, 0.98);
        backdrop-filter: blur(20px);
        position: relative;
        overflow: hidden;
    }

    .nav-contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(158, 111, 76, 0.03), rgba(217, 119, 66, 0.01));
        opacity: 0.6;
        pointer-events: none;
    }


    .contact-content {
        text-align: center;
        max-width: 80vw;
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateY(2vh);
        animation: slideInUp 0.6s ease 0.4s forwards;
    }

    .contact-content h3 {
        font-size: 3.2vh;
        font-weight: 700;
        color: #9E6F4C;
        margin-bottom: 2.5vh;
        letter-spacing: 0.1vh;
        text-shadow: 0 0.2vh 0.5vh rgba(158, 111, 76, 0.3);
    }

    .contact-content p {
        font-size: 1.9vh;
        color: #E5E5E5;
        margin-bottom: 3.5vh;
        line-height: 1.7;
        opacity: 0.95;
        font-weight: 400;
    }

    .contact-btn {
        display: inline-block;
        padding: 1.8vh 5vw;
        background: linear-gradient(135deg, #9E6F4C, #D97742);
        color: white;
        text-decoration: none;
        border-radius: 2.5vh;
        font-size: 1.9vh;
        font-weight: 600;
        letter-spacing: 0.15vh;
        transition: all 0.4s ease;
        box-shadow: 0 0.8vh 2vh rgba(158, 111, 76, 0.4);
        border: 0.2vh solid rgba(255, 255, 255, 0.15);
        position: relative;
        overflow: hidden;
    }

    .contact-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .contact-btn:hover::before {
        left: 100%;
    }

    .contact-btn:hover {
        transform: translateY(-0.3vh) scale(1.02);
        box-shadow: 0 1.2vh 3vh rgba(158, 111, 76, 0.5);
        background: linear-gradient(135deg, #D97742, #9E6F4C);
        border-color: rgba(255, 255, 255, 0.25);
    }

    .nav-menu-items li {
        margin: 0;
        opacity: 0;
        transform: translateY(1vh);
        animation: slideInUp 0.5s ease forwards;
        border-bottom: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .nav-menu-items li:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu-items li:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu-items li:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu-items li:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu-items li:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu-items li:nth-child(6) { animation-delay: 0.3s; }
    .nav-menu-items li:nth-child(7) { animation-delay: 0.35s; }

    .nav-menu-items a {
        font-size: 2.2vh;
        padding: 1.5vh 3vw;
        display: block;
        width: auto;
        border-radius: 0.8vh;
        margin: 0.8vh 0;
        transition: all 0.3s ease;
        font-weight: 600;
        letter-spacing: 0.1vh;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
        text-align: center;
        color: #E5E5E5;
        text-decoration: none;
        min-width: 20vw;
    }

    .nav-menu-items a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(158, 111, 76, 0.1), transparent);
        transition: left 0.3s ease;
        border-radius: 1vh;
    }

    .nav-menu-items a:hover::before {
        left: 100%;
    }

    .nav-menu-items a:hover {
        background-color: rgba(158, 111, 76, 0.15);
        color: #9E6F4C;
        transform: translateY(-0.1vh);
        box-shadow: 0 0.3vh 1vh rgba(158, 111, 76, 0.2);
        border: 0.1vh solid rgba(158, 111, 76, 0.3);
    }

    .navbar {
        width: 100vw;
        height: auto;
        min-height: 8vh;
        padding: 1.5vh 3vw;
        top: 0;
        left: 0;
    }

    .nav-logo a {
        gap: 1vw;
    }

    .logo-img {
        height: 5.5vh;
    }

    .engineer-text {
        font-size: 3vh;
        font-weight: 800;
        letter-spacing: 0.1vh;
    }

    .ampersand {
        font-size: 2.4vh;
        font-weight: 600;
        margin: 0 0.3vw;
    }

    .builder-text {
        font-size: 2.4vh;
        font-weight: 700;
        letter-spacing: 0.1vh;
    }

    .company-tagline {
        font-size: 1.4vh;
        font-weight: 600;
    }

    .menu-close {
        display: none;
        position: absolute;
        top: 50%;
        right: 4vw;
        transform: translateY(-50%);
        width: 5.5vh;
        height: 5.5vh;
        background-color: rgba(158, 111, 76, 0.15);
        border-radius: 50%;
        backdrop-filter: blur(15px);
        border: 0.1vh solid rgba(158, 111, 76, 0.25);
        box-shadow: 0 0.2vh 0.6vh rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active ~ .menu-close {
        display: flex;
    }

    .nav-menu.active ~ .hamburger {
        display: none;
    }

    .menu-close i {
        font-size: 2.4vh;
        color: #9E6F4C;
    }

    .menu-close:hover {
        background-color: rgba(158, 111, 76, 0.25);
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 0.3vh 0.8vh rgba(158, 111, 76, 0.3);
        border-color: rgba(158, 111, 76, 0.4);
    }

    .hero {
        padding-left: 3vw;
    }

    .hero-content {
        max-width: 85vw;
        gap: 2vh;
    }

    .hero-text-content {
        padding: 3vh 3vw;
        gap: 1.5vh;
    }

    .hero-subtitle {
        font-size: 1.6vh;
    }

    .hero-title {
        font-size: 4.5vh;
    }

    .hero-description {
        font-size: 1.8vh;
        max-width: 80vw;
    }

    /* Cost Estimator Mobile */
    .estimator-content {
        flex-direction: column;
        gap: 3vh;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5vh;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .estimator-form,
    .result-card {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .estimate-actions {
        flex-direction: column;
    }

    .estimate-actions .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Hero Background Mobile - Static image */

    /* Mobile video optimizations */
    .hero-video {
        /* On mobile, we might want to disable video autoplay for better performance */
        /* The video will still show the first frame as a fallback */
        object-fit: cover;
        /* Enhanced mobile video appearance */
        filter: brightness(1.15) contrast(1.2) saturate(1.25);
    }

    .section-title {
        font-size: 3.5vh;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3vh;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2.5vh;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .contact {
        padding: 3vh 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3vh;
        padding: 0 3vw;
        max-width: 95vw;
        margin: 0 auto;
    }

    .contact-form {
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        margin-top: 2vh;
        align-self: start;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        gap: 2vh;
    }

    .contact-info h2 {
        font-size: 3.5vh;
        margin-bottom: 1.5vh;
        text-align: center;
        width: 100%;
    }

    /* Mobile sticky form adjustments - only for very small screens */
    @media (max-width: 480px) {
        .contact-form {
            position: relative;
            top: auto;
            margin-top: 2rem;
        }
    }

    .contact-form.sticky-active {
        transform: none;
        background: #2A2A2A;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        border-color: rgba(158, 111, 76, 0.2);
    }

    .contact-info p {
        font-size: 1.6vh;
        margin-bottom: 2vh;
        line-height: 1.5;
        text-align: center;
        width: 100%;
        max-width: 80vw;
    }

    .contact-details {
        margin-bottom: 1.5vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 1.5vh;
    }

    .contact-item {
        padding: 2.5vh 3vw;
        margin: 0 auto;
        border-radius: 1.2vh;
        text-align: center;
        background: rgba(42, 42, 42, 0.8);
        border: 0.1vh solid rgba(158, 111, 76, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 85vw;
        gap: 1.5vh;
    }

    .contact-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 6vh;
        height: 6vh;
        background: rgba(158, 111, 76, 0.2);
        border-radius: 50%;
        border: 0.2vh solid rgba(158, 111, 76, 0.3);
    }

    .contact-icon i {
        font-size: 2.5vh;
        color: #9E6F4C;
        margin: 0;
    }

    .contact-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex: 1;
    }

    .contact-text h4 {
        font-size: 1.8vh;
        color: #9E6F4C;
        margin: 0 0 0.5vh 0;
        font-weight: 600;
        text-align: center;
        width: 100%;
    }

    .contact-text p {
        font-size: 1.6vh;
        color: #EAEAEA;
        line-height: 1.4;
        margin: 0.3vh 0;
        text-align: center;
        width: 100%;
    }

    .social-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        margin-top: 2vh;
    }

    .social-contact h4 {
        font-size: 1.8vh;
        color: #9E6F4C;
        margin-bottom: 1vh;
        font-weight: 600;
    }

    .social-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2vw;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 4vh;
        height: 4vh;
        background: rgba(158, 111, 76, 0.2);
        border-radius: 50%;
        color: #9E6F4C;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: #9E6F4C;
        color: #1C1C1C;
        transform: translateY(-0.2vh);
    }

    .contact-form {
        padding: 2.5vh 2vw;
        margin: 1.5vh auto 0 auto;
        background: rgba(42, 42, 42, 0.9);
        border-radius: 1.2vh;
        border: 0.1vh solid rgba(158, 111, 76, 0.3);
        width: 100%;
        max-width: 90vw;
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        align-self: start;
    }

    /* Contact Inspiration Mobile */
    .contact-inspiration {
        margin: 3vh 0;
        border-radius: 1.5vh;
    }

    .inspiration-image {
        height: 30vh;
        border-radius: 1.5vh;
    }

    .inspiration-text h3 {
        font-size: 3vh;
    }

    .inspiration-text p {
        font-size: 2vh;
    }

    .trust-indicators {
        gap: 0.8vh;
    }

    .trust-item {
        padding: 0.6vh 1.2vh;
        font-size: 1.4vh;
        border-radius: 1.5vh;
    }

    /* Instagram Section Mobile */
    .instagram-section {
        padding: 4vh 0;
    }

    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2vh;
        margin-bottom: 4vh;
        padding: 0 2vw;
    }

    .instagram-video {
        height: 35vh;
        border-radius: 1.5vh;
        margin-bottom: 1vh;
    }

    .instagram-icon {
        width: 6vh;
        height: 6vh;
    }

    .instagram-icon i {
        font-size: 2.5vh;
    }

    .instagram-cta {
        padding: 3vh 4vw;
        border-radius: 1.5vh;
        margin: 0 2vw;
    }

    .instagram-cta h3 {
        font-size: 2.5vh;
        margin-bottom: 1vh;
    }

    .instagram-cta p {
        font-size: 1.6vh;
        margin-bottom: 2vh;
    }

    .btn-instagram {
        padding: 1.5vh 3vw;
        font-size: 1.4vh;
        border-radius: 2vh;
        width: 100%;
        max-width: 300px;
    }

    /* Better spacing for very small screens */
    @media (max-width: 480px) {
        .instagram-grid {
            grid-template-columns: 1fr;
            gap: 1.5vh;
            padding: 0 1vw;
        }

        .instagram-video {
            height: 30vh;
        }

        .instagram-cta {
            padding: 2.5vh 3vw;
            margin: 0 1vw;
        }

        .instagram-cta h3 {
            font-size: 2.2vh;
        }

        .instagram-cta p {
            font-size: 1.4vh;
        }

        .btn-instagram {
            padding: 1.2vh 2.5vw;
            font-size: 1.3vh;
        }
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1.5vh;
        font-size: 1.6vh;
        margin-bottom: 1.5vh;
    }

    .contact-form button {
        padding: 1.5vh 3vw;
        font-size: 1.6vh;
        width: 100%;
    }

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

    .floating-buttons {
        bottom: 3vh;
        right: 3vw;
    }

    .floating-btn {
        width: 6vh;
        height: 6vh;
        font-size: 2vh;
    }

    /* Projects Section Mobile */
    .project-video-container {
        height: 40vh;
    }

    /* Project Slideshow Mobile */
    .project-slideshow-container {
        height: 50vh;
    }

    .slideshow-title {
        font-size: 2.8vh;
        margin-bottom: 3vh;
    }

    .slide-overlay {
        padding: 2.5vh;
    }

    .slide-info h4 {
        font-size: 2vh;
    }

    .slide-info p {
        font-size: 1.4vh;
    }

    .slideshow-controls button {
        width: 4vh;
        height: 4vh;
        font-size: 2.5vh;
    }

    .slideshow-dots .dot {
        width: 1.2vh;
        height: 1.2vh;
    }

    .video-overlay {
        padding: 2.5vh;
    }

    .video-info h3 {
        font-size: 2.5vh;
    }

    .video-info p {
        font-size: 1.6vh;
    }

    .project-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5vh;
        margin-bottom: 3vh;
    }

    .stat-item {
        padding: 2.5vh;
    }

    .stat-number {
        font-size: 4vh;
    }

    .stat-label {
        font-size: 1.4vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 2vw;
    }

    .hero {
        padding-left: 2vw;
    }

    .hero-content {
        max-width: 90vw;
        gap: 1.5vh;
    }

    .hero-text-content {
        padding: 2.5vh 2.5vw;
        gap: 1vh;
    }

    .hero-subtitle {
        font-size: 1.4vh;
    }

    .hero-title {
        font-size: 3.5vh;
    }

    .hero-description {
        font-size: 1.6vh;
        max-width: 85vw;
    }

    /* Contact Mobile Small */
    .contact-content {
        padding: 0 1vw;
        max-width: 98vw;
    }

    .contact-item {
        padding: 2vh 1.5vw;
        max-width: 95vw;
    }

    .contact-form {
        padding: 2vh 1.5vw;
        max-width: 95vw;
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        align-self: start;
    }

    /* Careers Mobile Small */
    .careers-hero {
        height: 50vh;
    }

    .careers-hero-title {
        font-size: 3vh;
    }

    .careers-hero-subtitle {
        font-size: 1.6vh;
    }

    .life-grid {
        grid-template-columns: 1fr;
        gap: 1.5vh;
    }

    .life-item img {
        height: 18vh;
    }

    /* Careers Mobile */
    .careers-hero {
        height: 60vh;
    }

    .careers-hero-title {
        font-size: 3.5vh;
    }

    .careers-hero-subtitle {
        font-size: 1.8vh;
    }

    .careers-hero-text {
        padding: 3vh 3vw;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 2vh;
    }

    .life-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
    }

    .life-item img {
        height: 20vh;
    }

    .form-container {
        max-width: 90vw;
        padding: 3vh 3vw;
    }

    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 2.5vh;
    }

    .modal-content {
        margin: 10% auto;
        padding: 2.5vh;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5vh;
    }

    .project-stats {
        grid-template-columns: 1fr;
        gap: 1.5vh;
    }

    .map-container iframe {
        width: 100%;
        height: 40vh;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 8vh;
}

/* Enhanced scroll animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-scale-up.animate {
    opacity: 1;
    transform: scale(1);
}

.scroll-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-rotate.animate {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Staggered animations for grid items */
.stagger-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax effect for hero section */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #1B365D, #D4AF37);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    border-radius: 0 2px 2px 0;
}

/* Enhanced hover effects for better interactivity */
.service-card:hover,
.feature-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Smooth transitions for all interactive elements */
* {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Floating animation for hero elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    animation: float 6s ease-in-out infinite;
}

/* Pulse animation for important elements */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Shimmer effect for cards */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src=""] {
    opacity: 0;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #9E6F4C;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .floating-buttons,
    .modal {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-content {
        color: #000000;
    }
}
