/* --- Global Reset --- */

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }



/* --- Config --- */

:root {

--header-height: 50px;

--header-bg: rgba(20, 20, 20, 0.5);

--text-color: #ffffff;

--accent-color: #00bcd4;

}



body { background-color: #111; }



/* --- Header Layout --- */

header {

position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);

background-color: var(--header-bg);

backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);

z-index: 1000; transition: background-color 0.3s ease;

}



.header-container {

max-width: 1200px; height: 100%; margin: 0 auto; padding: 0 20px;

display: flex; justify-content: space-between; align-items: center;

}



.logo { display: flex; align-items: center; height: 100%; }

.logo img { height: 48px; width: auto; display: block; }



.nav-links { list-style: none; display: flex; gap: 35px; }

.nav-links li a {

text-decoration: none; color: var(--text-color); font-size: 0.95rem; font-weight: 400;

letter-spacing: 0.3px; opacity: 0.85; transition: all 0.3s ease; position: relative; padding: 5px 0;

}

.nav-links li a:hover, .nav-links li a.active { opacity: 1; color: #fff; }

.nav-links li a::after {

content: ''; position: absolute; bottom: 0px; left: 50%; transform: translateX(-50%);

width: 0%; height: 2px; background-color: var(--accent-color); border-radius: 2px; transition: width 0.3s ease;

}

.nav-links li a.active::after, .nav-links li a:hover::after { width: 70%; }



.header-actions { display: flex; align-items: center; gap: 20px; }

.lang-btn { display: flex; align-items: center; gap: 6px; text-decoration: none; color: var(--text-color); font-size: 0.9rem; opacity: 0.8; transition: 0.3s; }

.lang-btn:hover { opacity: 1; color: var(--accent-color); }

.hamburger { display: none; font-size: 1.6rem; color: var(--text-color); cursor: pointer; }



/* --- Mobile Menu (Breakpoint: 768px) --- */

@media (max-width: 768px) {

.hamburger { display: block; }


.nav-links {

position: absolute;

top: var(--header-height);

left: 0;

width: 100%;


/* EXACT match to header color & transparency */

background-color: rgba(15, 15, 15, 0.95);


/* Blur removed for consistency/performance */

backdrop-filter: none;

-webkit-backdrop-filter: none;


flex-direction: column;

align-items: center;

gap: 0;


/* Animation Logic */

max-height: 0;

overflow: hidden;

transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);


border-bottom: none;

}



.nav-links.open { max-height: 350px; }


.nav-links li { width: 100%; text-align: center; }


.nav-links li a {

display: block;

padding: 18px;

border-bottom: 1px solid rgba(255,255,255,0.05);

}


.nav-links li:last-child a { border-bottom: none; }

.nav-links li a::after { display: none; }

}



/* --- HERO SECTION --- */

.hero-section {

position: relative;

width: 100%;

height: 100vh;

overflow: hidden;

display: flex;

align-items: center;

}



/* 1. Image Stack (Background) */

.image-stack {

position: absolute;

top: 0; left: 0;

width: 100%; height: 100%;

z-index: 0;

}



/* Base style for picture tag wrapper */

.hero-layer {

position: absolute;

top: 0; left: 0;

width: 100%; height: 100%;

transition: opacity 0.8s ease-in-out;

}



/* Crucial: Ensure image INSIDE picture tag fills the screen */

.hero-layer img {

width: 100%;

height: 100%;

object-fit: cover;

display: block;

}



.base-layer { z-index: 1; }

.overlay-layer { z-index: 2; opacity: 0; }

.overlay-layer.visible { opacity: 1; }



/* 2. Content (Text & Buttons) */

.hero-content {

position: relative;

z-index: 10;

width: 100%;

max-width: 1200px;

margin: 0 auto;

padding: 0 20px;

padding-top: 250px;

}



/* Typography */

.hero-content h1 {

font-size: 4.5rem;

line-height: 1.05;

font-weight: 600;

color: #fff;

margin-bottom: 15px;

text-shadow: 0 4px 20px rgba(0,0,0,0.4);

}



.hero-content .highlight { color: var(--accent-color); }



.hero-content p {

font-size: 1.1rem;

color: rgba(255, 255, 255, 0.9);

margin-bottom: 35px;

max-width: 450px;

font-weight: 300;

text-shadow: 0 2px 10px rgba(0,0,0,0.5);

}



/* Buttons */

.smart-controls {

margin-top: -15px; /* Adjust this number: -20px moves it higher, -10px lower */

position: relative;

display: flex;

gap: 15px;

z-index: 20; /* Ensures buttons stay clickable even if moved up over other elements */

}



.control-btn {

background: rgba(0, 0, 0, 0.3);

border: 1px solid rgba(255, 255, 255, 0.3);

color: #fff;

padding: 10px 24px;

border-radius: 50px;

display: flex;

align-items: center;

gap: 8px;

cursor: pointer;

font-size: 0.9rem;

font-weight: 500;

backdrop-filter: blur(8px);

transition: all 0.3s ease;

}



.control-btn ion-icon { font-size: 1.1rem; }



.control-btn:hover {

background: rgba(255, 255, 255, 0.15);

border-color: #fff;

}



.control-btn.active {

background: #fff;

color: #000;

border-color: #fff;

box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);

}



.master-btn.active {

background: var(--accent-color);

border-color: var(--accent-color);

color: #000;

box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);

}



/* --- Responsive Adjustments (Mobile - Changed to 768px to match HTML/Menu) --- */

@media (max-width: 768px) {



.hero-section {

height: 100vh;

min-height: -webkit-fill-available;

flex-direction: row;

align-items: flex-start;

}



.image-stack {

position: absolute;

top: 0; left: 0;

width: 100%;

height: 100%;

order: unset;

}



.hero-content {

order: unset;

width: 100%;

text-align: center;


padding-top: 140px;

padding-bottom: 50px;



background: transparent;

background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);

}



.hero-content h1 {

font-size: 3rem;

text-shadow: 0 4px 20px rgba(0,0,0,0.6);

}


.hero-content p {

margin: 0 auto 30px auto;

color: #eee;

text-shadow: 0 2px 10px rgba(0,0,0,0.8);

}


.smart-controls {

justify-content: center;

flex-wrap: wrap;

margin-top: 20px;

}

}



/* --- FEATURES SECTION --- */

.features-section {

width: 100%;

min-height: 100vh;

background-color: #ffffff;

color: #111;

padding: 100px 20px;

display: flex;

align-items: center;

justify-content: center;

}



.features-container {

width: 100%;

max-width: 1200px;

margin: 0 auto;

text-align: center;

}



/* Header Styling */

.section-header h2 {

font-size: 3.5rem;

line-height: 1.1;

font-weight: 600;

margin-bottom: 20px;

}



.highlight-dark { color: var(--accent-color); }



.section-header p {

font-size: 1.2rem;

color: #666;

max-width: 600px;

margin: 0 auto 50px auto;

}



/* --- iPhone-Style Toggle Switch --- */

.toggle-wrapper {

position: relative;

display: inline-flex;

background: #f0f0f0; /* Light grey track */

padding: 5px;

border-radius: 50px;

margin-bottom: 60px;

box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);


/* Ensure slider stays inside bounds */

overflow: hidden;

}



/* The Buttons (Text Labels) */

.toggle-btn {

position: relative;

z-index: 2; /* Sits ON TOP of the slider */

border: none;

background: transparent; /* Transparent so we see the slider behind */


/* FIXED WIDTH IS CRUCIAL for the slide calculation */

width: 140px;

padding: 12px 0; /* Vertical padding only */


border-radius: 40px;

font-size: 1rem;

font-weight: 500;

cursor: pointer;

color: #888; /* Inactive Text Color */

display: flex;

align-items: center;

justify-content: center; /* Center content */

gap: 8px;

transition: color 0.3s ease;

}



.toggle-btn ion-icon { font-size: 1.2rem; }



/* Active Text Color */

.toggle-btn.active {

color: #000; /* Active Text is Dark */

font-weight: 600;

}



/* The Sliding Pill (Background) */

.toggle-slider {

position: absolute;

top: 5px;

left: 5px;

bottom: 5px;


/* Matches button width */

width: 140px;


background-color: #fff;

border-radius: 40px;

box-shadow: 0 2px 10px rgba(0,0,0,0.1);

z-index: 1; /* Sits BEHIND the text */


/* THE ANIMATION */

transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1); /* Smooth 'ease-out' feel */

transform: translateX(0); /* Default position (Casa) */

}



/* Sliding Logic: When container has 'mode-business' class, move slider right */

.toggle-wrapper.mode-business .toggle-slider {

transform: translateX(100%); /* Moves exactly 1 width to the right */

}



/* --- GRID & CARD UPDATES --- */



/* Features Grid */

.features-grid {

display: none;

/* Desktop Default: 4 Columns (4 items in 1 row) */

grid-template-columns: repeat(4, 1fr);

gap: 30px;

animation: fadeIn 0.5s ease-in-out;

}



.features-grid.active {

display: grid;

}



/* Feature Cards */

.feature-card {

background: #f9f9f9;

padding: 40px 30px;

border-radius: 20px;

text-align: left;

transition: transform 0.3s ease, box-shadow 0.3s ease;

border: 1px solid #eee;


/* Flexbox ensures the card fills the height of the grid row */

height: 100%;

display: flex;

flex-direction: column;

}



.feature-card:hover {

transform: translateY(-5px);

box-shadow: 0 10px 30px rgba(0,0,0,0.08);

background: #fff;

border-color: transparent;

}



.icon-box {

width: 60px;

height: 60px;

background: rgba(0, 188, 212, 0.1);

border-radius: 15px;

display: flex;

align-items: center;

justify-content: center;

margin-bottom: 25px;

color: var(--accent-color);

font-size: 1.8rem;

/* Prevent icon from shrinking/growing */

flex-shrink: 0;

}



.feature-card h3 {

font-size: 1.4rem;

font-weight: 600;

margin-bottom: 15px;

color: #222;


/* ALIGNMENT FIX:

Reserve enough height for 2 lines of text (approx 3.2rem).

This ensures the paragraph below always starts at the same level,

even if the title is short. */

min-height: 3.4rem;


/* Optional: Vertically center the text if it's only 1 line */

display: flex;

align-items: center;

}



.feature-card p {

font-size: 1rem;

color: #777;

line-height: 1.6;

/* Pushes content to fill space if needed */

flex-grow: 1;

}



/* --- Feature Section Footer Text --- */

.features-more {

margin-top: 50px;

font-size: 1.1rem; /* Slightly smaller to look elegant */

color: #888;

font-weight: 400;

font-style: normal; /* Removed italics for a cleaner look if using a full sentence */

letter-spacing: 0.5px;

animation: fadeIn 1s ease-in-out;


/* Ensure it looks good on mobile if the text is long */

max-width: 90%;

margin-left: auto;

margin-right: auto;

}



/* Fade In Animation */

@keyframes fadeIn {

from { opacity: 0; transform: translateY(10px); }

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

}



/* --- Responsive Adjustments for Features --- */



/* Tablet / Medium Screens: Force 2 Columns (2+2) */

@media (max-width: 1100px) {

.features-grid {

grid-template-columns: repeat(2, 1fr);

}

}



/* Mobile Screens: Force 1 Column (1+1+1+1) */

@media (max-width: 600px) {

.section-header h2 { font-size: 2.5rem; }


.features-grid {

grid-template-columns: 1fr;

}


/* On mobile, we don't need the fixed height for titles

because they are stacked vertically anyway */

.feature-card h3 {

min-height: auto;

display: block;

}

}



/* --- EMOTIONAL SECTION (Refined) --- */

.emotional-section {

position: relative;

width: 100%;

height: 100vh; /* Fixed height for the window */

overflow: hidden; /* Cut off the excess image */

display: flex;

align-items: center;

justify-content: center;

}



/* 1. The Moving Group */

.parallax-group {

position: absolute;

top: 0;

left: 0;

width: 100%;


/* Make it taller than the section so it can move! */

height: 120%;


z-index: 1;

/* We will move this using JS translate3d */

will-change: transform;

}



.parallax-group img {

width: 100%;

height: 100%;

object-fit: cover;

filter: brightness(0.7);

}



/* --- 2. Hotspots (High-End Styling) --- */

.hotspot {

position: absolute;

z-index: 10;

display: flex;

align-items: center;

/* No mouse events on wrapper, only on children */

pointer-events: none;

}



/* The Pulsing Button */

.hotspot-btn {

pointer-events: auto; /* Re-enable clicks */

width: 50px;

height: 50px;

border-radius: 50%;


/* Frosted Glass Look */

border: 2px solid rgba(255, 255, 255, 0.8);

background: rgba(255, 255, 255, 0.2);

backdrop-filter: blur(4px);

-webkit-backdrop-filter: blur(4px);


color: #fff;

font-size: 1.5rem;

cursor: pointer;

display: flex;

justify-content: center;

align-items: center;


transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */

box-shadow: 0 4px 15px rgba(0,0,0,0.2);

-webkit-tap-highlight-color: transparent;


/* The Pulse Animation */

animation: pulse-white 2.5s infinite;

}



.hotspot-btn ion-icon {

transition: transform 0.3s ease;

}



/* Hover Effect */

.hotspot-btn:hover {

background: #fff;

color: var(--accent-color);

transform: scale(1.1);

box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);

}



/* Active State (Clicked) */

.hotspot-btn.active {

background: var(--accent-color);

border-color: var(--accent-color);

color: #fff;

animation: none; /* Stop pulsing */

transform: rotate(45deg); /* Turn (+) into (x) */

}



/* The Popup Window */

.hotspot-popup {

pointer-events: auto;

position: absolute;

left: 70px; /* To the right of the button */

top: 50%;

transform: translateY(-50%) scale(0.9) translateX(-10px); /* Start slightly off */


width: 260px;

background: #fff;

color: #111;

padding: 20px 25px;

border-radius: 15px;

box-shadow: 0 15px 40px rgba(0,0,0,0.3);


/* Hidden State */

opacity: 0;

visibility: hidden;

transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

}



/* The Little Triangle Arrow */

.hotspot-popup::before {

content: '';

position: absolute;

left: -8px;

top: 50%;

transform: translateY(-50%);

border-width: 8px 8px 8px 0;

border-style: solid;

border-color: transparent #fff transparent transparent;

}



/* Visible State */

.hotspot-popup.visible {

opacity: 1;

visibility: visible;

transform: translateY(-50%) scale(1) translateX(0);

}



.hotspot-popup h4 {

font-size: 1.1rem;

color: var(--accent-color);

margin-bottom: 8px;

font-weight: 600;

}



.hotspot-popup p {

font-size: 0.95rem;

color: #555;

line-height: 1.5;

margin: 0;

}



/* Pulse Animation Keyframes */

@keyframes pulse-white {

0% {

box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);

transform: scale(1);

}

50% {

box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);

transform: scale(1.05);

}

100% {

box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);

transform: scale(1);

}

}





/* 3. Content Layout */

.emotional-container {

position: relative;

z-index: 2; /* Sits on top of the image */

width: 100%;

max-width: 1200px;

padding: 0 20px;

display: flex;

justify-content: flex-end; /* Glass box on Right */

pointer-events: none;

}



.glass-card {

/* ... Keep your existing glass card CSS ... */

width: 100%;

max-width: 500px;

background: rgba(255, 255, 255, 0.1);

backdrop-filter: blur(15px);

-webkit-backdrop-filter: blur(15px);

border: 1px solid rgba(255, 255, 255, 0.2);

box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

border-radius: 30px;

padding: 50px 40px;

color: #fff;

pointer-events: auto;

}



/* Typography Helpers */

.glass-card h2 { font-size: 2.5rem; margin-bottom: 10px; line-height: 1.1; }

.glass-card .highlight { color: var(--accent-color); }

.glass-card .intro-text { font-size: 1.1rem; opacity: 0.9; margin-bottom: 40px; font-style: italic; }

.emotional-list { list-style: none; }

.emotional-list li { margin-bottom: 25px; border-left: 2px solid var(--accent-color); padding-left: 20px; }

.emotional-list strong { display: block; font-size: 1.1rem; margin-bottom: 5px; color: #fff; }

.emotional-list p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); }



/* --- Mobile Adjustments (Max-width: 768px) --- */
@media (max-width: 768px) {

    /* 1. EMOTIONAL SECTION LAYOUT */
    .emotional-section {
        height: auto;
        /* Expanded height to give more space */
        min-height: 120vh; 
        padding: 0;
        display: block;
    }

    /* 2. BACKGROUND & IMAGE (Buttons Container) */
    .parallax-group {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;

        /* Dark overlay added (0.4) so text is readable */
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
            url('../images/house_interior_mobile.png');

        background-size: cover;
        background-position: center;

        /* LAYOUT: Align buttons to the BOTTOM */
        display: flex;
        justify-content: center;
        align-items: flex-end; /* Pushes buttons to bottom */

        padding-top: 0;
        
        /* Space at the bottom for the buttons */
        padding-bottom: 60px; 
        gap: 20px;
    }

    .parallax-group img { display: none; }

    /* 3. RESET BUTTONS & MATCH DESKTOP STYLE */
    .hotspot {
        /* Keep layout resets so buttons stay at the bottom */
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin: 0 !important;
    }

    .hotspot-btn {
        /* Removed background/border overrides. 
           Now inherits your original Desktop styling. */
    }

    /* 4. GLASS CARD POSITIONING */
    .emotional-container {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        margin-top: 0;
        padding: 30px 20px 40px 20px;
    }

    .glass-card {
        width: 100%;
        margin: 0;
        padding: 30px 20px;
        
        /* Removed background/filter overrides. 
           Now inherits your original Desktop styling. */
    }

    /* Keep text shadows for readability against the image */
    .glass-card h2 {
        text-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
    }
    .glass-card p, 
    .emotional-list li,
    .emotional-list strong {
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);    
    }
    
    /* 4b. CYAN TEXT FIXES */
    .glass-card h2 .highlight {
        /* Remove shadow only from cyan text */
        text-shadow: none !important;

        /* Force new line (break) */
        display: block;
        
        /* Remove extra spacing */
        margin-top: 0; 
    }  
  
    /* 5. POPUP LOGIC */
    .hotspot-popup {
        position: fixed;
        
        /* Positioned ABOVE the buttons (~130px from bottom) */
        top: auto; 
        bottom: 130px; 
        
        left: 50%;
        transform: translateX(-50%) scale(0.9); /* Center horizontally */
        
        width: 90%;
        max-width: 340px;
        z-index: 200;
        text-align: center;
    }

    .hotspot-popup::before { display: none; }

    .hotspot-popup.visible {
        transform: translateX(-50%) scale(1);
    }
}

/* --- INTEGRATION SECTION (Clean & Light) --- */
.integration-section {
    width: 100%;
    padding: 120px 20px;
    background-color: #f5f5f7; /* Very light grey/blue tint */
    color: #111;
}

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

/* Header */
.integration-header {
    text-align: center;
    margin-bottom: 70px;
}

.integration-header h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.integration-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Grid Layout */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* The Cards */
.int-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03); /* Very subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.int-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Main Icon */
.int-icon {
    width: 60px;
    height: 60px;
    background: #e0f7fa; /* Very light cyan */
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.int-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.int-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Device Compatibility Row (TV, AC, Robot) */
.device-row {
    margin-top: auto; /* Pushes to bottom of card */
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
}

.d-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #444;
    font-size: 0.8rem;
    font-weight: 500;
}

.d-icon ion-icon {
    font-size: 1.4rem;
    color: #888;
    transition: color 0.3s;
}

.int-card:hover .d-icon ion-icon {
    color: var(--accent-color); /* Icons light up on hover */
}

/* --- Mobile Response for Integration Section --- */
@media (max-width: 900px) {
    .integration-header h2 { font-size: 2.5rem; }
    
    .integration-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        max-width: 500px;
        margin: 0 auto; /* Center the stack */
    }
    
    .int-card {
        align-items: center;
        text-align: center;
    }
    
    .device-row {
        justify-content: center;
    }
}

/* --- FOOTER SECTION --- */
.site-footer {
    width: 100%;
    /* Use the same dark background as the body/header theme */
    background-color: #111; 
    position: relative;
    padding-top: 80px;
    color: #fff;
}

/* 1. Contact Form Area */
.footer-contact-container {
    display: flex;
    justify-content: center;
    padding: 0 20px 80px 20px;
}

.contact-glass-card {
    width: 100%;
    max-width: 600px;
    
    /* The Glass Effect (Matches Header) */
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.contact-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-header .promise {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.contact-header .highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.asterisk {
    color: var(--accent-color);
    vertical-align: super;
    font-size: 0.8rem;
}

/* Minimalist Form Styles */
#telegram-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
    resize: none; /* No resizing for textarea */
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

/* Button */
.submit-btn {
    margin-top: 10px;
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}

.disclaimer {
    margin-top: 25px;
    font-size: 0.8rem;
    color: #666;
}

/* 2. Bottom Footer Info */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 20px 20px 20px;
    background: #0a0a0a; /* Slightly darker for the very bottom */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-logo {
    height: 30px;
    opacity: 0.8;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: #fff; }

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 1.5rem;
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s;
}

.social-icon:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #444;
    padding-top: 20px;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .contact-glass-card { padding: 40px 20px; }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links { align-items: center; }
}

/* --- COOKIE BANNER (Glass Style) --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999; /* Highest priority */
    
    width: 90%;
    max-width: 400px;
    
    /* Glass Effect */
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    
    padding: 25px;
    border-radius: 20px;
    
    /* Animation: Slide up */
    transform: translateY(150%); /* Start hidden below screen */
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

/* "Accept" Button (Filled) */
.cookie-btn.fill {
    background: var(--accent-color);
    color: #000;
    border: none;
}

.cookie-btn.fill:hover {
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.4);
}

/* "Reject" Button (Outline) */
.cookie-btn.outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cookie-btn.outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Mobile: Full width at bottom */
@media (max-width: 600px) {
    .cookie-banner {
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0; /* Only round top corners */
        border-bottom: none;
        border-left: none;
        border-right: none;
    }
}