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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Hero Background Slider */
.hero-background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

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

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

/* Fallback background for when no slides are loaded */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e4e1d5;
    z-index: -2;
}

/* Architectural Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

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

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Architectural Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }

/* Architectural Parallax Effect */
.parallax-section {
    transform: translateZ(0);
    will-change: transform;
}

/* Enhanced Architectural Hover Effects */
.architectural-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.architectural-hover::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.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.architectural-hover:hover::before {
    left: 100%;
}

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

.architectural-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.architectural-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    padding: 35px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 22px 0;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    cursor: pointer;
}

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: -1.5px;
    transition: all 0.3s ease;
}

.logo:hover h1 {
    opacity: 0.7;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 52px;
    align-items: center;
}

.navigation a {
    text-decoration: none;
    color: #2A2A2A;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #2A2A2A;
    transition: width 0.3s ease;
}

.navigation a:hover {
    color: #000000;
}

.navigation a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* On desktop, position header actions to the right */
@media (min-width: 769px) {
    .navigation {
        display: flex;
        align-items: center;
        gap: 64px;
    }
    
    .navigation .header-actions {
        position: static;
        transform: none;
    }
}

.book-here-btn {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
    padding: 16px 36px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.book-here-btn:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.phone-number {
    color: #2A2A2A;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 16px 28px;
    border: 1.5px solid #2A2A2A;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.phone-number:hover {
    background-color: #2A2A2A;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Main Content Styles */
.main-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section {
    text-align: center;
    padding: 0 60px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.05);
    padding: 80px 60px;
    border-radius: 0;
    backdrop-filter: blur(2px);
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: #e4e1d5;
    line-height: 1.1;
    margin-bottom: 50px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.8px;
}

.discovery-call-btn {
    background-color: #e4e1d5;
    color: #3A3A3A;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
}

.discovery-call-btn:hover {
    background-color: #d4d1c5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Projects Section Styles */
.projects-section {
    background-color: #e4e1d5;
    padding: 100px 0;
}

.projects-container {
    margin: 0 auto;
    padding: 0 60px;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.projects-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: #3A3A3A;
    margin: 0;
    letter-spacing: -0.5px;
}

.projects-description {
    text-align: right;
    max-width: 400px;
}

.projects-description p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #3A3A3A;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-projects-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #3A3A3A;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.view-projects-link:hover {
    color: #666;
}

.projects-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.projects-grid::-webkit-scrollbar {
    display: none;
}

.project-item {
    flex: 0 0 400px;
    min-width: 400px;
    scroll-snap-align: start;
    text-align: center;
}

@media (max-width: 768px) {
    .project-item {
        flex: 0 0 85%;
        min-width: 85%;
    }
}

.project-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .project-image {
        height: 350px;
    }
}

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

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

.project-caption {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3A3A3A;
    margin: 0;
}

/* Testimonials Section Styles */
.testimonials-section {
    background-color: #d2cdb8;
    padding: 100px 0;
}

.testimonials-container {
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.testimonials-text {
    padding-right: 20px;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: #3A3A3A;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.testimonials-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #3A3A3A;
    line-height: 1.7;
    margin-bottom: 30px;
}

.view-testimonials-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #3A3A3A;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.view-testimonials-link:hover {
    color: #666;
}

.testimonials-video {
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* About Section Styles */
.about-section {
    background-color: #e4e1d5;
    padding: 100px 0;
}

.about-container {
    margin: 0 auto;
    padding: 0 60px;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-text {
    padding-left: 20px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: #3A3A3A;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #3A3A3A;
    line-height: 1.7;
    margin-bottom: 25px;
}

.learn-more-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #3A3A3A;
    text-decoration: underline;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #666;
}

/* Services Section Styles */
.services-section {
    background-color: #d2cdb8;
    padding: 100px 0;
}

.services-container {
    margin: 0 auto;
    padding: 0 60px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: #3A3A3A;
    margin: 0;
    letter-spacing: -0.5px;
}

.services-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #3A3A3A;
    margin: 0;
    font-weight: 400;
}

.services-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    margin-bottom: 80px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 350px;
    min-width: 350px;
    scroll-snap-align: start;
    text-align: center;
}

@media (max-width: 768px) {
    .service-card {
        flex: 0 0 85%;
        min-width: 85%;
    }
}

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .service-image {
        height: 320px;
    }
}

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

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

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #3A3A3A;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.service-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #3A3A3A;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #666;
}

.services-cta {
    text-align: center;
}

.explore-services-btn {
    background-color: transparent;
    color: #3A3A3A;
    border: 2px solid #3A3A3A;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.explore-services-btn:hover {
    background-color: #3A3A3A;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* How it Works Section Styles */
.how-it-works-section {
    background-color: #e4e1d5;
    padding: 100px 0;
}

.how-it-works-container {
    margin: 0 auto;
    padding: 0 60px;
}

.how-it-works-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.how-it-works-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: #3A3A3A;
    margin: 0;
    letter-spacing: -0.5px;
}

.how-it-works-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #3A3A3A;
    margin: 0;
    font-weight: 400;
    max-width: 300px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.process-step {
    text-align: center;
}

.step-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3A3A3A;
    margin-bottom: 20px;
    line-height: 1.3;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #3A3A3A;
    line-height: 1.6;
    margin: 0;
}

.how-it-works-cta {
    text-align: center;
}

.book-discovery-btn {
    background-color: #4A9B3A;
    color: #FFFFFF;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.book-discovery-btn:hover {
    background-color: #3A7B2A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 155, 58, 0.3);
}

/* News Section Styles */
.news-section {
    background-color: #d2cdb8;
    padding: 100px 0;
}

.news-container {
    margin: 0 auto;
    padding: 0 60px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.news-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: #3A3A3A;
    margin: 0;
    letter-spacing: -0.5px;
}

.news-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #3A3A3A;
    margin: 0;
    font-weight: 400;
    max-width: 400px;
}

.news-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    margin-bottom: 60px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.news-grid::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 320px;
    min-width: 320px;
    scroll-snap-align: start;
    background-color: #e4e1d5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .news-card {
        flex: 0 0 85%;
        min-width: 85%;
    }
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .news-image {
        height: 250px;
    }
}

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

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

.news-content {
    padding: 25px 20px;
}

.news-date {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #3A3A3A;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.news-article-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: #3A3A3A;
    line-height: 1.4;
    margin: 15px 0 20px 0;
    letter-spacing: -0.2px;
}

.news-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #3A3A3A;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #666;
}

.news-pagination {
    text-align: center;
    margin-bottom: 60px;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D0D0D0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #3A3A3A;
}

.dot:hover {
    background-color: #666;
}

.news-cta {
    text-align: center;
}

.explore-news-btn {
    background-color: transparent;
    color: #3A3A3A;
    border: 2px solid #3A3A3A;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.explore-news-btn:hover {
    background-color: #3A3A3A;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* CTA Section Styles */
.cta-section {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-content {
    text-align: center;
    padding: 0 60px;
}

.cta-headline {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: #e4e1d5;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.8px;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #e4e1d5;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background-color: #e4e1d5;
    color: #3A3A3A;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background-color: #d4d1c5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2A2A2A;
    margin-bottom: 10px;
}

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

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2A2A2A;
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3A3A3A;
}

.form-field textarea {
    resize: vertical;
}

.booking-status {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.booking-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.booking-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.submit-booking-btn {
    width: 100%;
    background: #3A3A3A;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-booking-btn:hover {
    background: #2A2A2A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-booking-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Footer Styles */
.footer {
    background-color: #3A3A3A;
    color: #FFFFFF;
    padding: 80px 0 30px;
}

.footer-container {
    margin: 0 auto;
    padding: 0 60px;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #D1D1D1;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 2;
    color: #D1D1D1;
}

.footer-column ul li strong {
    color: #FFFFFF;
    font-weight: 600;
}

.footer-column ul li a {
    color: #D1D1D1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #D1D1D1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #D1D1D1;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .navigation ul {
        gap: 20px;
    }
    
    .header-actions {
        gap: 20px;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .projects-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .projects-description {
        text-align: center;
    }
    
    
    .cta-headline {
        font-size: 36px;
    }
    
    .cta-content {
        padding: 0 20px;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .testimonials-text {
        padding-right: 0;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        padding-left: 0;
        text-align: center;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .services-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    
    .how-it-works-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .news-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
}

@media (max-width: 480px) {
    .navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 28px;
    }
    
    .discovery-call-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .projects-title {
        font-size: 36px;
    }
    
    .cta-headline {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .service-name {
        font-size: 20px;
    }
    
    .explore-services-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .how-it-works-title {
        font-size: 36px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .book-discovery-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .news-title {
        font-size: 36px;
    }
    
    
    .news-article-title {
        font-size: 16px;
    }
    
    .explore-news-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Footer Responsive */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-container {
        padding: 0 20px;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-social {
        order: -1;
    }

    /* Modal Responsive */
    .modal-content {
        padding: 30px 20px;
    }

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

    .modal-content h2 {
        font-size: 24px;
    }
}

/* Large Desktop Optimizations */
@media (min-width: 1400px) {
    .header-container {
        padding: 0 100px;
    }
    
    .logo h1 {
        font-size: 44px;
    }
    
    .navigation ul {
        gap: 56px;
    }
    
    .navigation {
        gap: 72px;
    }
    
    .navigation a {
        font-size: 14px;
    }
    
    .book-here-btn,
    .phone-number {
        padding: 18px 40px;
        font-size: 14px;
    }
}

/* Additional Mobile Enhancements for All Pages */
@media (max-width: 1024px) {
    /* Tablet optimizations */
    .header-container {
        padding: 0 40px;
    }
    
    .logo h1 {
        font-size: 36px;
    }
    
    .navigation ul {
        gap: 36px;
    }
    
    .navigation {
        gap: 48px;
    }
    
    .navigation a {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .book-here-btn,
    .phone-number {
        padding: 14px 24px;
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hide desktop elements on mobile */
    body {
        background-attachment: scroll; /* Better mobile performance */
    }
    
    /* Mobile header improvements */
    .header {
        position: relative; /* Better mobile scrolling */
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .logo h1 {
        font-size: 36px;
        font-weight: 700;
    }
    
    /* Improve touch targets for mobile */
    button,
    a.btn,
    .architectural-btn {
        min-height: 44px; /* iOS recommended touch target size */
        padding: 12px 24px;
    }
    
    /* Projects/Services page hero responsive */
    .projects-page-hero,
    .services-page-hero {
        padding: 80px 20px 40px;
    }
    
    .projects-page-hero h1,
    .services-page-hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .projects-page-hero p,
    .services-page-hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Grid improvements */
    .all-projects-grid,
    .all-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    /* Video container responsive */
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    /* Improve form layouts on mobile */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Better spacing on mobile */
    .section {
        padding: 60px 20px;
    }
    
    .all-projects-section,
    .all-services-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .logo h1 {
        font-size: 32px;
    }
    
    /* Navigation styles handled by mobile menu at 768px */
    
    /* Hero responsive */
    .hero-headline {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .discovery-call-btn,
    .architectural-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 20px;
        font-size: 13px;
    }
    
    /* Page hero improvements */
    .projects-page-hero h1,
    .services-page-hero h1 {
        font-size: 2rem;
    }
    
    /* Card improvements */
    .project-item,
    .service-card,
    .news-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    /* Text sizing for readability */
    .projects-title,
    .services-title,
    .about-title,
    .news-title {
        font-size: 28px;
    }
    
    .testimonials-title {
        font-size: 20px;
    }
    
    .testimonials-description,
    .about-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Process steps mobile */
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    /* Footer mobile improvements */
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-tagline,
    .footer-column ul li {
        font-size: 13px;
    }
    
    /* Modal improvements for small screens */
    .modal {
        padding: 20px 10px;
    }
    
    .modal-content {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .close-modal {
        font-size: 32px;
        padding: 5px 15px;
    }
    
    /* All grids should be single column on small mobile */
    .all-projects-grid,
    .all-services-grid,
    .dashboard-stats,
    .dashboard-quick-actions {
        grid-template-columns: 1fr !important;
    }
}

/* Landscape orientation improvements */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 60px 20px;
    }
    
    .projects-page-hero,
    .services-page-hero {
        padding: 60px 20px 30px;
    }
    
    .header {
        position: relative;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Ensure images look crisp on retina displays */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Dark mode support (if device prefers dark mode) */
@media (prefers-color-scheme: dark) {
    /* This is optional - can be implemented later if needed */
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in,
    .stagger-item {
        opacity: 1;
        transform: none;
    }
}

/* Mobile Navigation Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #000000;
    padding: 8px 12px;
    line-height: 1;
    transition: all 0.3s ease;
    font-weight: 300;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    color: #2A2A2A;
}

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

/* Show mobile menu toggle on small screens */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hide header actions on mobile - they'll be in the menu */
    .header-actions {
        display: none;
    }
    
    
    /* Hide navigation by default on mobile, show when toggled */
    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(228, 225, 213, 0.98);
        backdrop-filter: blur(15px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .navigation.active {
        max-height: 700px;
        padding: 30px 0 40px;
    }
    
    .navigation ul {
        flex-direction: column;
        padding: 0 30px;
        gap: 0;
    }
    
    .navigation ul li {
        width: 100%;
        text-align: left;
        padding: 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .navigation ul li:hover {
        background-color: rgba(255,255,255,0.3);
    }
    
    .navigation ul li:first-child {
        border-top: 1px solid rgba(0,0,0,0.08);
    }
    
    .navigation ul li:last-child {
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    
    .navigation.active ul li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .navigation.active ul li:nth-child(1) { transition-delay: 0.05s; }
    .navigation.active ul li:nth-child(2) { transition-delay: 0.1s; }
    .navigation.active ul li:nth-child(3) { transition-delay: 0.15s; }
    .navigation.active ul li:nth-child(4) { transition-delay: 0.2s; }
    .navigation.active ul li:nth-child(5) { transition-delay: 0.25s; }
    
    .navigation ul li a {
        display: block;
        padding: 18px 20px;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }
    
    .navigation ul li a:hover {
        padding-left: 30px;
        color: #000000;
    }
    
    /* Show header actions inside mobile menu */
    .navigation .header-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 30px 30px 10px;
        margin-top: 20px;
        border-top: 2px solid rgba(0,0,0,0.1);
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    .navigation.active .header-actions {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }
    
    .navigation .phone-number {
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #2A2A2A;
        padding: 12px;
        order: -1;
    }
    
    .navigation .book-here-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 14px;
        font-weight: 600;
        background-color: #2A2A2A;
        color: #FFFFFF;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .navigation .book-here-btn:hover {
        background-color: #000000;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    }
    
    /* Adjust header layout for mobile menu */
    .header-container {
        position: relative;
    }
}
