:root {
    --bg-primary: #0a0e0c;
    --bg-secondary: #101613;
    --bg-card: rgba(20, 28, 24, 0.6);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --primary: #10b981;
    --primary-hover: #059669;
    --primary-glow: rgba(16, 185, 129, 0.15);
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-glow: rgba(245, 158, 11, 0.15);
    --border-color: rgba(255, 255, 255, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

/* Glow Background Effects */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

.glow-1 {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}

.glow-2 {
    top: 50%;
    left: -10%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section {
    padding: 8rem 0;
}

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

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

.w-full {
    width: 100%;
}

.text-green {
    color: var(--primary);
}

/* Badges & Tags */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 3.5rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 14, 12, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    white-space: nowrap;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.logo span {
    font-weight: 800;
    color: var(--text-primary);
}

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

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

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

.nav-btn {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 8rem;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 12, 0.85) 0%, rgba(10, 14, 12, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.highlight-green {
    background: linear-gradient(135deg, var(--primary) 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.cta-group {
    display: flex;
    gap: 1.25rem;
}

.hero-features {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.feature-bar-card {
    background: rgba(16, 22, 19, 0.7);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.feature-bar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-bar-icon {
    font-size: 2rem;
    color: var(--primary);
}

.feature-bar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-bar-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Services Section */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
    animation: rotateSnowflake 10s linear infinite;
}

@keyframes rotateSnowflake {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(10, 14, 12, 0.7);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-list li {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* About Section */
.about-images {
    position: relative;
}

.about-img-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-img-card.main-img {
    height: 480px;
}

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

.about-experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 20px;
    width: 180px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.exp-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Coverage Area Section */
.coverage {
    background-color: var(--bg-secondary);
}

.coverage-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.coverage-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.coverage-cities span {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.coverage-cities i {
    color: var(--primary);
}

.coverage-badge {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--accent);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.coverage-badge i {
    font-size: 1.25rem;
}

.coverage-map-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coverage-map-graphic {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(16, 22, 19, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.radius-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
}

.circle-40 {
    width: 90%;
    height: 90%;
    animation: pulseRing 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.circle-20 {
    width: 50%;
    height: 50%;
}

.radius-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    background: var(--bg-secondary);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.map-center-dot {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 0 20px var(--primary);
    z-index: 10;
}

.pulse-label {
    position: absolute;
    bottom: -1.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
}

.radar-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: radarPulse 2s ease-out infinite;
    z-index: 5;
}

@keyframes radarPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(6);
        opacity: 0;
    }
}

@keyframes pulseRing {
    0% { border-color: rgba(16, 185, 129, 0.2); }
    50% { border-color: rgba(16, 185, 129, 0.4); }
    100% { border-color: rgba(16, 185, 129, 0.2); }
}

/* Contact Section */
.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

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

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.detail-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.contact-cta-whatsapp {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.whatsapp-icon {
    font-size: 2.5rem;
    color: #25d366;
}

.contact-cta-whatsapp h4 {
    margin-bottom: 0.5rem;
}

.contact-cta-whatsapp p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: white;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background: #20ba59;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 24px;
}

.contact-form-panel h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(10, 14, 12, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
}

.form-checkbox {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.form-checkbox input {
    margin-top: 0.25rem;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.form-feedback-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-feedback-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-feedback-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Footer styling */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    max-width: 400px;
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.footer-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Modals & Backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    border-radius: 24px;
    display: none;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-backdrop.active .modal.active {
    display: flex;
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
}

.modal-body h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-primary);
}

.modal-body h4:first-of-type {
    margin-top: 0;
}

.modal-body h5 {
    font-size: 1.05rem;
    margin: 1rem 0 0.5rem;
}

.modal-body h6 {
    font-size: 0.95rem;
    margin: 0.75rem 0 0.25rem;
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 0.925rem;
    margin-bottom: 1rem;
}

.modal-body a {
    color: var(--primary);
    text-decoration: underline;
}

/* Animations */
.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);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title.fade-in { animation-delay: 0.1s; }
.hero-subtitle.fade-in { animation-delay: 0.2s; }
.cta-group.fade-in { animation-delay: 0.3s; }

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

/* Bildergalerie Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 22, 19, 0.6) 0%, rgba(10, 14, 12, 0.8) 100%);
    border: 2px dashed rgba(16, 185, 129, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 22, 19, 0.7) 100%);
    border-color: rgba(16, 185, 129, 0.4);
}

.gallery-placeholder i {
    font-size: 2.25rem;
    color: var(--primary);
    opacity: 0.6;
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder i {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-placeholder span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

/* Team section styles */
.team-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

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

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.team-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(10, 14, 12, 0.6) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
    transition: var(--transition);
}

.team-card:hover .team-avatar-placeholder {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
    color: #fff;
    background: var(--primary);
}

.team-avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, 0.3);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
    transition: var(--transition);
    background: rgba(0,0,0,0.2);
}

.team-card:hover .team-avatar-image {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.team-avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.team-info .team-role {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.team-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0 !important;
}

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

/* Navigation Breakpoint for Squeezed Screens */
@media (max-width: 1150px) {
    .nav-toggle {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        display: none;
    }
    
    .nav.active {
        display: flex;
    }

    .header-container {
        padding: 1rem 1.5rem !important;
    }
}

/* Medium screens: prevent navigation overcrowding */
@media (min-width: 1151px) and (max-width: 1350px) {
    .header-container {
        padding: 0.75rem 1.5rem !important;
    }
    .logo {
        font-size: 1.1rem;
        gap: 0.35rem;
    }
    .logo-icon {
        font-size: 1.3rem;
    }
    .logo-img {
        height: 40px;
    }
    .nav {
        gap: 0.75rem;
    }
    .nav-link {
        font-size: 0.85rem;
    }
    .nav-btn {
        padding: 0.5rem 1rem !important;
    }
}

/* Responsive Design Adjustments */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 1rem !important;
    }

    .header-container {
        padding: 1rem !important;
    }

    .glow-bg {
        display: none !important;
    }

    .section {
        padding: 5rem 0;
    }
    

    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid, .team-grid, .flohmarkt-grid, .testimonials-preview-grid, .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .about-img-card.main-img {
        height: 350px;
    }

    .about-experience-badge {
        position: static;
        margin: 1.5rem auto 0;
        width: 100%;
        max-width: 240px;
    }
    
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }

    .contact-cta-whatsapp {
        padding: 1.25rem !important;
        gap: 1rem !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .coverage-map-graphic {
        width: 290px;
        height: 290px;
    }
    
    .radar-pulse {
        width: 45px;
        height: 45px;
    }
    
    .map-center-dot {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .pulse-label {
        font-size: 0.7rem;
        bottom: -1.4rem;
    }
}

/* Gallery Hover Overlay */
.gallery-item {
    position: relative;
    overflow: hidden;
}
.gallery-slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}
.gallery-slideshow-img.active {
    opacity: 1;
}
.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 12, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}
.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}
.gallery-hover-overlay i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-hover-overlay i {
    transform: scale(1);
}
.gallery-item:hover .gallery-hover-overlay span {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 5rem;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 14, 12, 0.95);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.95); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.lightbox-caption {
    margin-top: 1rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
}

.lightbox-counter {
    margin-top: 0.25rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: #9ca3af;
    font-size: 2.5rem;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1010;
}

.lightbox-close:hover {
    color: #fff;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 1.25rem 1rem;
    margin-top: -3rem;
    color: #9ca3af;
    font-weight: 300;
    font-size: 2.5rem;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 1010;
}

.lightbox-next {
    right: 2.5rem;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 2.5rem;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: #fff;
    background-color: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        font-size: 2rem;
        padding: 0.75rem;
    }
    .lightbox-prev {
        left: 0.5rem;
    }
    .lightbox-next {
        right: 0.5rem;
    }
    .lightbox-close {
        top: 1rem;
        right: 1.5rem;
        font-size: 2rem;
    }
}

/* Testimonials Preview & Standalone Page Custom Styles */
.testimonials-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

/* Ratings Summary Box */
.rating-summary-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.rating-summary-left {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding-right: 1rem;
}

@media (max-width: 768px) {
    .rating-summary-left {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-right: 0 !important;
        padding-bottom: 1.5rem !important;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #20ba59;
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 28px;
    }
}

/* Flohmarkt Card Slideshow Styling */
.flohmarkt-slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.flohmarkt-slideshow-img.active {
    opacity: 1;
    z-index: 2;
}

.service-badge {
    z-index: 5 !important;
}

/* Calculator Styles */
.calculator-grid {
    transition: var(--transition);
}

.calc-sub-options {
    transition: all 0.3s ease;
    margin-top: 1rem;
}

/* Custom styling for inputs inside calculator */
.calc-options input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    margin: 1rem 0;
}

.calc-options input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    transition: transform 0.1s ease;
}

.calc-options input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-options input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    transition: transform 0.1s ease;
}

.calc-options input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.calc-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.calc-breakdown-item span.item-title {
    font-weight: 600;
    color: #fff;
}

/* Accordion FAQ Styles */
.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.2) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: rgba(16, 185, 129, 0.3) !important;
    background: rgba(20, 28, 24, 0.6) !important;
}

.faq-trigger span {
    transition: color 0.3s ease;
}

.faq-item.active .faq-trigger span:first-child {
    color: var(--primary);
}

/* Responsive grid adjustments */
@media (max-width: 991px) {
    .calculator-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .calc-result {
        position: static !important;
    }
}

/* --- Light/Dark Theme Variable Overrides --- */
body {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* We should also make sure cards transition smoothly! */
.service-card, .testimonial-card, .faq-item, .admin-card, .flohmarkt-card, .header, .footer, .btn, .nav-link, .logo, .logo span, .calc-options, .calc-summary, .contact-form-panel {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

body.light-theme {
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.85);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: rgba(15, 23, 42, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(15, 23, 42, 0.08);
}

/* Light Theme Specific Elements Styles */
body.light-theme .header {
    background: rgba(248, 250, 252, 0.85);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.light-theme .logo {
    color: #0f172a;
}

body.light-theme .logo span {
    color: #475569;
}

body.light-theme .section-title {
    background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-theme .hero-title {
    color: #0f172a;
}

body.light-theme .hero-overlay {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.85) 0%, rgba(248, 250, 252, 0.95) 100%);
}

body.light-theme .about-img-card,
body.light-theme .feature-bar-card,
body.light-theme .service-card,
body.light-theme .testimonial-card,
body.light-theme .faq-item,
body.light-theme .calc-options,
body.light-theme .calc-summary,
body.light-theme .contact-form-panel {
    background: var(--bg-card);
    border-color: var(--border-color);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

body.light-theme .faq-item {
    background: rgba(255, 255, 255, 0.7);
}

body.light-theme .faq-trigger span:first-child {
    color: #0f172a !important;
}

body.light-theme .faq-content p {
    color: #475569 !important;
}

body.light-theme select {
    background: #fff !important;
    color: #0f172a !important;
    border-color: rgba(15, 23, 42, 0.1) !important;
}

body.light-theme input[type="text"],
body.light-theme input[type="email"],
body.light-theme input[type="tel"],
body.light-theme textarea {
    background: #fff !important;
    color: #0f172a !important;
    border-color: rgba(15, 23, 42, 0.1) !important;
}

body.light-theme input[type="text"]::placeholder,
body.light-theme input[type="email"]::placeholder,
body.light-theme input[type="tel"]::placeholder,
body.light-theme textarea::placeholder {
    color: #94a3b8 !important;
}

body.light-theme .calc-checkbox-label {
    color: #0f172a !important;
}

body.light-theme .calc-breakdown-item {
    border-bottom-color: rgba(15, 23, 42, 0.05) !important;
}

body.light-theme .calc-breakdown-item span.item-title {
    color: #0f172a !important;
}

body.light-theme .calc-breakdown-item span:last-child {
    color: #0f172a !important;
}

body.light-theme #calc-total-box p {
    color: #64748b !important;
}

body.light-theme .coverage-cities span {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.08);
    color: #475569;
}

body.light-theme .coverage-map-graphic {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.08);
}

body.light-theme .pulse-label {
    color: #0f172a;
}

body.light-theme .nav-toggle {
    color: #0f172a;
}

body.light-theme .nav-link {
    color: #475569;
}

body.light-theme .nav-link:hover,
body.light-theme .nav-link.active {
    color: #0f172a;
}

body.light-theme .carousel-arrow {
    background: #fff !important;
    border-color: rgba(15, 23, 42, 0.1) !important;
}

.carousel-arrow:hover {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

@media (max-width: 1150px) {
    body.light-theme .nav {
        background: #f1f5f9;
        border-bottom-color: rgba(15, 23, 42, 0.08);
    }
}

/* --- Announcement Bar Styles --- */
.announcement-bar {
    background: linear-gradient(90deg, #059669 0%, #10b981 50%, #059669 100%);
    color: #fff;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    height: 36px;
    box-sizing: border-box;
    z-index: 101;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

body.light-theme .announcement-bar {
    background: linear-gradient(90deg, #059669 0%, #10b981 50%, #059669 100%);
    border-bottom-color: rgba(15, 23, 42, 0.05);
}

/* --- Back to Top Button Styles --- */
.back-to-top-btn {
    position: fixed;
    bottom: 105px;
    right: 30px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 998;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
    outline: none;
}

.back-to-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

body.light-theme .back-to-top-btn {
    background-color: #fff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
}

body.light-theme .back-to-top-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 95px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* --- Tactile Active-Click Micro-Interactions --- */
.btn:active, 
.nav-btn:active, 
#theme-toggle:active, 
.back-to-top-btn:active, 
.carousel-arrow:active,
.faq-trigger:active,
.whatsapp-float-trigger:active,
.whatsapp-menu-item:active {
    transform: scale(0.95) !important;
}

/* --- Dual WhatsApp Floating Menu --- */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.whatsapp-float-trigger {
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    position: relative;
}

.whatsapp-float-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-trigger .close-icon {
    display: none;
    font-size: 1.5rem;
}

.whatsapp-float-container.active .whatsapp-float-trigger {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float-container.active .whatsapp-float-trigger .fa-whatsapp {
    display: none;
}

.whatsapp-float-container.active .whatsapp-float-trigger .close-icon {
    display: block;
}

.whatsapp-float-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float-container.active .whatsapp-float-menu {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

/* Enable hover on desktop */
@media (min-width: 992px) {
    .whatsapp-float-container:hover .whatsapp-float-menu {
        pointer-events: auto;
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-menu-item {
    background-color: #25d366;
    color: white !important;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    text-decoration: none;
}

.whatsapp-menu-item:hover {
    background-color: #128c7e;
    transform: translateX(-5px) scale(1.03);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-menu-item i {
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float-trigger {
        width: 50px;
        height: 50px;
        font-size: 1.65rem;
    }
}
