/* Import a modern font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap');

/* Keyframes for slide-up animation */
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #F0F8FF;
    margin: 0;
    padding: 0;
}

/* Contact Bar */
.contact-bar {
    background: #2C3E50;
    padding: 0.5rem 2rem;
    position: static;
    z-index: 99;
    display: none;
}

.contact-bar-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.contact-item i {
    color: #20B2AA;
    font-size: 1rem;
}

.contact-item a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #20B2AA;
}

/* Show contact bar on desktop only */
@media (min-width: 1024px) {
    .contact-bar {
        display: block;
    }
}

/* Modern Navigation Bar */
nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30rem;
    background: #FFFFFF;
    padding: 0.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #2C3E50;
    background: #FFFFFF;
}

/* Modern Logo */
nav img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #2C3E50;
    background: #FFFFFF;
    margin-right: 2.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(0, 206, 209, 0.15);
    cursor: pointer;
}
nav img:hover {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 4px 24px rgba(0, 206, 209, 0.25);
}

/* Navigation Links */
nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li a {
    color: #2C3E50;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.2s;
}

nav ul li a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #2C3E50 60%, #20B2AA 100%);
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    position: absolute;
    left: 0;
    bottom: -4px;
    border-radius: 2px;
}

nav ul li a:hover {
    color: #2C3E50;
    text-shadow: 0 0 8px rgba(0, 206, 209, 0.3);
}

nav ul li a:hover::after {
    width: 100%;
}


#lang-switch {
   text-decoration: none;
    color: #2C3E50;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.3rem 0;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
  }
  
  
 
  
  #lang-switch:hover::after,
  #lang-switch:focus::after {
    opacity: 1;
  }
  
  #lang-switch span {
    position: relative;
    z-index: 1;
  }

  #menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 0;
    margin: 0;
}

#menu-toggle .bar {
    width: 28px;
    height: 4px;
    background: #2C3E50;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

#nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    transition: none;
}

@media (max-width: 900px) {
    nav {
        padding: 0.5rem 1rem;
        justify-content: space-between;
        gap: 1rem;
    }
    #menu-toggle {
        display: flex;
    }
    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: #FFFFFF;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 2rem;
        padding: 2rem 0 2rem 0;
        align-items: flex-start;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        z-index: 150;
    }
    #nav-links.open {
        display: flex;
    }
    .nav-logo {
        width: 48px;
        height: 48px;
    }
}


/* Header Styles */

header {
    position: relative;
    overflow: hidden;
    background: url('img/header_image.jpg') center center/cover no-repeat;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* Vertical center */
    align-items: center;   /* Center align */
    padding: 3rem 4rem;
    color: #2C3E50;
    position: relative;
    box-shadow: 0 6px 32px rgba(0,0,0,0.18);
}

.header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.header-bg.visible {
    opacity: 1;
    z-index: 1;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('img/Header_images/header_image1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 0.1s ease-in-out;
    pointer-events: none;
}

header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

header > * {
    position: relative;
    z-index: 2;
}

header h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0 0 1.2rem 0;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFadeIn 1s ease-out forwards;
}

header p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    max-width: 700px;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin: 0 auto;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFadeIn 1s ease-out 0.3s forwards;
}

.header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.header-bg.visible {
    opacity: 1;
    z-index: 1;
}

header > h1,
header > p {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    header {
        padding: 2rem 1.5rem;
        align-items: center; /* Center text on mobile */
        text-align: center;
        min-height: 480px;
    }

    header h1 {
        font-size: 2.8rem;
        line-height: 1.3;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        color: white;
        text-align: center;
    }

    header p {
        font-size: 1.3rem;
        max-width: 90%;
        color: white;
        text-align: center;
    }
}

/* About Section - Modern Design with Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

section.about {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 0 5rem 0;
    color: #2C3E50;
    text-align: center;
    overflow: hidden;
}

section.about::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../img/Header_images/4.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.05;
    filter: blur(2px);
    transform: scale(1.03);
    pointer-events: none;
}

section.about h2 {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #2C3E50;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-description {
    position: relative;
    z-index: 1;
    color: #2C3E50;
    font-size: 1.15rem;
    max-width: 850px;
    margin: 0 auto 3rem auto;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.95);
    border-left: 5px solid #20B2AA;
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

.about-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.about-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #20B2AA 0%, #17a2b8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-out;
}

.about-text.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-text:nth-child(1).animate {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.about-text:nth-child(2).animate {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.about-text:nth-child(3).animate {
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.about-text:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(32, 178, 170, 0.25);
}

.about-text:hover::before {
    transform: scaleX(1);
}

.about-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    color: #20B2AA;
    text-shadow: 0 2px 20px rgba(32, 178, 170, 0.3);
    background: linear-gradient(135deg, #20B2AA 0%, #17a2b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-text h2::before {
    content: attr(data-target);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-text-fill-color: #2C3E50;
    opacity: 0.05;
    font-size: 4rem;
    z-index: -1;
}

.about-text p {
    font-size: 1.2rem;
    color: #2C3E50;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* APCHQ Membership Badge - Fourth item in about-content */
.membership-badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    gap: 1.5rem;
}

.membership-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #20B2AA 0%, #17a2b8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-out;
}

.membership-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.membership-badge:hover::before {
    transform: scaleX(1);
}

.apchq-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.membership-badge:hover .apchq-logo {
    transform: scale(1.1);
}

.membership-badge p {
    font-size: 0.95rem;
    color: #2C3E50;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}



@media (max-width: 768px) {
    section.about {
        padding: 4rem 1rem;
    }

    section.about h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .about-description {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
        border-left: 4px solid #20B2AA;
        margin-bottom: 2.5rem;
    }

    .about-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .about-text {
        padding: 2rem 1.5rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .about-text p {
        font-size: 1rem;
        text-align: center;
    }

    .about-text:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Projects Section */

section.projects {
    background: #ffffff;
    padding: 5rem 0 5rem 0;
    color: #2C3E50;
    text-align: center;
}

section.projects h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2C3E50;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.projects-description {
    font-size: 1.15rem;
    color: #2C3E50;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.7;
    letter-spacing: 0.2px;
    font-weight: 500;
}

/* Project Carousel Wrapper */
.project-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-carousel-arrow {
    background: linear-gradient(135deg, #20B2AA 0%, #17a298 100%);
    border: none;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(32, 178, 170, 0.3);
    flex-shrink: 0;
    z-index: 10;
}

.project-carousel-arrow:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(32, 178, 170, 0.5);
    background: linear-gradient(135deg, #17a298 0%, #20B2AA 100%);
}

.project-carousel-arrow:active:not(:disabled) {
    transform: scale(0.95);
}

.project-carousel-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.project-content {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.project-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item {
    position: relative;
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 206, 209, 0.15);
    cursor: pointer;
    background: #FFFFFF;
    aspect-ratio: 1/1.5;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.4s cubic-bezier(.4,0,.2,1);
}

.project-item p {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
    z-index: 2;
    color: #2C3E50;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.8), 0 0 8px rgba(0, 206, 209, 0.3);
    pointer-events: none;
}

.project-item h2{
    position: absolute;
    left: 0;
    right: 0;
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
    z-index: 2;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.8), 0 0 8px rgba(0, 206, 209, 0.3);
    pointer-events: none;
}

.project-item h2 {
    top: 18%;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.project-item p {
    bottom: 14%;
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 206, 209, 0.3);
}

/* Hover Effects */
.project-item:hover img {
    filter: blur(4px) brightness(0.7);
}

.project-item:hover h2,
.project-item:hover p {
    opacity: 1;
}

/* Tablet: 2 items per view */
@media (max-width: 1023px) and (min-width: 768px) {
    .project-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Mobile: No carousel, stack all items vertically */
@media (max-width: 767px) {
    section.projects {
        padding: 3rem 1rem 5rem 1rem;
        overflow-x: hidden;
    }

    section.projects h2 {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .projects-description {
        font-size: 1rem;
        max-width: 90%;
        margin-bottom: 3rem;
    }

    /* Hide carousel arrows on mobile */
    .project-carousel-arrow {
        display: none;
    }

    .project-carousel-wrapper {
        padding: 0;
        gap: 0;
    }

    .project-content {
        overflow: visible;
    }

    /* Stack all items vertically */
    .project-track {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        transform: none !important;
    }

    .project-item {
        flex: 0 0 auto;
        min-width: 320px;
        max-width: 450px;
        width: 90%;
        border-radius: 12px;
        height: 250px;
    }

    .project-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .project-item h2 {
        font-size: 1.4rem;
        top: 16%;
    }

    .project-item p {
        font-size: 1rem;
        bottom: 10%;
    }

    .project-item:hover img {
        filter: blur(4px) brightness(0.7);
    }

    .project-item h2,
    .project-item:hover p {
        opacity: 1;
    }
}




/* Contact Section */
footer.contact {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(135deg, #2C3E50 0%, #1a2634 100%);
    padding: 5rem 6vw 3rem 6vw;
    color: #FFFFFF;
    gap: 8rem;
    flex-wrap: wrap;
    text-align: left;
    position: relative;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
}

.footer-left img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2C3E50;
    box-shadow: 0 8px 32px rgba(32, 178, 170, 0.3);
    margin-bottom: 1.5rem;
    background: #FFFFFF;
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-left img:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(32, 178, 170, 0.5);
}

.footer-socials {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.footer-socials a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 2.2rem;
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(32, 178, 170, 0.1);
}

.footer-socials a:hover {
    color: #20B2AA;
    transform: scale(1.2);
    background: rgba(32, 178, 170, 0.2);
}

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 280px;
    max-width: 400px;
    flex: 1;
}

.footer-middle h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.footer-middle h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #20B2AA, transparent);
    border-radius: 2px;
}

.footer-services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.service-list li i {
    color: #20B2AA;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-info .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #20B2AA;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 250px;
    max-width: 500px;
    flex: 1;
}

.footer-right h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.footer-right h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #20B2AA, transparent);
    border-radius: 2px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-links p {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-icon {
    color: #20B2AA;
    font-size: 1.3rem;
    min-width: 1.3rem;
}

.contact-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-links a:hover {
    color: #20B2AA;
}

/* Copyright Section */
.footer-copyright {
    background: #1a2634;
    padding: 1.5rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    border-top: 1px solid rgba(32, 178, 170, 0.2);
}

.footer-copyright p {
    margin: 0;
    letter-spacing: 0.3px;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    footer.contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem; /* smaller gap for vertical stacking */
        padding: 4rem 4vw 3rem 4vw;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        align-items: center;
        text-align: center;
        margin: 0;
    }

    .footer-middle h2,
    .footer-right h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    .footer-middle h2::after,
    .footer-right h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .service-list {
        align-items: center;
    }

    .service-list li {
        justify-content: center;
    }

    .footer-info {
        align-items: center;
    }

    .footer-info p {
        justify-content: center;
        text-align: center;
    }

    .contact-links {
        align-items: center;
    }

    .contact-links p {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-links a {
        text-align: center;
    }
}

#menu-toggle {
    display: none; /* Hide by default (desktop) */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 0;
    margin: 0;
}

#menu-toggle .bar {
    width: 28px;
    height: 4px;
    background: #2C3E50;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    #menu-toggle {
        display: flex; /* Show only on mobile */
    }
}

/* Renovation Request Form Section */
section.request-form {
    background: #FFFFFF;
    padding: 5rem 2rem;
    color: #2C3E50;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Floating background image */
section.request-form::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../img/Header_images/3.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.08;
    filter: blur(1px);
    transform: scale(1.03);
    pointer-events: none;
}

/* Ensure content sits above background */
section.request-form > * {
    position: relative;
    z-index: 1;
}

/* Form container with images on right */
.request-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Floating decorative images - stacked on right */
.form-floating-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1;
}

.floating-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Stagger images slightly for visual interest */
.floating-img-1 {
    transform: translateX(-15px);
}

.floating-img-2 {
    transform: translateX(20px);
}

.floating-img-3 {
    transform: translateX(-15px);
}

.floating-img-4 {
    transform: translateX(25px);
}

section.request-form h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2C3E50;
    letter-spacing: 1px;
}

.form-description {
    font-size: 1.15rem;
    color: #2C3E50;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

#renovation-form {
    max-width: 600px;
    flex: 1;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.92);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 206, 209, 0.12);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C3E50;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    padding: 0.9rem 1.2rem;
    border: 2px solid #2C3E50;
    border-radius: 8px;
    background: #F0F8FF;
    color: #2C3E50;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #20B2AA;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
    background: #FFFFFF;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232C3E50' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.submit-btn {
    background: linear-gradient(90deg, #E8F4FD 60%, #F0F8FF 100%);
    color: #2C3E50;
    border: 2px solid #2C3E50;
    border-radius: 999px;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: 0 4px 18px rgba(0, 206, 209, 0.08), 0 1.5px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s cubic-bezier(.4,0,.2,1), color 0.2s, box-shadow 0.2s, transform 0.15s;
    outline: none;
    align-self: center;
    font-family: 'Montserrat', Arial, sans-serif;
}

.submit-btn:hover {
    color: #FFFFFF;
    background: rgba(27, 109, 105, 0.7);
    box-shadow: 0 6px 24px rgba(0, 206, 209, 0.15), 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(0, 206, 209, 0.1), 0 1px 4px rgba(0, 0, 0, 0.1);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    max-width: 450px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.form-message.success {
    background: rgba(32, 178, 170, 0.1);
    color: #2C3E50;
    border: 2px solid #20B2AA;
}

.form-message.error {
    background: rgba(255, 107, 107, 0.1);
    color: #2C3E50;
    border: 2px solid #FF6B6B;
}

/* Responsive Form Styles */
@media (max-width: 768px) {
    section.request-form {
        padding: 6rem 1.5rem;
    }

    /* Hide floating images on mobile */
    .form-floating-images {
        display: none;
    }

    section.request-form h2 {
        font-size: 1.8rem;
    }

    .form-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    #renovation-form {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
        width: 100%;
    }

    .form-message {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
        max-width: 100%;
    }
}

/* Floating Request Button */
.floating-request-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #20B2AA 0%, #17a298 100%);
    color: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 20px rgba(32, 178, 170, 0.4);
    z-index: 1000;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.floating-request-btn i {
    font-size: 1.2rem;
}

.floating-request-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(32, 178, 170, 0.6);
    background: linear-gradient(135deg, #17a298 0%, #20B2AA 100%);
}

.floating-request-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-request-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .floating-request-btn span {
        display: none;
    }

    .floating-request-btn i {
        font-size: 1.5rem;
    }

    .floating-request-btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}