:root {
    --brand-pink: #dfbcbc;
    --brand-red: #a34b4b;
    --black: #000000;
    --white: #ffffff;
    --input-bg: #e8dada;
}

body { font-family: 'Inter', sans-serif;
     margin: 0; 
     color: #333; line-height: 1.6;
     background-color: #e9ecee;
     }

/* Header Base Styling */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background-color: rgba(248, 241, 241, 0.95);
    backdrop-filter: blur(10px); /* Modern blur effect */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Initial hidden state for sections */
.section-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Add a 'locked' class via JS if not logged in */
.locked-section {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    position: relative;
}

.locked-overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}



/* State when the section enters the viewport */
.section-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Hero elements specific tweaks */
.welcome-banner, .brand-text, .main-banner {
    will-change: transform, opacity;
}

/* Logo & Branding */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    width: 50px; /* Smaller, more elegant size */
    height: auto;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}

/* Navigation Links */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
}

/* Elegant Underline Hover */
.nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--brand-red); /* Your brand color */
    transition: 0.3s;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.nav-menu ul li a:hover {
    color: #000;
}

/* Auth Buttons */
.header-auth {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-signin {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-signup {
    text-decoration: none;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 1px solid #1a1a1a;
}

.btn-signup:hover {
    background-color: transparent;
    color: #1a1a1a;
}

.btn-signin:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-header {
        padding: 15px 5%;
    }
    
    .nav-menu {
        display: none; /* In a real project, you'd trigger a burger menu here */
    }
    
    .logo-text {
        font-size: 1rem;
    }
}
/* ==========================================================================
   1. GLOBAL LAYOUT & VARIABLES
   ========================================================================== */
:root {
    --brand-red: #a34b4b;
    --brand-gold: #e0c097;
    --dark-charcoal: #1a1a1a;
    --off-white: #fdfdfd;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

section { 
    padding: 100px 8%; 
    overflow: hidden;
}

/* ==========================================================================
   2. HERO SECTION (The First Impression)
   ========================================================================== */
.hero { 
    background-color: var(--off-white); 
    text-align: center;
    padding-top: 140px; /* Space for sticky header */
}

.welcome-banner { 
    font-size: 3.5rem; 
    font-weight: 800; 
    letter-spacing: -1px;
    margin-bottom: 40px; 
    color: var(--dark-charcoal);
}

.hero-card { 
    background: white; 
    padding: 40px; 
    display: inline-block; 
    width: 100%; 
    max-width: 1150px; 
    box-shadow: var(--shadow-soft);
    border-radius: 8px;
    transition: var(--transition);
}

.main-banner { 
    width: 100%; 
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    margin: 20px 0;
    /* Cleaned up the blue border for a more neutral wood-focused look */
    border: 1px solid #eee; 
}

/* ==========================================================================
   PRODUCT SHOWCASE - MODULAR DESIGN
   ========================================================================== */

.product-showcase {
    background-color: #fafafa; /* Subtle contrast from pure white sections */
    padding: 120px 8%;
}

.showcase-content {
    display: flex;
    align-items: center;
    gap: 100px; /* Generous spacing for a luxury feel */
    max-width: 1300px;
    margin: 0 auto;
}

/* Text & Content Side */
.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--brand-red); /* #a34b4b */
    margin-bottom: 20px;
    font-weight: 700;
}

.showcase-text h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif; /* Optional elegant serif font */
}

.showcase-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    max-width: 500px;
}

/* Call to Action Buttons */
.showcase-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-black {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-grey {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background-color: var(--brand-red);
    transform: translateY(-2px);
}

.btn-grey:hover {
    border-color: #1a1a1a;
    background-color: #f0f0f0;
}

/* Image Side */
.showcase-image {
    flex: 1.2;
    position: relative;
    margin: 0;
}

.showcase-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

/* Decorative Element */
.showcase-image::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand-gold); /* #e0c097 */
    z-index: -1;
    border-radius: 4px;
}

/* ==========================================================================
   RESPONSIVE SCALING
   ========================================================================== */

@media (max-width: 1024px) {
    .showcase-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .showcase-content {
        flex-direction: column-reverse; /* Puts text below image on mobile */
        text-align: center;
    }

    .showcase-text p {
        margin: 0 auto 20px;
    }

    .showcase-btns {
        justify-content: center;
    }

    .showcase-image img {
        height: 400px;
    }

    .showcase-image::after {
        display: none; /* Simplifies mobile view */
    }
}

/* Client Highlights Grid */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.highlight-card {
    margin: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
}

/* Testimonial Wrapper */
.testimonial-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
}

/* Updated Testimonial Card */
.testimonial-card {
    background: #ffffff;
    padding: 35px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* Client Info as a Footer */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-gold);
}

/* ==========================================================================
   3. SERVICES & CATEGORIES
   ========================================================================== */
.service-intro { 
    display: flex; 
    gap: 60px; 
    align-items: center; 
    margin-bottom: 80px; 
}

.service-intro img { 
    width: 50%; 
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.service-categories { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 25px; 
}

.service-categories figure { 
    background: white; 
    padding: 30px; 
    margin: 0; 
    text-align: center; 
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.service-categories figure:hover {
    transform: translateY(-10px);
    border-color: var(--brand-gold);
}

.service-categories img { 
    width: 100%; 
    height: 180px;
    object-fit: cover;
    margin-top: 20px; 
    border-radius: 4px;
}

/* ==========================================================================
   4. DESIGN GRID (Portfolio/Process)
   ========================================================================== */
.design-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    list-style: none; 
    padding: 0; 
}

.design-grid li { overflow: hidden; border-radius: 4px; }

.design-grid img { 
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
    transition: transform 0.6s ease;
}

.design-grid li:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   5. WORK PROCESS STEPS
   ========================================================================== */
.process-steps { 
    display: flex; 
    justify-content: space-around; 
    list-style: none; 
    padding: 80px 0; 
    border-top: 1px solid #eee; 
    background: #fafafa;
}

.process-steps li {
    text-align: center;
    max-width: 200px;
}

.process-steps strong { 
    color: var(--brand-red); 
    font-size: 1.4rem; 
    display: block; 
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif; /* Or a similar elegant font */
}

/* ==========================================================================
   6. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
    .service-intro { flex-direction: column; text-align: center; }
    .service-intro img { width: 100%; }
    .design-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .welcome-banner { font-size: 2.2rem; }
    .design-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; gap: 40px; }
}
/* Portfolio General */
.portfolio {
    padding: 80px 10%;
    background-color: #fff;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.portfolio-header p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Project Rows */
.project-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.project-row.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.project-img {
    flex: 1.2;
}

.project-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-details {
    flex: 1;
}

.project-details h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.explore-link {
    display: inline-block;
    margin-top: 15px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid var(--brand-red);
    transition: 0.3s;
}

.explore-link:hover {
    letter-spacing: 1px;
    color: var(--brand-red);
}

/* Workshop Grid */
.workshop-grid {
    margin-top: 100px;
    text-align: center;
}

.workshop-title h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.grid-container figure {
    margin: 0;
}

.grid-container figure img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
}

.grid-container figcaption {
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}

.priority-box {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fdf6f6; /* Subtle brand tint */
    padding: 40px;
    text-align: left;
    border-left: 5px solid var(--brand-red);
}

.priority-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Responsive Scaling */
@media (max-width: 992px) {
    .project-row, .project-row.reverse {
        flex-direction: column;
        text-align: left;
        gap: 20px;
    }
    
    .project-img img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .priority-box {
        grid-column: span 1;
    }
}

/* Container for both cards */
.auth-container {
    padding: 80px 5%;
    background-color: #f4f4f4;
}

.auth-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 80px 5%;
    background-color: #f4f4f4;
}

/* Individual Article Cards */
.auth-card {
    background: var(--brand-red); /* #a34b4b */
    color: white;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Removing div requirements from forms */
.auth-card form label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-card form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 4px;
    background: #fdfdfd;
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

/* Auth Button */
.btn-auth {
    width: 100%;
    padding: 15px;
    background: black;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-auth:hover {
    background: #222;
}

/* Divider Styling (Replacing div with p) */
.auth-divider {
    text-align: center;
    margin: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    line-height: 0.1em;
    position: relative;
}

.auth-divider span {
    background: var(--brand-red);
    padding: 0 10px;
}

/* Google Login link */
.google-login {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: white;
    color: black;
    text-decoration: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 500;
    transition: 0.3s;
    font-size: 1rem;
}

.google-login:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* Navigation between Sign-in/Sign-up */
.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.auth-switch a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.auth-switch a:hover {
    text-decoration: none;
}

/* Responsive Auth */
@media (max-width: 768px) {
    .auth-container {
        padding: 60px 5%;
    }
    
    .auth-wrapper {
        gap: 30px;
    }
    
    .auth-card {
        padding: 30px;
        max-width: 100%;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
/* About Section Base */
.about-section {
    padding: 100px 10%;
    background-color: #ffffff;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Text Content Styling */
.about-content {
    flex: 1;
}

.about-header .subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-red); /* #a34b4b */
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-header h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-description strong {
    color: #1a1a1a;
    border-bottom: 2px solid #e0c097; /* Wood accent color */
}

/* Action Area */
.about-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    width: fit-content;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Socials in About */
.about-socials span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #888;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #1a1a1a;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--brand-red);
}

/* Founder Portrait Styling */
.about-visual {
    flex: 1;
    position: relative;
    margin: 0;
}

.founder-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 30px 30px 0px #f4f4f4; /* Decorative offset background */
}

.founder-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 20px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.founder-badge strong {
    display: block;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.founder-badge span {
    font-size: 0.9rem;
    color: var(--brand-red);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .about-actions {
        align-items: center;
    }
    
    .founder-img {
        height: 450px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .founder-badge {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
}
/* Footer */
/* Footer Container */
.main-footer {
    background-color: #1a1a1a; /* Dark sophisticated background */
    color: #ffffff;
    padding: 80px 10% 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Top CTA Section */
.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 2rem;
    letter-spacing: 3px;
    margin: 0;
    color: #e0c097; /* Elegant wood/gold tone */
}

.footer-brand .handle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 5px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: #e0c097;
    color: #1a1a1a;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 25px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover, .btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 192, 151, 0.3);
}

/* Divider */
.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
    margin-bottom: 50px;
}

/* Links Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: #e0c097;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Social List Specifics */
.social-list i {
    margin-right: 10px;
    color: #e0c097;
}

/* Portfolio Services */
.portfolio-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px 0 80px;
}

.service-card {
    background: #f8f4ee;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 1.3rem;
}

.service-card p {
    color: #555;
    line-height: 1.75;
}

/* Terms & Conditions */
.terms-section {
    padding: 80px 10%;
    background: #ffffff;
}

.terms-header {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.terms-header h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.terms-header p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 25px;
}

.terms-card {
    background: #f4f0eb;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ece3dc;
}

.terms-card h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.terms-card p {
    color: #555;
    line-height: 1.8;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    opacity: 0.6;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-cta .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
    }
    
    .footer-cta .btn-primary,
    .footer-cta .btn-outline {
        width: min(100%, 320px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-column ul {
        width: 100%;
        max-width: 320px;
    }
    
    .footer-column ul li a {
        display: inline-block;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-services {
        grid-template-columns: 1fr;
    }
}

/* Terms Modal */
.terms-modal {
    border: none;
    border-radius: 8px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.terms-modal::backdrop {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.terms-modal-content {
    padding: 40px;
    background: white;
    border-radius: 8px;
}

.close-terms-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
}

.close-terms-modal:hover {
    color: #333;
}

/* Using dialog element simplifies positioning */
dialog {
    border: none;
    border-radius: 8px;
    padding: 0;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-inner {
    padding: 40px;
    background: white;
}

.form-group {
    border: none;
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

/* Lightbox specific adjustments */
#portfolioLightbox {
    background: transparent;
    max-width: 90vw;
    color: white;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* PROJECT EXPLORE MODAL */
.project-modal {
    border: none;
    border-radius: 4px;
    padding: 0;
    width: 90%;
    max-width: 1100px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.project-modal::backdrop {
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
}

/* GRID REPLACEMENT */
.project-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: white;
}

.project-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-sidebar {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-details-text {
    margin: 30px 0;
    color: #444;
    line-height: 1.8;
}

/* BUTTONS */
.btn-whatsapp {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.project-modal-container {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

/* MEDIA MODAL (VIDEO) */
.media-modal {
    border: none;
    background: #000;
    max-width: 900px;
    width: 95%;
    border-radius: 8px;
    overflow: hidden;
}

.media-modal::backdrop {
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);
}

#projectVideoPlayer {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

.video-info {
    padding: 25px;
    background: #111;
    color: white;
}

/* QUOTE FORM MODAL */
.form-modal {
    border: none;
    max-width: 550px;
    width: 90%;
    border-radius: 4px;
    padding: 0;
}

.form-inner {
    padding: 50px;
    background: #fff;
}

.input-row {
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-modal h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-modal input, .form-modal select, .form-modal textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    font-family: inherit;
    margin-top: 10px;
}

.close-media, .close-quote {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.close-media { color: white; }