@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN SYSTEM VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-dark: #0a0f0d;
    --bg-glass: rgba(15, 25, 20, 0.65);
    --bg-glass-card: rgba(20, 32, 26, 0.55);
    --bg-glass-active: rgba(80, 200, 120, 0.15);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-focus: rgba(80, 200, 120, 0.45);
    
    --primary: #50C878;      /* Emerald Green */
    --primary-glow: rgba(80, 200, 120, 0.4);
    --accent: #E5C158;       /* Warm Soft Gold */
    --accent-glow: rgba(229, 193, 88, 0.35);
    --text-main: #f3f5f4;
    --text-muted: #a4b3ac;
    
    /* Font Families */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Spacing */
    --header-height: 80px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    
    /* Shadow & Glass Effects */
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 25px var(--primary-glow);
    --glass-blur: blur(16px);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background: linear-gradient(135deg, rgba(12, 28, 20, 0.54) 0%, rgba(8, 18, 12, 0.62) 100%), 
                url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?q=80&w=2000&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-glass-card);
    border: 2px solid var(--bg-dark);
    border-radius: 10px;
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==========================================================================
   DYNAMIC GLOWING BACKGROUND
   ========================================================================== */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.32;
    mix-blend-mode: screen;
    animation: floatGlow 25s infinite alternate ease-in-out;
}

.sphere-1 {
    top: -10%;
    right: 5%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--primary) 0%, rgba(0,0,0,0) 70%);
}

.sphere-2 {
    bottom: 10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent) 0%, rgba(0,0,0,0) 70%);
    animation-duration: 35s;
    animation-delay: -5s;
}

.sphere-3 {
    top: 40%;
    right: -10%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, #0e8a71 0%, rgba(0,0,0,0) 70%);
    animation-duration: 30s;
    animation-delay: -10s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(4vw, -5vh) scale(1.1);
    }
    100% {
        transform: translate(-3vw, 4vh) scale(0.9);
    }
}

/* ==========================================================================
   GLASSMORPHISM UTILITIES
   ========================================================================== */
.glass-panel {
    background: var(--bg-glass-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    border-radius: var(--border-radius-lg);
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.glass-panel-interactive {
    cursor: pointer;
}

.glass-panel-interactive:hover {
    transform: translateY(-5px);
    border-color: var(--border-glass-focus);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45), 0 0 15px rgba(80, 200, 120, 0.15);
}

/* ==========================================================================
   HEADER / NAVIGATION BARS
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(10, 15, 13, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-glass);
    height: 70px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(-3cm);
    transition: transform 0.4s ease;
}

@media (max-width: 1200px) {
    .logo-link {
        transform: translateX(0);
    }
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.logo-image {
    height: 65px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 6px var(--primary-glow));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
}

.logo-text span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    margin-top: 2px;
}

/* Desktop Navbar */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.3rem;
    border-radius: 50px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: #050505;
    background: var(--primary);
    font-weight: 600;
    box-shadow: 0 0 15px rgba(80, 200, 120, 0.4);
}

.nav-cta {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.3rem;
    background: linear-gradient(135deg, var(--accent) 0%, #c1a043 100%);
    color: #0a0f0d;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 193, 88, 0.5);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #3da862 100%);
    color: #050505;
    box-shadow: 0 4px 20px rgba(80, 200, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(80, 200, 120, 0.5), 0 0 15px rgba(80, 200, 120, 0.2);
}

.btn-secondary {
    background: var(--bg-glass-card);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle i {
    text-shadow: 0 0 8px var(--primary-glow);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-num span {
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual Showcase */
.hero-visual {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 85%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-glass);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 15, 13, 0.85) 0%, rgba(10, 15, 13, 0) 50%);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 20px;
}

.badge-1 {
    top: 15%;
    left: -5%;
    animation: floatBadge 6s infinite alternate ease-in-out;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation: floatBadge 8s infinite alternate-reverse ease-in-out;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-glass-active);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    box-shadow: 0 0 10px var(--primary-glow);
}

.badge-content h5 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.1rem;
}

.badge-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-12px);
    }
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
    padding: 7rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #fff;
    margin-bottom: 1.2rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   ABOUT SECTION (DESPRE NOI)
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feat-card {
    padding: 1.8rem;
    border-radius: var(--border-radius-md);
}

.about-feat-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    text-shadow: 0 0 10px var(--accent-glow);
}

.about-feat-card h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.about-feat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-visual {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 520px;
}

.about-img-box {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-1 {
    grid-column: 1 / 9;
    grid-row: 1 / 10;
    z-index: 2;
}

.about-img-2 {
    grid-column: 5 / 13;
    grid-row: 5 / 13;
    z-index: 3;
    border: 3px solid rgba(10, 15, 13, 0.9);
}

/* ==========================================================================
   SERVICES INTERACTIVE SECTION (TABURI)
   ========================================================================== */
.services-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* The Tab Switcher Menu */
.services-tabs-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.service-tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.service-tab-btn.active {
    color: #050505;
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Tab Panel Area */
.service-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.service-tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.service-tab-details h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-tab-details h3 i {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.service-tab-details > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.service-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.bullet-item i {
    color: var(--accent);
    margin-top: 0.25rem;
}

.bullet-item h5 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

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

/* Service Preview Image Card */
.service-preview-card {
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-glass);
}

.service-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.service-preview-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 15, 13, 0.9) 0%, rgba(10, 15, 13, 0.2) 60%);
}

.service-preview-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
}

.service-preview-badge h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.service-preview-badge p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PORTFOLIO SECTION (PORTOFOLIU LUCRĂRI)
   ========================================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-glass);
}

.portfolio-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 15, 13, 0) 30%, rgba(10, 15, 13, 0.95) 90%);
    z-index: 2;
    transition: opacity 0.4s;
}

.portfolio-info {
    position: relative;
    z-index: 3;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.portfolio-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.portfolio-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, height 0.4s ease;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-card:hover .portfolio-desc {
    opacity: 1;
    height: auto;
    margin-top: 0.5rem;
}

/* ==========================================================================
   GALLERY SECTION (GALERIE FOTO)
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-glass);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 13, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 1rem;
    text-align: center;
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.gallery-overlay h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Gallery Grid Spans for Pinterest layout */
.gallery-item.span-2h {
    grid-row: span 2;
}

.gallery-item.span-2w {
    grid-column: span 2;
}

/* ==========================================================================
   B2B PARTNERSHIP SECTION
   ========================================================================== */
.b2b-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.b2b-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.b2b-info-item {
    display: flex;
    gap: 1.2rem;
}

.b2b-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(229, 193, 88, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    border: 1px solid rgba(229, 193, 88, 0.2);
    flex-shrink: 0;
}

.b2b-info-text h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.b2b-info-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Form Styling (shared for B2B and Contact) */
.form-box {
    padding: 3rem;
    border-radius: var(--border-radius-lg);
}

.form-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.9rem 1.2rem;
    border-radius: var(--border-radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--border-glass-focus);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(80, 200, 120, 0.1);
}

textarea.form-control {
    resize: none;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail-card {
    display: flex;
    gap: 1.2rem;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-glass-active);
    border: 1px solid rgba(80, 200, 120, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    box-shadow: 0 0 10px var(--primary-glow);
    flex-shrink: 0;
}

.contact-detail-text h5 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.contact-detail-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-map-mockup {
    height: 250px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-glass);
}

.contact-map-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 13, 0.5) 0%, rgba(10, 15, 13, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker-glow {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px var(--primary);
    animation: markerPulse 2s infinite ease-in-out;
}

@keyframes markerPulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(80, 200, 120, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(80, 200, 120, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(80, 200, 120, 0);
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: linear-gradient(180deg, rgba(6, 9, 8, 0.52) 0%, rgba(6, 9, 8, 0.62) 100%), 
                url('Assets/rose_garden.png') no-repeat center center;
    background-size: cover;
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 1.2rem 0 1.5rem 0;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-link:hover {
    color: #050505;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-3px);
}

.footer-col h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

/* ==========================================================================
   PORTAL LIGHTBOX & MODALS
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 13, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    border: 1px solid var(--border-glass);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -3.5rem;
    right: 0;
    background: var(--bg-glass-card);
    border: 1px solid var(--border-glass);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: var(--primary);
    color: #050505;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* ==========================================================================
   AUTHORITIES MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 13, 0.88);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    max-width: 950px;
    width: 100%;
    background: var(--bg-glass-card);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close-btn:hover {
    background: var(--primary);
    color: #050505;
    box-shadow: 0 0 12px var(--primary-glow);
}

.modal-header-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.modal-header-title i {
    color: var(--primary);
}

.authorities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar inside modal grid */
.authorities-grid::-webkit-scrollbar {
    width: 6px;
}
.authorities-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}
.authorities-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.authorities-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.authority-item-card {
    padding: 1.2rem;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
}

.authority-item-card:hover {
    border-color: var(--border-glass-focus);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.authority-item-info h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.authority-item-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.authority-btn-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.authority-btn-link:hover {
    color: var(--accent);
}

@media (max-width: 992px) {
    .authorities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .authorities-grid {
        grid-template-columns: 1fr;
    }
    .modal-container {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Up to Desktop (Widescreens) */
@media (max-width: 1200px) {
    .hero-container {
        gap: 2rem;
    }
    .about-grid, .b2b-layout, .contact-layout {
        gap: 3rem;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Landscape / Medium Devices */
@media (max-width: 1024px) {
    .nav-menu {
        display: none; /* Hide desktop nav menu */
    }
    
    .nav-toggle {
        display: block; /* Show hamburger button */
    }
    
    /* Mobile Menu Drawer style */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(10, 15, 13, 0.95);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border-bottom: 1px solid var(--border-glass);
        padding: 2rem;
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        height: 380px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        height: 420px;
        order: -1; /* visual on top for mobile */
    }
    
    .service-tab-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-preview-card {
        height: 350px;
    }
    
    .b2b-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Small Tablets / Mobiles */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .gallery-item.span-2w {
        grid-column: span 1;
    }
    
    .form-box {
        padding: 2rem 1.5rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Very Small Mobiles */
@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ==========================================================================
   GOOGLE REVIEWS & TESTIMONIALS SECTION
   ========================================================================== */
.google-reviews-section {
    padding-top: 2rem;
}

.reviews-header-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.reviews-rating-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.rating-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.5rem;
    display: flex;
    gap: 4px;
}

.rating-count {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    padding: 2rem;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #d81b60;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-user h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    color: #FFD700;
    font-size: 1rem;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* ==========================================================================
   INTERACTIVE PRICE ESTIMATOR WIDGET
   ========================================================================== */
.estimator-container {
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.sqm-badge {
    background: var(--primary);
    color: #050505;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.95rem;
}

.form-range-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    margin-top: 12px;
    accent-color: var(--primary);
    cursor: pointer;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.estimator-result-box {
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    background: rgba(80, 200, 120, 0.05);
    border: 1px solid rgba(80, 200, 120, 0.2);
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.result-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
    margin-bottom: 0.8rem;
}

.result-price span {
    font-size: 1.2rem;
    color: #fff;
}

.result-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   4-STEP WORKFLOW SECTION
   ========================================================================== */
.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.workflow-step-card {
    padding: 2.2rem 1.8rem;
    border-radius: var(--border-radius-md);
    position: relative;
}

.step-num {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
}

.step-icon {
    width: 54px;
    height: 54px;
    background: rgba(80, 200, 120, 0.1);
    border: 1px solid rgba(80, 200, 120, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.workflow-step-card h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.6rem;
}

.workflow-step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   BIOFIL BENEFITS INFOGRAPHIC
   ========================================================================== */
.biofil-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.biofil-card {
    padding: 2.5rem 1.8rem;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.biofil-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 15px var(--primary-glow);
}

.biofil-stat {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.biofil-card h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.biofil-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
}

.faq-question i.fa-circle-question {
    color: var(--primary);
    margin-right: 10px;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 1rem 0;
}

.faq-item.active {
    border-color: rgba(80, 200, 120, 0.3);
    background: rgba(80, 200, 120, 0.04);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0.5rem 1.5rem 1.2rem 1.5rem;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ========================================================================== */
@media (max-width: 1024px) {
    .reviews-grid, .workflow-steps-grid, .biofil-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .estimator-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reviews-grid, .workflow-steps-grid, .biofil-grid {
        grid-template-columns: 1fr;
    }
    .reviews-header-badge {
        flex-direction: column;
        text-align: center;
    }
    .estimator-container, .faq-container {
        padding: 1.5rem;
    }
}


/* ==========================================================================
   SPECIALIZED CLEANING GRID & DEDICATED FORM STYLES
   ========================================================================== */
.cleaning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cleaning-card {
    padding: 2.2rem;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cleaning-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(80, 200, 120, 0.1);
    border: 1px solid rgba(80, 200, 120, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.cleaning-card h4 {
    font-size: 1.2rem;
    color: #fff;
}

.cleaning-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cleaning-form-wrapper {
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    max-width: 1100px;
    margin: 0 auto;
}

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

.cleaning-form-header h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;

}

.cleaning-form-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cleaning-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 0.7rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s;
}

.checkbox-label:hover {
    border-color: var(--primary);
    color: #fff;
    background: rgba(80, 200, 120, 0.05);
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .cleaning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cleaning-checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cleaning-grid {
        grid-template-columns: 1fr;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .cleaning-checkbox-grid {
        grid-template-columns: 1fr;
    }
    .cleaning-form-wrapper {
        padding: 1.5rem;
    }
}


/* ==========================================================================
   SMART PLANTER IOT & DIGITAL PRINTING SECTION STYLES
   ========================================================================== */
.smart-planter-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.smart-planter-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    padding: 1.5rem;
    background: rgba(10, 15, 13, 0.6);
    border: 1px solid var(--border-glass);
}

.cross-section-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    display: block;
    box-shadow: 0 0 30px rgba(80, 200, 120, 0.15);
}

.visual-badge {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    padding: 1.2rem;
    border-radius: var(--border-radius-md);
}

.visual-badge h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

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

.tech-badge-header {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge-tag {
    background: rgba(80, 200, 120, 0.1);
    border: 1px solid rgba(80, 200, 120, 0.3);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.smart-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.2rem;
}

.smart-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.sensors-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.sensor-card {
    padding: 1.2rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sensor-card i {
    font-size: 1.8rem;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.sensor-card h5 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.sensor-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Tech Spec Table */
.tech-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.tech-spec-table th, .tech-spec-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-spec-table th {
    background: rgba(80, 200, 120, 0.1);
    color: var(--primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tech-spec-table td {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tech-spec-table td strong {
    color: #fff;
}

/* App Integration Section */
.app-integration-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    border-radius: var(--border-radius-lg);
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.app-feat-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.app-feat-item i {
    font-size: 1.6rem;
    margin-top: 0.2rem;
}

.app-feat-item h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.app-feat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.app-mockup-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(80, 200, 120, 0.2);
}

.app-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

/* Digital Printing Section */
.printing-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.printing-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.printing-card {
    padding: 1.8rem;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.printing-icon {
    font-size: 2rem;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.printing-card h4 {
    font-size: 1.15rem;
    color: #fff;
}

.printing-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.printing-visual-col {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    padding: 1rem;
}

.printing-showcase-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    display: block;
}

.printing-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    padding: 1.2rem;
    border-radius: var(--border-radius-md);
}

.printing-badge h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

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

@media (max-width: 1024px) {
    .smart-planter-grid, .app-integration-grid, .printing-grid {
        grid-template-columns: 1fr;
    }
    .printing-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sensors-mini-grid {
        grid-template-columns: 1fr;
    }
    .tech-spec-table {
        font-size: 0.85rem;
    }
    .tech-spec-table th, .tech-spec-table td {
        padding: 0.8rem;
    }
}

/* ==========================================================================
   LEGAL MODALS (TERMENI, CONFIDENȚIALITATE, COOKIES)
   ========================================================================== */
.legal-modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-modal-body h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    border-left: 3px solid var(--primary);
    padding-left: 0.6rem;
}

.legal-modal-body p {
    margin-bottom: 0.9rem;
}

.legal-modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-modal-body li {
    margin-bottom: 0.4rem;
}

.legal-modal-body::-webkit-scrollbar {
    width: 6px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.3);
    border-radius: 4px;
}

/* ==========================================================================
   GDPR COOKIE BANNER (GLASSMORPHISM)
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: calc(100% - 48px);
    max-width: 880px;
    background: rgba(18, 26, 21, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 1.2rem 1.6rem;
    z-index: 1999;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner {
        bottom: 12px;
        width: calc(100% - 24px);
        padding: 1rem;
    }
}

