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

:root {
    --primary-black: #FFFFFF;
    --primary-teal: #00CED1;
    --primary-cyan: #00FFFF;
    --dark-grey: #F5F5F5;
    --charcoal: #E8E8E8;
    --light-grey: #DADADA;
    --white: #000000;
    --transparent-teal: rgba(0, 206, 209, 0.1);
    --transparent-black: rgba(255, 255, 255, 0.8);
}

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

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

/* Logo Styles */
.logo-graphic {
    display: flex;
    flex-wrap: wrap;
    width: 60px;
    height: 60px;
    position: relative;
}

.logo-graphic.small {
    width: 40px;
    height: 40px;
}

.logo-shape {
    position: absolute;
    width: 20px;
    height: 20px;
}

.logo-graphic.small .logo-shape {
    width: 15px;
    height: 15px;
}

.shape-1 {
    top: 0;
    left: 0;
    background: var(--dark-grey);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 60% 100%, 0 100%);
}

.shape-2 {
    top: 0;
    right: 0;
    background: var(--primary-teal);
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
}

.shape-3 {
    bottom: 0;
    left: 0;
    background: var(--dark-grey);
    clip-path: polygon(0 0, 40% 0, 100% 60%, 100% 100%, 0 100%);
}

.shape-4 {
    bottom: 0;
    right: 0;
    background: var(--primary-teal);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 60% 100%, 0 100%);
}

.shape-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-teal);
    width: 12px;
    height: 12px;
}

.logo-graphic.small .shape-5 {
    width: 8px;
    height: 8px;
}

.shape-6 {
    top: 25%;
    left: 25%;
    background: var(--dark-grey);
    width: 8px;
    height: 8px;
}

.logo-graphic.small .shape-6 {
    width: 6px;
    height: 6px;
}

.shape-7 {
    top: 25%;
    right: 25%;
    background: var(--primary-teal);
    width: 8px;
    height: 8px;
}

.logo-graphic.small .shape-7 {
    width: 6px;
    height: 6px;
}

.shape-8 {
    bottom: 25%;
    left: 25%;
    background: var(--white);
    width: 6px;
    height: 6px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.logo-graphic.small .shape-8 {
    width: 4px;
    height: 4px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.company-name {
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.company-subtitle {
    color: var(--dark-grey);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-teal);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.language-switch {
    background: var(--primary-teal);
    color: var(--primary-black);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switch:hover {
    background: var(--primary-cyan);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8E8E8 100%);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #000000;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Overview Sections */
.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 25px;
    line-height: 1.2;
}

.overview-text p {
    font-size: 1.1rem;
    color: #000000;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.7;
}

.overview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder.large {
    width: 300px;
    height: 300px;
    background: #E0E0E0;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--primary-teal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--primary-black);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-teal);
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 206, 209, 0.3);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tile-pattern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    transform: rotate(45deg);
}

.tile {
    width: 80px;
    height: 80px;
    background: var(--primary-teal);
    border-radius: 5px;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.tile:nth-child(2) { animation-delay: 1s; }
.tile:nth-child(3) { animation-delay: 2s; }
.tile:nth-child(4) { animation-delay: 3s; }
.tile:nth-child(5) { animation-delay: 4s; }
.tile:nth-child(6) { animation-delay: 5s; }

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

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-teal);
    border-radius: 2px;
}

/* About Section */
.about {
    background: #E8E8E8;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #000000;
    opacity: 0.9;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.stat-label {
    font-size: 0.9rem;
    color: #000000;
    opacity: 0.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: #E0E0E0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: var(--primary-teal);
}

/* Services Section */
.services {
    background: #FFFFFF;
}

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

.service-card {
    background: #E8E8E8;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-teal);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-black);
}

.service-card h3 {
    color: var(--primary-teal);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #000000;
    opacity: 0.9;
    line-height: 1.6;
}

/* Work Section */
.work {
    background: #E8E8E8;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.work-item {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.work-image {
    height: 200px;
    background: #E0E0E0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--primary-teal);
}

.work-info {
    padding: 25px;
}

.work-info h3 {
    color: var(--primary-teal);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.work-info p {
    color: #000000;
    opacity: 0.9;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    background: #FFFFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--primary-black);
}

.contact-item h3 {
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    color: #000000;
    opacity: 0.9;
}

.contact-form {
    background: #E8E8E8;
    padding: 30px;
    border-radius: 15px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary-teal);
    background: var(--charcoal);
    padding: 0 5px;
}

.submit-btn {
    width: 100%;
    background: var(--primary-teal);
    color: var(--primary-black);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-cyan);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #E8E8E8;
    padding: 50px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Mobile responsive footer logo */
@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-logo-image {
        max-width: 220px;
        margin: 0 auto;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-black);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
    color: #000000;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--primary-teal) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.footer-bottom a:hover {
    color: var(--primary-cyan) !important;
    text-decoration: underline !important;
}

/* Additional specificity for footer links */
footer .footer-bottom a,
.footer .footer-bottom a {
    color: var(--primary-teal) !important;
    text-decoration: none !important;
}

footer .footer-bottom a:hover,
.footer .footer-bottom a:hover {
    color: var(--primary-cyan) !important;
    text-decoration: underline !important;
}

/* Maximum specificity for Brezzo link */
.footer .footer-bottom p a[href*="brezzo.co"],
footer .footer-bottom p a[href*="brezzo.co"] {
    color: var(--primary-teal) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}

.footer .footer-bottom p a[href*="brezzo.co"]:hover,
footer .footer-bottom p a[href*="brezzo.co"]:hover {
    color: var(--primary-cyan) !important;
    text-decoration: underline !important;
}

/* Page Hero Sections */
.about-hero,
.services-hero,
.work-hero,
.contact-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    overflow: hidden;
}

.contact-hero {
    padding-bottom: 0;
}

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

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ceramic-bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: brightness(0.7);
}

.ceramic-bg-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-bg-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}



@keyframes tileMove {
    0% {
        background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    }
    100% {
        background-position: 40px 40px, 40px 60px, 60px 20px, 20px 40px;
    }
}

/* Responsive styles for ceramic background */
@media (max-width: 768px) {
    .ceramic-bg-photo {
        opacity: 0.3;
        filter: brightness(0.6);
    }
    
    .ceramic-bg-photo::after {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    }
    
    .contact-hero {
        padding-bottom: 0;
    }
    
    .work-hero .container,
    .about-hero .container {
        position: absolute;
        bottom: 250px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding: 0 20px;
    }
}

/* Responsive styles for homepage hero background */
@media (max-width: 768px) {
    .hero-background .hero-bg-image {
        opacity: 0.25;
        filter: brightness(0.7);
    }
    
    .hero-background .hero-bg-image::after {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    }
    
    .hero-image-box {
        width: 300px;
        height: 300px;
        transform: rotate(3deg);
    }
    
    .hero-image-box:hover {
        transform: rotate(0deg) scale(1.02);
    }
}

.tile-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, var(--transparent-teal) 25%, transparent 25%),
        linear-gradient(-45deg, var(--transparent-teal) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--transparent-teal) 75%),
        linear-gradient(-45deg, transparent 75%, var(--transparent-teal) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.3;
    animation: tileMove 20s linear infinite;
}

@keyframes tileMove {
    0% { background-position: 0 0, 0 30px, 30px -30px, -30px 0px; }
    100% { background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #000000 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #000000;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #000000;
    opacity: 0.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 206, 209, 0.1);
    border: 1px solid var(--primary-teal);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    color: var(--primary-teal);
    font-weight: 500;
}

.feature-badge i {
    font-size: 1.1rem;
}

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

.section-badge {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--primary-black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #000000 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Overview Sections */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.overview-content {
    padding-right: 2rem;
}

.overview-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.overview-visual {
    position: relative;
}

.overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-placeholder.modern {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: var(--white);
}

.overlay-content {
    text-align: center;
}

.overlay-content .year,
.overlay-content .service-count,
.overlay-content .project-count {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.overlay-content .milestone,
.overlay-content .service-text,
.overlay-content .project-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: #FFFFFF;
    margin-top: -5rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #000000;
    opacity: 0.9;
}

.story-visual {
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.mv-card.mission {
    border-left: 4px solid var(--primary-teal);
}

.mv-card.vision {
    border-left: 4px solid var(--primary-cyan);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive styles for values grid */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    opacity: 0.8;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--charcoal) 100%);
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.member-photo {
    position: relative;
    margin-bottom: 1.5rem;
}

.member-photo .image-placeholder.modern {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    font-size: 3rem;
}

.member-social {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-teal);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.member-social:hover {
    transform: scale(1.1);
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.position {
    display: block;
    color: var(--primary-teal);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.8;
}

/* Achievements Section */
.achievements-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

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

.achievement-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.achievement-label {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.achievement-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
}

/* Mobile responsive styles for achievements section */
@media (max-width: 768px) {
    .achievements-section {
        padding: 4rem 0;
    }
    
    .achievements-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .achievement-item {
        padding: 1.5rem;
        position: relative;
        display: flex;
        align-items: center;
        gap: 2rem;
        text-align: center;
        justify-content: center;
    }
    
    .achievement-icon {
        position: static;
        margin: 0;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .achievement-content {
        flex: 1;
        text-align: center;
    }
    
    .achievement-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .achievement-label {
        font-size: 1rem;
        margin-bottom: 0;
    }
}

/* Certifications Section */
.certifications-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--charcoal) 100%);
}

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

.cert-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin: 0 auto 1.5rem;
}

.cert-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.cert-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.8;
}

/* Services Page Styles */
.service-overview-section {
    padding: 6rem 0;
    background: var(--primary-black);
    margin-top: -12rem;
}

.core-services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

/* Responsive styles for core services grid */
@media (max-width: 1200px) {
    .core-services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .core-services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        justify-items: center;
    }
    
    .portfolio-overview-section {
        margin-top: -5rem;
    }
    
    .service-overview-section {
        margin-top: -8rem;
    }
    
    .story-section {
        margin-top: -3rem;
    }
    
    .core-services-section .service-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .core-services-section .service-header {
        margin-bottom: 1rem;
        gap: 0.8rem;
    }
    
    .core-services-section .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .core-services-section .service-card h3 {
        font-size: 1.2rem;
    }
    
    .core-services-section .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .core-services-section .service-features h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .core-services-section .service-features li {
        padding: 0.3rem 0;
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.service-card.featured {
    border: 2px solid var(--primary-teal);
    background: rgba(0, 206, 209, 0.05);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.service-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #000000;
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

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

.process-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #000000;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    opacity: 0.8;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

/* Mobile responsive styles for Why Choose Us section */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 0;
    }
    
    .why-choose-section .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .why-choose-section .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .why-choose-section .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .why-choose-section .benefit-item {
        padding: 1.5rem;
        margin: 0 1rem;
        height: auto;
        min-height: 300px;
    }
    
    .why-choose-section .benefit-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .why-choose-section .benefit-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .why-choose-section .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

/* Responsive styles for benefits grid */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        justify-items: center;
    }
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
    flex-shrink: 0;
    text-align: center;
    width: 100%;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    opacity: 0.8;
    flex: 1;
    margin: 0;
    text-align: center;
}

/* Work Page Styles */
.portfolio-overview-section {
    padding: 6rem 0;
    background: var(--primary-black);
    margin-top: -8rem;
}

/* Gallery Filter Section */
.gallery-filter-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(0, 206, 209, 0.2);
    border-color: var(--primary-teal);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-teal);
    color: var(--primary-black);
    border-color: var(--primary-teal);
}

/* Photo Gallery Section */
.photo-gallery-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

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

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.gallery-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-image .image-placeholder.modern {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image .image-placeholder.modern {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    color: #FFFFFF;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.overlay-content {
    text-align: center;
}

.project-category {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.overlay-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.overlay-content p {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.4;
}

.project-categories-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.category-card.residential {
    border-left: 4px solid var(--primary-teal);
}

.category-card.commercial {
    border-left: 4px solid var(--primary-cyan);
}

.category-card.hospitality {
    border-left: 4px solid #FF6B6B;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin: 0 auto 1.5rem;
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.category-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.category-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.category-type {
    font-size: 0.9rem;
    color: #000000;
    opacity: 0.7;
}

/* Featured Projects Section */
.featured-projects-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

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

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.project-card.featured {
    border: 2px solid var(--primary-teal);
    background: rgba(0, 206, 209, 0.05);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image .image-placeholder.modern {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    color: #FFFFFF;
}

.project-type {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.project-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.project-details {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000;
    opacity: 0.7;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-teal);
}

/* Project Process Section */
.project-process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-black);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--primary-teal);
    opacity: 0.8;
}

/* Contact Page Styles */
.contact-overview-section {
    padding: 2.5rem 0;
    background: #FFFFFF;
    margin-top: -5rem;
}

.contact-info-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive styles for contact info grid */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .contact-overview-section {
        padding: 2rem 0;
        margin-top: -4rem;
    }
    
    .contact-info-section {
        padding: 2rem 0;
    }
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.contact-info-card.phone {
    border-left: 4px solid var(--primary-teal);
}

.contact-info-card.email {
    border-left: 4px solid var(--primary-cyan);
}

.contact-info-card.location {
    border-left: 4px solid #FF6B6B;
}

.contact-info-card.hours {
    border-left: 4px solid #4ECDC4;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.contact-main {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.contact-secondary {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-note {
    font-size: 0.9rem;
    color: #000000;
    opacity: 0.7;
    font-style: italic;
}

/* NEW CONTACT FORM DESIGN */
.contact-form-section {
    padding: 6rem 0 3rem 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.form-header p {
    font-size: 1.2rem;
    color: #6C757D;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-field {
    position: relative;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.field-wrapper {
    position: relative;
    background: #F8F9FA;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.field-wrapper:focus-within {
    border-color: var(--primary-teal);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(0, 206, 209, 0.1);
}

.field-wrapper input,
.field-wrapper select,
.field-wrapper textarea {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3.5rem;
    background: transparent;
    border: none;
    color: #2C3E50;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.field-wrapper input:focus,
.field-wrapper select:focus,
.field-wrapper textarea:focus {
    outline: none;
}

.field-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1.5rem;
}

.field-wrapper label {
    position: absolute;
    top: 1.2rem;
    left: 3.5rem;
    color: #6C757D;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.field-wrapper input:focus + label,
.field-wrapper input:valid + label,
.field-wrapper select:focus + label,
.field-wrapper select:valid + label,
.field-wrapper textarea:focus + label,
.field-wrapper textarea:valid + label {
    top: 0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    color: var(--primary-teal);
    font-weight: 600;
}

.field-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6C757D;
    transition: all 0.3s ease;
    z-index: 1;
}

.field-wrapper:focus-within .field-icon {
    color: var(--primary-teal);
}

.newsletter-option {
    padding: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: #6C757D;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #DEE2E6;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    color: white;
    color: var(--primary-black);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 206, 209, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    position: static;
    opacity: 1;
    color: #000000;
    font-size: 0.9rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 206, 209, 0.3);
}

/* Mobile responsive styles for NEW contact form design */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .form-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .form-header {
        margin-bottom: 2.5rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .field-wrapper {
        border-radius: 12px;
    }
    
    .field-wrapper input,
    .field-wrapper select,
    .field-wrapper textarea {
        padding: 1rem 1rem 1rem 3rem;
        font-size: 0.95rem;
    }
    
    .field-wrapper label {
        top: 1rem;
        left: 3rem;
        font-size: 0.95rem;
    }
    
    .field-wrapper input:focus + label,
    .field-wrapper input:valid + label,
    .field-wrapper select:focus + label,
    .field-wrapper select:valid + label,
    .field-wrapper textarea:focus + label,
    .field-wrapper textarea:valid + label {
        top: 0.3rem;
        left: 0.8rem;
        font-size: 0.75rem;
    }
    
    .field-icon {
        width: 20px;
        height: 20px;
        left: 0.8rem;
    }
    
    .field-wrapper textarea {
        min-height: 100px;
    }
    
    .newsletter-option {
        padding: 0.8rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .submit-btn .btn-text {
        font-size: 1rem;
    }
}

/* Why Choose Contact Section */
.why-choose-contact-section {
    padding: 3rem 0 6rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

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

.advantage-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-black);
    margin: 0 auto 1.5rem;
}

.advantage-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.advantage-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #000000;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-teal);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.faq-question i {
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #000000;
    opacity: 0.8;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--primary-black);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--primary-black);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.cta-button.primary {
    background: var(--primary-black);
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.cta-button.secondary:hover {
    background: var(--primary-black);
    color: var(--white);
}

/* Homepage Specific Styles */
.services-overview {
    padding: 6rem 0;
    background: #FFFFFF;
}

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

.services-overview .service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 320px;
    max-width: 380px;
    flex-shrink: 0;
}

.services-overview .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.services-overview .service-card.featured {
    border: 2px solid var(--primary-teal);
    background: rgba(0, 206, 209, 0.05);
}

.services-overview .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin: 0 auto 1.5rem;
}

.services-overview .service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.services-overview .service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-content {
    padding-right: 2rem;
}

.why-choose-content .section-badge {
    margin-bottom: 2rem;
}



/* Mobile responsive spacing for Why Choose Us section */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 4rem 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .why-choose-content {
        padding-right: 0;
        text-align: center;
    }
    
    .why-choose-content .section-badge {
        margin-bottom: 2.5rem;
    }
    
    .section-text {
        margin-bottom: 2.5rem;
        font-size: 1rem;
    }
    
    .benefits-list {
        gap: 1.8rem;
    }
    
    .benefit-item {
        gap: 1.2rem;
    }
    
    .benefit-check {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .why-choose-visual .image-placeholder.modern {
        height: 300px;
    }
    
    .experience-badge {
        bottom: -15px;
        right: -15px;
        padding: 1.2rem;
        min-width: 100px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: #000000;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-check {
    width: 40px;
    height: 40px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-black);
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #000000;
    opacity: 0.8;
    line-height: 1.5;
}

.why-choose-visual {
    position: relative;
}

.why-choose-visual .image-placeholder.modern {
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-teal);
    color: var(--primary-black);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    min-width: 120px;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Recent Projects Section */
.recent-projects {
    padding: 6rem 0;
    background: #FFFFFF;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.project-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.project-item.featured {
    border: 2px solid var(--primary-teal);
    background: rgba(0, 206, 209, 0.05);
}

.project-item .project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-item .project-image .image-placeholder.modern {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
}

.project-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.project-category {
    background: var(--primary-teal);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.project-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
}

.project-meta i {
    color: var(--primary-teal);
}

.projects-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Statistics Section */
.statistics-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
}

.statistics-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.statistics-section .stat-item {
    text-align: center;
    color: var(--primary-black);
}

.statistics-section .stat-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-teal);
    margin: 0 auto 1.5rem;
}

.statistics-section .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.statistics-section .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Homepage Testimonials */
.recent-projects + .testimonials-section {
    background: var(--primary-black);
}

/* Contact CTA Section */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.contact-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-cta .cta-content p {
    font-size: 1.2rem;
    color: #000000;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero,
    .work-hero,
    .services-hero,
    .about-hero,
    .contact-hero {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        justify-content: flex-end;
        align-items: center;
        min-height: 100vh;
        position: relative;
    }
    
    .hero-content {
        position: absolute;
        bottom: 250px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding: 0 20px;
    }
    
    .work-hero .container,
    .about-hero .container {
        position: absolute;
        bottom: 250px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tile-pattern {
        display: none;
    }
    
    /* Position about hero text at bottom */
    .about-hero {
        position: relative !important;
        min-height: 100vh !important;
    }
    
    .about-hero .container {
        position: absolute !important;
        bottom: 50px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100% !important;
        padding: 0 20px 5px 20px !important;
        z-index: 10 !important;
    }
    
    /* Position work hero text at bottom */
    .work-hero {
        position: relative !important;
        min-height: 100vh !important;
    }
    
    .work-hero .container {
        position: absolute !important;
        bottom: 50px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100% !important;
        padding: 0 20px 5px 20px !important;
        z-index: 10 !important;
    }
    

    
    /* New Page Responsive Styles */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .overview-content {
        padding-right: 0;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Gallery Responsive Styles */
    .filter-controls {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Homepage Responsive Styles */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .why-choose-content {
        padding-right: 0;
    }
    
    .benefits-list {
        gap: 1rem;
    }
    
    .benefit-item {
        text-align: left;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .statistics-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .work-item {
        margin: 0 10px;
    }
    
    /* Mobile Specific Styles */
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-badge {
        min-width: 100px;
        padding: 0.75rem 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .overview-image .image-placeholder.modern {
        height: 300px;
        font-size: 3rem;
    }
    
    .mv-card,
    .value-card,
    .team-member,
    .achievement-item,
    .cert-item,
    .service-card,
    .process-step,
    .benefit-item,
    .category-card,
    .project-card,
    .testimonial-card,
    .contact-info-card,
    .advantage-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    /* Homepage Mobile Styles */
    .services-overview .service-card {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-visual .image-placeholder.modern {
        height: 300px;
    }
    
    .experience-badge {
        bottom: -15px;
        right: -15px;
        padding: 1rem;
        min-width: 100px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .project-item .project-image {
        height: 200px;
    }
    
    .statistics-section .stat-number {
        font-size: 2.5rem;
    }
    
    .statistics-section .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-cta .cta-content p {
        font-size: 1rem;
    }
}
