/* ==========================================================================
   Foonen Oy - Premium Web Stylesheet
   Modern, High-end, Bilingual, Responsive
   ========================================================================== */

/* Custom Properties & Design Tokens */
:root {
    /* Color Palette */
    --clr-bg-deep: hsl(222, 28%, 7%);
    --clr-bg-card: hsl(222, 24%, 12%);
    --clr-bg-card-hover: hsl(222, 22%, 16%);
    
    --clr-primary: hsl(208, 90%, 55%);
    --clr-primary-glow: hsla(208, 90%, 55%, 0.15);
    --clr-primary-hover: hsl(208, 95%, 63%);
    
    --clr-accent: hsl(36, 76%, 58%); /* Elegant Warm Gold/Copper */
    --clr-accent-hover: hsl(36, 85%, 65%);
    
    --clr-text-main: hsl(210, 20%, 96%);
    --clr-text-muted: hsl(215, 12%, 72%);
    --clr-text-dark: hsl(222, 10%, 45%);
    
    /* Layout */
    --container-max-width: 1200px;
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Borders & Glassmorphism */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(12, 18, 30, 0.7);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-bg-deep);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Language Visibility Rules */
body.lang-fi .lang-en {
    display: none !important;
}
body.lang-en .lang-fi {
    display: none !important;
}

/* Ensure dropdown select matches language */
body.lang-fi select option.lang-en {
    display: none !important;
}
body.lang-en select option.lang-fi {
    display: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Utility Components */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent);
    display: inline-block;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    margin: 0 auto;
    border-radius: 2px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: #fff;
    box-shadow: 0 4px 20px var(--clr-primary-glow);
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px hsla(208, 90%, 55%, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-glass);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 60%, var(--clr-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #fff;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.lang-btn.active {
    color: #fff;
    background-color: var(--clr-primary);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    margin: 0 0.2rem;
}

.btn-nav-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Nav Active Animation */
.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--clr-bg-card);
    border-left: var(--border-glass);
    z-index: 999;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.mobile-nav-link:hover {
    color: #fff;
}

.mobile-cta {
    width: 100%;
    margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background-image: url('assets/subfloor_plumbing.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 15, 26, 0.95) 40%, 
        rgba(10, 15, 26, 0.85) 60%, 
        rgba(10, 15, 26, 0.5) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    color: var(--clr-accent);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 60%, var(--clr-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Trust Banner
   -------------------------------------------------------------------------- */
.trust-banner {
    background-color: var(--clr-bg-card);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    padding: 2.5rem 0;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 250px;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    color: var(--clr-primary);
}

.trust-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.trust-text p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services {
    padding: 8rem 0;
}

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

.service-card {
    background-color: var(--clr-bg-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.service-card:hover {
    background-color: var(--clr-bg-card-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.service-card:hover::before {
    background-color: var(--clr-primary);
}

/* Highlighted card variant (e.g. emergency) */
.service-card.highlighted {
    border-color: rgba(235, 94, 40, 0.2);
}

.service-card.highlighted::before {
    background-color: var(--clr-accent);
}

.service-card.highlighted:hover::before {
    background-color: var(--clr-accent);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--clr-primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--clr-primary-glow);
}

.service-card.highlighted:hover .service-icon {
    background-color: var(--clr-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(235, 94, 40, 0.2);
}

.service-card.highlighted .service-icon {
    color: var(--clr-accent);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about {
    padding: 8rem 0;
    background-color: var(--clr-bg-card);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.75rem;
}

.about-details {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.detail-badge {
    display: flex;
    flex-direction: column;
}

.detail-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.detail-badge .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
}

.about-visual {
    position: relative;
    padding-right: 2rem;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
}

.visual-border-box {
    position: absolute;
    top: -20px;
    right: 0px;
    width: 80%;
    height: 100%;
    border: 2px solid var(--clr-accent);
    border-radius: 16px;
    z-index: 1;
    opacity: 0.3;
}

/* --------------------------------------------------------------------------
   Showcase Gallery
   -------------------------------------------------------------------------- */
.showcase {
    padding: 8rem 0;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.showcase-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: var(--border-glass);
}

.showcase-img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.95), transparent);
    display: flex;
    align-items: flex-end;
}

.showcase-text .category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
    display: block;
}

.showcase-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.showcase-details-box {
    background-color: var(--clr-bg-card);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
}

.showcase-details-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.showcase-list li {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.list-bullet {
    color: var(--clr-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   Contact & Quote Section
   -------------------------------------------------------------------------- */
.contact {
    padding: 8rem 0;
    background-color: var(--clr-bg-card);
    border-top: var(--border-glass);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-lead-text {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.method-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    transition: var(--transition-smooth);
}

.contact-method-item:hover .method-icon {
    background-color: var(--clr-primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--clr-primary-glow);
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 0.25rem;
}

.method-value {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}

.method-value:hover {
    color: var(--clr-primary);
}

/* Contact Form Styling */
.contact-form-container {
    background: var(--bg-glass);
    border: var(--border-glass);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #fff;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' 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 1.2rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

.form-group select option {
    background-color: var(--clr-bg-card);
    color: #fff;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--clr-primary);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px var(--clr-primary-glow);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
}

/* Success State Styles */
.form-success-box {
    text-align: center;
    padding: 1.5rem 0;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(46, 204, 113, 0.1);
    color: hsl(145, 80%, 45%);
    margin-bottom: 2rem;
}

.form-success-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.form-success-box p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.form-success-box strong {
    color: #fff;
}

.form-success-box .btn {
    width: auto;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background-color: hsl(222, 28%, 5%);
    border-top: var(--border-glass);
    padding: 6rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col .logo-container {
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.business-id {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    letter-spacing: -0.3px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a, 
.footer-links span {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.footer-links a:hover {
    color: var(--clr-primary);
    transform: translateX(3px);
}

.contact-col p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
}

.contact-col a {
    color: var(--clr-text-main);
}

.contact-col a:hover {
    color: var(--clr-primary);
}

.footer-bottom {
    padding: 2.5rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--clr-text-dark);
}

.creator-tag {
    font-size: 0.85rem;
    color: var(--clr-text-dark);
}

/* --------------------------------------------------------------------------
   Animations (Intersection Observer)
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive Design Media Queries
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-visual {
        max-width: 550px;
        margin: 0 auto;
        padding-right: 0;
        width: 100%;
    }
    
    .visual-border-box {
        display: none;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-col.contact-col {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .nav-menu, 
    .header-actions .btn-nav-cta {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .services {
        padding: 5rem 0;
    }
    
    .about {
        padding: 5rem 0;
    }
    
    .showcase {
        padding: 5rem 0;
    }
    
    .contact {
        padding: 5rem 0;
    }
    
    .contact-form-container {
        padding: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-col, 
    .footer-col.contact-col {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .about-details {
        flex-direction: column;
        gap: 1.5rem;
    }
}
