/* 
    FlorianBD Premium Contact Styles 
    Aesthetic: Editorial Green, Glassmorphism, and Fluid Motion
*/

:root {
    --primary-green: #00A651;
    --primary-light: #00c862;
    --primary-dark: #008f45;
    --secondary-dark: #0f172a;
    --bg-light: #ffffff;
    --bg-soft: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-white: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-green: 0 10px 25px -5px rgba(0, 166, 81, 0.2);
    --radius-full: 500px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 80px;
}

html {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: var(--bg-soft);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   TOP NAVIGATION - PREMIUM RE-DESIGN
 ======================================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: linear-gradient(3deg, #00A651, #008f45);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid #00994a;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    margin: 0;
}

.top-nav.scrolled {
    height: 70px;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 166, 81, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1px;
    cursor: pointer;
    text-decoration: none;
    z-index: 10;
    flex-shrink: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 166, 81, 0.2));
}

.nav-brand:hover .brand-logo {
    transform: scale(1.1) rotate(-5deg);
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.brand-florian {
    color: white;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .brand-florian {
    color: var(--secondary-dark);
}

.brand-bd {
    color: white;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .brand-bd {
    color: var(--primary-green);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.03);
    padding: 6px;
    border-radius: var(--radius-full);
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.top-nav.scrolled .nav-link {
    color: var(--text-muted);
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.top-nav.scrolled .nav-link:hover {
    color: var(--secondary-dark);
}

.nav-link:hover i {
    transform: translateY(-2px) scale(1.1);
}

.nav-link.active {
    color: white !important;
    background: var(--primary-green);
    box-shadow: var(--shadow-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    width: 46px;
    height: 46px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.top-nav.scrolled .nav-btn {
    background: rgba(0, 0, 0, 0.03);
    color: var(--secondary-dark);
}

.nav-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: var(--shadow-green);
}

.top-nav.scrolled .nav-btn:hover {
    background: var(--primary-green);
    color: white;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .mobile-menu-btn {
    color: var(--secondary-dark);
}

/* Hamburger Animation */
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 0.5px;
    background: var(--secondary-dark);
    margin: 3px auto;
    transition: var(--transition-smooth);
    border-radius: 10px;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ========================================
   SIDEBAR - PREMIUM RE-DESIGN
 ======================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: 20px 0 80px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    visibility: hidden;
}

.sidebar-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: white;
    z-index: 5;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.sidebar-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.sidebar-brand-text {
    font-weight: 800;
}

.sidebar-brand-text .brand-florian {
    color: var(--secondary-dark);
}

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

.sidebar-close {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--bg-soft);
    border-radius: 14px;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sidebar-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.sidebar-content {
    flex: 1;
    padding: 0 40px 40px;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title::after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, rgba(0, 166, 81, 0.2), transparent);
    flex: 1;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 14px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.sidebar-menu a:hover {
    background: white;
    color: var(--primary-green);
    border-color: rgba(0, 166, 81, 0.1);
    transform: translateX(8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.sidebar-footer {
    padding: 40px;
    background: var(--bg-soft);
    border-top: 1px solid #f1f5f9;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: white;
    border-radius: 14px;
    text-decoration: none;
    color: var(--secondary-dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.quick-contact i {
    font-size: 1.1rem;
    color: var(--primary-green);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-wrapper {
    padding-top: var(--nav-height);
    min-height: 100vh;
}

@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .brand-logo {
        width: 60px;
        height: 60px;
    }

    .sidebar {
        width: 100%;
        max-width: 100%;
    }
}

/* --- HEADER (FAQ Styled but Enhanced) --- */
.contact-header {
    background: #008f45;
    padding: 160px 20px 220px;
    text-align: left;
    color: white;
    position: relative;
    clip-path: ellipse(160% 100% at 50% 0%);
    overflow: hidden;
}

.header-content-wrapper {
    position: relative;
    z-index: 10;
}

.header-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(80px);
    z-index: 5;
}

.header-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.8;
    animation: blobFloat 20s infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #00A651;
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #00ff87;
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #00c862;
    top: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.contact-header .container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.info-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 10px 28px;
    border-radius: 500px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 35px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.contact-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -2px;
    line-height: 1.1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 5px;
    width: 100%;
}

.type-cursor {
    color: var(--primary-green);
    font-weight: 300;
    animation: blink 0.8s infinite;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0;
    font-weight: 300;
}

.header-leaf {
    position: absolute;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 1;
}

.leaf-1 {
    top: -50px;
    left: -50px;
    transform: rotate(-15deg);
}

.leaf-2 {
    bottom: -80px;
    right: -50px;
    transform: rotate(165deg);
}

/* --- QUICK ACCESS CARDS --- */
.contact-quick-access {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

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

.quick-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.quick-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px -15px rgba(0, 166, 81, 0.15);
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-soft);
    color: var(--primary-green);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.quick-card:hover .quick-icon {
    background: var(--primary-green);
    color: white;
    transform: rotate(10deg);
}

.quick-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.quick-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.quick-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.quick-card a:hover {
    letter-spacing: 0.5px;
}

/* --- MAIN FORM CONTAINER --- */
.contact-container {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

.glass-card {
    background: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title i {
    width: 50px;
    height: 50px;
    background: rgba(0, 166, 81, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.4rem;
}

/* Form Styling */
.contact-form {
    display: grid;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 5px;
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 166, 81, 0.1);
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary-dark);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    background: white;
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.1), 0 10px 30px rgba(0, 166, 81, 0.05);
    transform: translateY(-2px);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
}

.select-wrapper i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-green);
    font-size: 0.8rem;
}

.submit-btn {
    margin-top: 20px;
    padding: 22px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 166, 81, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 166, 81, 0.35);
    background: var(--primary-light);
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-btn i {
    transition: transform 0.4s ease;
}

.submit-btn:hover i {
    transform: translateX(5px) rotate(-10deg);
}

/* Sidebar Styling */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.live-indicator .dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
}

.live-indicator .dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #22c55e;
    border-radius: 50%;
    animation: ping 1.5s infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.status-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: #22c55e;
    letter-spacing: 1.5px;
}

.hours-list {
    list-style: none;
    margin-top: 20px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.closed {
    color: #ef4444;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--bg-soft);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-5px) rotate(8deg);
}

/* --- BOTANICAL EXCELLENCE (Ultra-Unique Portal Style) --- */
.botanical-excellence {
    padding: 180px 0;
    background: #080e1a;
    /* Even deeper navy */
    position: relative;
    overflow: hidden;
}

/* Background Marquee - Optimized with Stroke Text */
.excellence-marquee {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-5deg);
    width: 200%;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
    will-change: transform;
}

.marquee-inner span {
    font-size: 15rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    padding-right: 80px;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.excellence-header {
    text-align: center;
    margin-bottom: 150px;
    position: relative;
    z-index: 2;
}

.info-tag.accent {
    background: linear-gradient(90deg, var(--primary-green), #00ff87);
    color: var(--primary-black);
    font-weight: 800;
}

.excellence-header h2 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: white;
    font-weight: 900;
    letter-spacing: -3px;
    margin-top: 20px;
    white-space: nowrap;
}

.excellence-feature {
    display: flex;
    align-items: center;
    gap: 120px;
    margin-bottom: 250px;
    position: relative;
    z-index: 2;
}

.excellence-feature:last-child {
    margin-bottom: 0;
}

/* Portal Visual Effect - Optimized */
.feature-visual.portal-effect {
    flex: 1.2;
    position: relative;
    will-change: transform;
}

.blob-mask {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 45% 55% 70% 30% / 30% 60% 40% 70%;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    background: #111;
    transform: translateZ(0);
    /* Hardware acceleration */
    transition: border-radius 1s ease-in-out;
}

.excellence-feature:hover .blob-mask {
    border-radius: 35% 65% 55% 45% / 55% 35% 65% 45%;
}

.blob-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(1.2);
    transition: var(--transition);
}

.feature-visual:hover .blob-mask img {
    transform: scale(1.1);
    filter: brightness(1);
}

.visual-decorator {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.2), transparent);
    filter: blur(40px);
    z-index: -1;
}

.decoration-1 {
    top: -50px;
    left: -50px;
}

.decoration-2 {
    bottom: -50px;
    right: -50px;
}

.decoration-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
}

/* Glass Portal Card - Optimized */
.glass-portal {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    /* Reduced blur for performance */
    -webkit-backdrop-filter: blur(15px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    will-change: transform, opacity;
}

.glass-portal:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 166, 81, 0.4);
    transform: translateY(-10px);
}

.step-num {
    font-size: 10rem;
    font-weight: 950;
    line-height: 1;
    color: rgba(0, 166, 81, 0.1);
    position: absolute;
    top: -50px;
    left: -30px;
    z-index: -1;
}

.feature-info h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.feature-info p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.feature-tags.magnetic span {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 500px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.feature-tags span i {
    color: #00ff87;
    margin-right: 10px;
}

@media (max-width: 1200px) {
    .excellence-feature {
        gap: 60px;
    }

    .excellence-header h2 {
        font-size: 3rem;
    }

    .feature-info h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .excellence-feature {
        flex-direction: column !important;
        text-align: center;
        gap: 80px;
    }

    .blob-mask {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .step-num {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --- MAP SECTION: WHITE THEME --- */
.global-reach.white-theme {
    padding: 120px 0;
    background: white;
    border-top: 1px solid #f1f5f9;
}

.reach-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.info-tag.light {
    background: rgba(0, 166, 81, 0.05);
    color: var(--primary-green);
    border: 1px solid rgba(0, 166, 81, 0.1);
}

.reach-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin: 20px 0;
    letter-spacing: -2px;
    white-space: nowrap;
}

.reach-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.reach-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feat-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-soft);
    color: var(--primary-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feat-item h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 0;
}

.feat-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Modern Map Visual */
.bd-map-modern {
    position: relative;
}

.map-artwork {
    width: 100%;
    position: relative;
    padding: 40px;
    background: var(--bg-soft);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 10px 40px rgba(0, 0, 0, 0.02);
}

.map-silhouette {
    width: 100%;
    height: auto;
    opacity: 0.2;
    filter: grayscale(1);
}

.blooms-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.growth-bloom {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 5px 15px rgba(0, 166, 81, 0.3);
}

.growth-bloom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    border-radius: 50%;
    animation: bloomRipple 2s infinite;
}

@keyframes bloomRipple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Coverage Badge */
.coverage-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-ring {
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-ring svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.badge-ring span {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

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

.badge-label strong {
    font-size: 1rem;
    color: var(--primary-dark);
}

.badge-label span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .reach-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .feat-item {
        justify-content: center;
    }

    .coverage-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -40px;
    }
}

/* --- FINAL CTA --- */
.contact-cta {
    padding: 120px 20px;
    background: var(--bg-soft);
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.contact-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.btn-contact {
    display: inline-block;
    padding: 22px 60px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 500px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 20px 40px rgba(0, 166, 81, 0.2);
    transition: var(--transition);
    margin-top: 30px;
}

.btn-contact:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 40px 80px rgba(0, 166, 81, 0.3);
}

/* --- FOOTER --- */
.super-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    margin-top: -1px;
    color: white;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer-wave-svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-main {
    position: relative;
    padding-top: 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

/* Brand Column */
.footer-brand-col {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .brand-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-logo .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer-logo .logo-text .brand-florian {
    color: white;
}

.footer-logo .logo-text .brand-bd {
    color: var(--primary-green);
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 166, 81, 0.35);
}

.social-link:hover::before {
    left: 100%;
}

/* Footer Columns */
.footer-col {
    padding-top: 10px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: white;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.footer-links {
    padding-left: 15px;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

/* Contact Items */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 166, 81, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.contact-text a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 166, 81, 0.15);
}

.input-wrapper input {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
}

.input-wrapper input::placeholder {
    color: #64748b;
}

.submit-btn {
    padding: 14px 20px;
    background: var(--primary-green);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #008f45;
}

/* Payment Methods */
.payment-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
}

.payment-header {
    text-align: center;
    margin-bottom: 20px;
}

.payment-header span {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.payment-card:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.payment-card i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    grid-column: 1 / -1;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    text-align: center;
}

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

.copyright p {
    color: #64748b;
    font-size: 0.9rem;
}

.copyright strong {
    color: white;
}

.copyright i {
    color: #ef4444;
    margin: 0 4px;
}

.legal-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }

    .footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand-col,
    .footer-newsletter {
        grid-column: span 2;
    }

    .payment-section {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand-col,
    .footer-newsletter,
    .footer-col {
        grid-column: span 1;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* --- RESPONSIVE --- */
/* --- NOTIFICATIONS --- */
.floating-success {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 20px 40px;
    border-radius: 500px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.floating-success i {
    font-size: 1.2rem;
}

@media (max-width: 1200px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .reach-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .reach-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 80px 20px 140px;
    }

    /* Main Form Section Mobile Refinements */
    .contact-main-grid {
        display: flex;
        flex-direction: column-reverse;
        /* Shows availability info above form on mobile */
        gap: 30px;
    }

    .glass-card {
        padding: 35px 25px;
        border-radius: 28px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        gap: 15px;
    }

    .section-title i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .input-group label {
        font-size: 0.75rem;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 18px;
        font-size: 1rem;
    }

    .info-sidebar {
        gap: 20px;
    }

    .card {
        padding: 30px;
        border-radius: 28px;
    }

    .blob-mask {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
    }

    .slide-content {
        flex-direction: column;
        padding: 40px;
        height: auto;
    }

    .slide-info h2 {
        font-size: 2.5rem;
    }

    .stat span {
        font-size: 2.5rem;
    }
}