/* Cozlux V4 - Main Stylesheet with full-bleed header and softer blue */

/* --- Universal Box Sizing --- */
*, *::before, *::after {
    box-sizing: border-box;
}

/* --- Variables & Base --- */
:root {
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    --color-bg-light: #f8f8f8; /* Off-white / Very light grey */
    --color-bg-cream: #f5f2ea; /* Cream background */
    --color-text-dark: #222222; /* Matte black / Dark charcoal */
    --color-text-light: #f8f8f8;
    --color-cozlux-blue: #6a8bab; /* Softer, more muted blue with cream texture */
    --color-cozlux-dark-blue: #3a4a5e; /* Darker, more muted blue */
    --color-wood-accent: #5D4037; /* Dark wood tone */
    --color-wood-light-accent: #8D6E63; /* Lighter wood tone */
    --color-highlight-black: #1a1a1a;
    --color-highlight-cream: var(--color-bg-cream);
    --transition-speed: 0.5s;
    --transition-timing: ease-in-out;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-weight: 300; /* Thin letter style base */
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--color-cozlux-blue);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-timing);
}

a:hover {
    color: var(--color-cozlux-dark-blue);
}

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

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

.section-padding {
    padding: 60px 0;
}

.bg-light-grey {
    background-color: var(--color-bg-light);
}

.bg-dark-blue {
    background-color: var(--color-cozlux-dark-blue);
    color: var(--color-text-light);
}

.text-light {
    color: var(--color-text-light);
}

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

.section-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 300; /* Thin style */
    margin-bottom: 40px;
    color: var(--color-text-dark);
    line-height: 1.2;
}

.highlight-blue {
    color: var(--color-cozlux-blue);
    font-weight: 500;
}

.highlight-black {
    color: var(--color-highlight-black);
    font-weight: 500;
}

.highlight-cream {
    color: var(--color-highlight-cream);
    font-weight: 500;
}

/* --- Header --- */
.top-bar {
    background: linear-gradient(90deg, var(--color-cozlux-dark-blue) 0%, var(--color-cozlux-blue) 100%);
    height: 30px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Language Switcher - Positioned above the image */
.language-switcher {
    position: fixed;
    top: 40px;
    right: 90px; /* Positioned to the right, but with space for menu button */
    z-index: 1100;
}

.language-switcher button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.language-switcher button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Full-bleed header style like jdias.pt */
.main-header {
    position: absolute; /* Changed from fixed to absolute for full-bleed effect */
    top: 30px; /* Below top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    background-color: transparent; /* Removed background */
    box-shadow: none; /* Removed shadow */
}

.logo a {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-text-light); /* Changed to light for contrast against image */
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Added shadow for readability */
}

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

/* Mobile adjustments for logo */
@media (max-width: 768px) {
    .main-header {
        top: 15px;
        padding: 15px 3%;
    }
    
    .logo img {
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .main-header {
        top: 10px;
        padding: 10px 3%;
    }
    
    .logo img {
        max-height: 30px;
    }
}

/* --- Side Navigation (jdias.pt style) --- */
.side-navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-nav-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--color-cozlux-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.side-nav-item:hover, .side-nav-item.active {
    background-color: var(--color-cozlux-blue);
    transform: scale(1.2);
}

.side-nav-item .nav-label {
    position: absolute;
    right: 25px;
    white-space: nowrap;
    background-color: var(--color-cozlux-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.side-nav-item:hover .nav-label {
    opacity: 1;
    transform: translateX(0);
}

/* --- Main Navigation Menu Button (jdias.pt style) --- */
.menu-toggle {
    position: fixed;
    top: 40px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2); /* More transparent for full-bleed look */
    backdrop-filter: blur(5px); /* Added blur effect */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: white; /* Changed to white for contrast */
    margin: 2px 0;
    transition: all var(--transition-speed) var(--transition-timing);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile adjustments for menu toggle */
@media (max-width: 768px) {
    .menu-toggle {
        top: 20px;
        right: 15px;
        width: 35px;
        height: 35px;
        box-shadow: 0 1px 5px rgba(0,0,0,0.15);
    }
    
    .menu-toggle span {
        width: 18px;
        height: 1.5px;
        margin: 2px 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .menu-toggle {
        top: 15px;
        right: 10px;
        width: 32px;
        height: 32px;
    }
    
    .menu-toggle span {
        width: 16px;
        height: 1.5px;
    }
}

/* --- Full Screen Navigation Menu (jdias.pt style) --- */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 74, 94, 0.95); /* Using darker blue with opacity */
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

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

.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-content li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    transition-delay: calc(0.1s * var(--i));
}

.fullscreen-menu.active .menu-content li {
    opacity: 1;
    transform: translateY(0);
}

.menu-content a {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 300;
    color: white;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.menu-content a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-content a:hover {
    color: var(--color-cozlux-blue);
}

.menu-content a:hover::after {
    width: 100%;
    background-color: var(--color-cozlux-blue);
}

/* --- Hero Section --- */
.fullscreen-section {
    height: 100vh;
    width: 100vw; /* Ensure full viewport width */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* Important for video background */
    padding: 0; /* Remove all padding */
    margin: 0; /* Remove all margin */
    max-width: 100%; /* Ensure no overflow */
}

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

.hero-video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    text-align: center;
    color: var(--color-text-light);
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 4rem; /* Responsive sizing needed */
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all var(--transition-speed) var(--transition-timing);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-cozlux-blue);
    color: var(--color-text-light);
    border-color: var(--color-cozlux-blue);
}

.btn-primary:hover {
    background-color: var(--color-cozlux-dark-blue);
    border-color: var(--color-cozlux-dark-blue);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 1px solid var(--color-text-dark);
}

.btn-secondary:hover {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
}

.btn-outline-light:hover {
    background-color: var(--color-text-light);
    color: var(--color-cozlux-blue);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.scroll-indicator::before {
    content: '';
    width: 4px;
    height: 10px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* --- Intro Section --- */
.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.intro-text h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.intro-image-showcase img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Featured Projects Section --- */
.project-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-card-content {
    padding: 25px;
}

.project-card-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.project-card-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #555;
}

.project-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-cozlux-blue);
}

/* --- Design Process Section --- */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-cozlux-blue);
    margin-bottom: 10px;
    line-height: 1;
}

.process-step h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
}

/* --- Inspiration Section --- */
#inspiration h2 {
    color: var(--color-text-light);
}
#inspiration p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--color-cozlux-dark-blue);
    color: #a0a0a0; /* Lighter grey for footer text */
    padding: 60px 0;
    font-size: 0.9rem;
}

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

.logo-footer {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-logo-social p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact a {
    color: #a0a0a0;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--color-text-light);
}

/* --- Social Media Icons --- */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-icon:hover {
    background-color: var(--color-cozlux-blue);
    transform: translateY(-3px);
}

.social-icon i {
    color: white;
    font-size: 1.2rem;
}

/* Contact section social icons - visible on light background */
.contact-info .social-icons .social-icon {
    background-color: var(--color-cozlux-blue);
    border: 2px solid var(--color-cozlux-blue);
}

.contact-info .social-icons .social-icon:hover {
    background-color: var(--color-cozlux-dark-blue);
    border-color: var(--color-cozlux-dark-blue);
    transform: translateY(-3px) scale(1.05);
}

.contact-info .social-icons .social-icon i {
    color: white;
}

/* Ensure hours content displays properly with line breaks */
.contact-detail-item p {
    line-height: 1.6;
    margin: 0;
}

/* --- Animations --- */
.animated-text-container .animate-text-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 0.8s var(--transition-timing) forwards;
}

.animated-text-container .delay-1 { animation-delay: 0.3s; }
.animated-text-container .delay-2 { animation-delay: 0.6s; }

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

.animate-button-reveal {
    opacity: 0;
    transform: scale(0.8);
    animation: buttonReveal 0.6s var(--transition-timing) forwards;
}

@keyframes buttonReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.fade-in-up {
    transform: translateY(50px);
}

.animate-on-scroll.fade-in {
    /* No initial transform needed, just opacity */
}

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

.animate-on-scroll.delay-1 { transition-delay: 0.2s; }
.animate-on-scroll.delay-2 { transition-delay: 0.4s; }
.animate-on-scroll.delay-3 { transition-delay: 0.6s; }

/* --- Page Transitions --- */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-cozlux-dark-blue);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.7s cubic-bezier(0.7, 0, 0.3, 1);
}

.page-transition.active {
    transform: translateY(0);
}

.page-transition.exit {
    transform: translateY(-100%);
}

/* --- Cream Texture Overlay --- */
.cream-texture {
    position: relative;
}

.cream-texture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,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');
    opacity: 0.05;
    pointer-events: none;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    padding-right: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-detail-item i {
    color: var(--color-cozlux-blue);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
    opacity: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--color-text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-cozlux-blue);
    outline: none;
    box-shadow: 0 0 0 2px rgba(106, 139, 171, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 1;
    font-weight: 400;
    font-size: 0.95rem;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

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

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

/* --- Newsletter Form --- */
.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 3px 0 0 3px;
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 3px 3px 0;
    padding: 0 20px;
}

/* --- Social Media Gallery --- */
.social-media-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-media-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.social-media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-media-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.social-media-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-media-icon.instagram {
    color: #E4405F;
}

.social-media-icon.facebook {
    color: #1877F2;
}

.social-media-icon.pinterest {
    color: #BD081C;
}

.social-media-item:hover .social-media-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.95);
}

.social-media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.social-media-overlay h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.social-media-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive adjustments for social media gallery */
@media (max-width: 768px) {
    .social-media-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .social-media-item img {
        height: 250px;
    }
    
    .social-media-icon {
        width: 30px;
        height: 30px;
        top: 8px;
        left: 8px;
        font-size: 0.9rem;
    }
}

/* --- Locations Section --- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-content {
    padding: 25px;
}

.location-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--color-cozlux-blue);
}

.location-card p {
    margin-bottom: 10px;
    color: var(--color-text-dark);
    line-height: 1.6;
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.faq-question:hover h3 {
    color: var(--color-cozlux-blue);
}

.faq-question h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    color: var(--color-cozlux-blue);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 15px;
}

/* Form field hover states */
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(106, 139, 171, 0.5);
}

/* Contact info styling improvements */
.contact-info h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--color-cozlux-blue);
}

/* --- Media Queries --- */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .side-navigation {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 3px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 3px;
    }
    
    /* Social media gallery mobile */
    .social-media-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .social-media-item img {
        height: 200px;
    }
    
    .social-media-icon {
        width: 30px;
        height: 30px;
        top: 8px;
        left: 8px;
        font-size: 0.9rem;
    }
    
    /* Contact form mobile improvements */
    .contact-form-container {
        padding: 30px 0;
        margin-top: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 0;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .contact-form button[type="submit"] {
        width: 100%;
        padding: 15px 30px;
        font-size: 1rem;
        margin-top: 25px;
    }
}

/* Language transition effect */
.language-transition {
    animation: fadeTransition 0.5s ease;
}

@keyframes fadeTransition {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* --- Project Gallery Modal --- */
.project-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.project-gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 40px 40px;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 100vh;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.gallery-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
}

.gallery-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.gallery-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 0;
}

.gallery-main-image {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    max-height: 70vh;
    padding: 20px;
}

.gallery-main-image img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: -80px;
}

.gallery-next {
    right: -80px;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.gallery-thumbnail {
    width: 100px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.7;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
    opacity: 1;
    border-color: var(--color-cozlux-blue);
    transform: scale(1.05);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design for Gallery */
@media (max-width: 1200px) {
    .gallery-prev {
        left: -60px;
    }
    
    .gallery-next {
        right: -60px;
    }
    
    .gallery-main-image {
        min-height: 45vh;
        max-height: 65vh;
    }
    
    .gallery-main-image img {
        max-width: 85%;
        max-height: 85%;
    }
}

@media (max-width: 992px) {
    .gallery-container {
        padding: 40px 20px 20px;
    }
    
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-description {
        font-size: 1.1rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .gallery-main-image {
        min-height: 40vh;
        max-height: 60vh;
        padding: 15px;
    }
    
    .gallery-main-image img {
        max-width: 95%;
        max-height: 95%;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        padding: 30px 15px 15px;
    }
    
    .gallery-close {
        top: 15px;
        right: 20px;
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-description {
        font-size: 1rem;
    }
    
    .gallery-header {
        margin-bottom: 20px;
    }
    
    .gallery-content {
        gap: 20px;
    }
    
    .gallery-main-image {
        min-height: 35vh;
        max-height: 50vh;
        padding: 10px;
    }
    
    .gallery-main-image img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .gallery-thumbnail {
        width: 80px;
        height: 60px;
    }
    
    .gallery-thumbnails {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .gallery-prev {
        left: 5px;
    }
    
    .gallery-next {
        right: 5px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-main-image {
        min-height: 30vh;
        max-height: 45vh;
        padding: 5px;
    }
    
    .gallery-thumbnail {
        width: 70px;
        height: 50px;
    }
}

/* --- Team Members Section --- */
.team-members {
    margin-top: 30px;
}

.team-member {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.team-member:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.team-member h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-cozlux-blue);
    margin-bottom: 10px;
    margin-top: 0;
}

.team-member p {
    margin-bottom: 0;
    line-height: 1.6;
    color: var(--color-text-dark);
}
