/* 
    Envara Modern Premium CSS
    Author: Antigravity
*/

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

:root {
    /* Premium Anthrazit, Weiß & Blau Palette */
    --primary: #111827;
    --primary-soft: #4b5563;
    --accent: #1f1f4d;
    --accent-soft: rgba(31, 31, 77, 0.08);
    --accent-vibrant: #17173a;
    --text-main: #111827;
    --text-muted: #6b7280;
    --bg-light: #ffffff;
    --bg-alt: #f4f5f7;
    --bg-dark: #0f172a;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.06);

    /* Transitions */
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;

    /* Elevation */
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.08);

    /* Sizing */
    --radius-md: 20px;
    --radius-lg: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.section {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
}

.hover-glow {
    position: relative;
    overflow: hidden;
}

.hover-glow::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 10;
    pointer-events: none;
}

.hover-glow:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(31, 31, 77, 0.1);
    border-color: var(--accent-soft);
}

.hover-glow:hover::after {
    left: 200%;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 2rem 0;
    transition: var(--transition-fast);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

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

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

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    z-index: 1001;
}

/* Nav & Dropdown */
.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 240px;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1.02);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--bg-alt);
    color: var(--accent-vibrant);
    padding-left: 1.5rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 20px rgba(31, 31, 77, 0.2);
}

.btn-primary:hover {
    background: var(--accent-vibrant);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(31, 31, 77, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(100, 116, 139, 0.05) 0%, transparent 40%);
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 2;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-subtitle {
    display: inline-block;
    color: var(--accent-vibrant);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    line-height: 1.05;
    color: var(--primary);
}

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

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    z-index: 1;
}

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

/* Services */
.services-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .services-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 23, 42, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-alt);
    color: var(--accent-vibrant);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.service-card:hover .service-icon {
    background: var(--accent-vibrant);
    color: white;
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 2rem;
    font-weight: 600;
    color: var(--accent-vibrant);
}

/* About */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.about-badge span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

/* Why Us */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

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

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(100, 116, 139, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.process-grid {
    grid-template-columns: repeat(3, 1fr);
}

.contact-section-grid {
    grid-template-columns: 1fr 1fr;
}

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

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--primary);
    color: white;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-visual {
        display: none;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 3rem;
    }
}

.hero-bg-video {
    opacity: 0.5;
    filter: brightness(1.2) contrast(1.1);
}

@media (max-width: 768px) {
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
    }

    .logo {
        order: 1;
        margin-right: auto;
    }

    .header-cta {
        display: flex !important;
        order: 2;
        gap: 0.5rem;
        margin-right: 1rem;
    }

    .header-cta .btn {
        display: none !important;
    }

    .menu-toggle {
        display: block;
        order: 3;
        margin-left: 0;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    .nav-list.active {
        right: 0;
    }

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

    .nav-link {
        justify-content: center;
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .dropdown {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0;
        background: var(--bg-alt);
        margin-top: 0.5rem;
        min-width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown {
        display: block;
    }

    .dropdown-link {
        text-align: center;
        padding: 0.8rem 1rem;
    }

    /* Header CTA handled above */

    .mobile-cta-fix {
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem !important;
        padding: 3rem 1.5rem !important;
    }

    .mobile-cta-fix h2 {
        font-size: 2.2rem !important;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.2rem) !important;
    }
    
    .search-nav-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 2rem auto 0 !important;
    }
    
    .search-input-wrapper {
        height: 56px !important;
        border-radius: 14px !important;
    }
    
    .search-input-wrapper input {
        padding: 0 20px 0 50px !important;
        font-size: 1rem !important;
    }
    
    .search-input-wrapper i {
        left: 20px !important;
        font-size: 1.3rem !important;
    }

    .hero-bg-video {
        opacity: 0.15; /* Much lighter on mobile for text legibility */
        filter: grayscale(100%) brightness(1.5);
    }

    .benefits-grid,
    .footer-grid,
    .product-grid,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-section-grid,
    .about-container,
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: 1.1fr 0.9fr"],
    [style*="grid-template-columns: 1.2fr 0.8fr"],
    [style*="grid-template-columns: 0.8fr 1.2fr"] {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .cta-section-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem !important;
        padding: 60px 2rem !important;
    }

    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}

@media (max-width: 580px) {

    h1,
    h2,
    h1[style*="font-size"],
    h2[style*="font-size"],
    .hero-title,
    .hero-subtitle {
        font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
        line-height: 1.15 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    .glass-card {
        padding: 1.5rem !important;
    }

    .section {
        padding: 4rem 0;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        padding: 0.4rem 1rem !important;
    }

    .benefits-grid,
    .footer-grid,
    .product-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 1.5rem !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .hero-actions,
    .cta-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }

    .hero-actions .btn,
    .cta-actions .btn,
    .btn {
        margin-left: 0 !important;
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .about-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -30px;
        z-index: 2;
        padding: 1.5rem;
    }

    .selection-content {
        padding: 1.2rem 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        min-height: 100px;
        justify-content: center;
    }

    .selection-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
    }

    .selection-grid .selection-item {
        grid-column: span 1 !important;
    }

    .selection-content {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        min-height: auto;
    }

    .logo img {
        height: 35px; /* More balanced on mobile */
    }

    .header-search-trigger {
        font-size: 1.4rem;
        padding: 8px;
    }

    .header {
        padding: 1rem 0;
    }
}

/* Premium Contact Form System */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

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

.form-label {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    opacity: 0.7;
}

.form-input {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    outline: none;
    color: var(--text-main);
}

/* Swiper Customizations */
.swiper {
    padding-bottom: 3rem !important;
}

.swiper-pagination-bullet {
    background: var(--primary-soft) !important;
    opacity: 0.3 !important;
    width: 10px !important;
    height: 10px !important;
    transition: var(--transition-fast) !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 5px !important;
}


.form-input:focus {
    outline: none;
    background: white;
    border-color: var(--accent-vibrant);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 10px 20px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
    top: 0.4rem;
    transform: translateY(0);
    left: 1.2rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-vibrant);
    opacity: 1;
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

.dropdown-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    opacity: 0.8;
}

/* Premium Selection Grid */
.selection-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.selection-item {
    position: relative;
}

.selection-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.selection-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.selection-content i {
    font-size: 1.2rem;
    color: var(--accent-vibrant);
}

.selection-item input:checked+.selection-content {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.selection-item input:checked+.selection-content i {
    color: white;
}

.selection-item:hover .selection-content {
    border-color: var(--accent-vibrant);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .selection-grid {
        grid-template-columns: 1fr;
    }
    
    .selection-content {
        min-height: 80px;
        flex-direction: row;
        text-align: left;
        padding: 1rem 1.5rem;
    }
}

/* Exception for Textarea labels to keep them at the top */
textarea.form-input+.form-label {
    top: 1.2rem;
    transform: translateY(0);
}

textarea.form-input:focus+.form-label,
textarea.form-input:not(:placeholder-shown)+.form-label {
    top: 0.4rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        padding: 1.5rem;
        margin: 0;
        border-radius: 20px;
    }

    .hero-visual::after {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    }
}

/* ========================================
   WERBETECHNIK COMPONENT STYLES
   ======================================== */

/* Page Hero */
.wt-page-hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.wt-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.wt-page-hero .hero-subtitle {
    color: var(--accent);
}

.wt-page-hero h1 {
    font-size: 3.5rem;
    margin: 1rem 0 1.5rem;
    color: var(--primary);
}

.wt-page-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
}

.wt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.wt-breadcrumb a {
    color: var(--accent);
    font-weight: 600;
}

/* Accordion */
.wt-accordion {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.wt-accordion:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.wt-accordion-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    background: white;
    user-select: none;
}

.wt-accordion-header:hover {
    background: var(--bg-alt);
}

.wt-accordion-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.6rem;
    transition: var(--transition);
}

.wt-accordion.active .wt-accordion-icon {
    background: var(--accent);
    color: white;
}

.wt-accordion-info {
    flex: 1;
}

.wt-accordion-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.wt-accordion-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.wt-accordion-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-alt);
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.wt-accordion.active .wt-accordion-toggle {
    transform: rotate(180deg);
    background: var(--accent);
    color: white;
}

.wt-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.wt-accordion.active .wt-accordion-body {
    max-height: 600px;
}

.wt-accordion-content {
    padding: 0 2.5rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.wt-service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.wt-service-item:hover {
    background: var(--accent-soft);
    transform: translateX(4px);
}

.wt-service-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Section Headers */
.wt-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.wt-section-header h2 {
    font-size: 2.8rem;
    margin: 0.5rem 0 1rem;
}

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

/* Benefits Cards */
.wt-benefit-card {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-premium);
}

.wt-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.wt-benefit-card .icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.wt-benefit-card:hover .icon-wrap {
    background: var(--accent);
    color: white;
}

.wt-benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

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

/* Timeline */
.wt-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.wt-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.wt-timeline-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.wt-timeline-dot {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: white;
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent);
    z-index: 1;
}

.wt-timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.wt-timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.wt-stat {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--primary);
    border-radius: var(--radius-md);
    color: white;
}

.wt-stat .number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.wt-stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Filter Buttons */
.wt-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.wt-filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    background: white;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.wt-filter-btn:hover,
.wt-filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Gallery Grid */
.wt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.wt-gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    cursor: pointer;
}

.wt-gallery-item.hidden {
    display: none;
}

.wt-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

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

.wt-gallery-item .info {
    padding: 1.5rem;
}

.wt-gallery-item .info .tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.wt-gallery-item .info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

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

/* Lightbox */
.wt-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.wt-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.wt-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.wt-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.wt-lightbox-close:hover {
    background: var(--accent);
}

/* CTA Banner */
.wt-cta-banner {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wt-cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.wt-cta-banner h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.wt-cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.wt-cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* Contact Page */
.wt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.wt-contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-premium);
}

.wt-contact-info-card:hover {
    transform: translateX(8px);
    border-color: var(--accent);
}

.wt-contact-info-card .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.wt-contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.wt-contact-info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* About / Values */
.wt-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Active nav */
.nav-link.active-page {
    color: var(--accent) !important;
}

/* WT Mobile Responsive */
@media (max-width: 1024px) {
    .wt-page-hero h1 {
        font-size: 2.8rem;
    }

    .wt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wt-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wt-page-hero {
        padding: 130px 0 60px;
    }

    /* Fix background gradient on mobile so text is always readable even if it wraps */
    .wt-page-hero > div[style*="linear-gradient"] {
        background: linear-gradient(180deg, rgba(248, 250, 252, 0.85) 0%, rgba(248, 250, 252, 0.3) 60%, rgba(248, 250, 252, 0.7) 100%) !important;
    }

    /* Better positioning for background images on mobile */
    .wt-page-hero > img {
        object-position: center right !important;
    }

    .wt-page-hero h1 {
        font-size: 2.2rem;
    }

    .wt-accordion-content {
        grid-template-columns: 1fr;
    }

    .wt-accordion-header {
        padding: 1.5rem;
        gap: 1rem;
    }

    .wt-accordion-content {
        padding: 0 1.5rem 1.5rem;
    }

    .wt-gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .wt-cta-banner {
        padding: 3rem 2rem;
        border-radius: var(--radius-md);
    }

    .wt-cta-banner h2 {
        font-size: 2rem;
    }

    .wt-values-grid {
        grid-template-columns: 1fr;
    }

    .wt-filter-bar {
        gap: 0.5rem;
    }

    .wt-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .wt-timeline::before {
        left: 20px;
    }

    .wt-timeline-dot {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.9rem;
    }

    .wt-timeline-item {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .wt-stats-grid {
        grid-template-columns: 1fr;
    }

    .wt-accordion-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.2rem;
    }

    .wt-accordion-info h3 {
        font-size: 1.1rem;
    }
}
/* --- Smart Search Navigator --- */
.search-nav-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
}

.search-input-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
    box-shadow: 0 20px 45px rgba(31, 31, 77, 0.2);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 25px;
    font-size: 1.5rem;
    color: var(--accent);
}

#service-search {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 25px 18px 65px;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    outline: none;
}

#service-search::placeholder {
    color: rgba(17, 24, 39, 0.5);
}

.search-results-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    background: white;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: none;
    padding: 12px;
    text-align: left;
    z-index: 1000;
    box-sizing: border-box;
}

.search-result-item {
    display: flex;
    align-items: flex-start; /* Better for multiline */
    gap: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    margin-bottom: 5px;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.search-result-info {
    flex: 1;
    min-width: 0; /* Important for flex child wrapping */
}

.search-result-item i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.search-result-item:hover {
    background: var(--bg-alt);
    transform: translateX(5px);
}

.search-result-item:last-child {
    margin-bottom: 0;
}

.search-results-list.active {
    display: block;
}

.search-result-item {
    padding: 15px 20px;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    width: 100%;
    box-sizing: border-box;
}

.search-result-item:last-child {
    margin-bottom: 0;
}

.search-result-item:hover {
    background: var(--accent-soft);
    color: var(--accent);
    transform: translateX(10px);
}

.search-result-item i {
    font-size: 1.4rem;
    color: var(--accent);
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: normal;
    word-wrap: break-word;
}

.search-result-info p {
    margin: 3px 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: normal;
    word-wrap: break-word;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonialsSwiper .swiper-slide {
    width: 450px;
    max-width: 90vw;
}

/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 77, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.search-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.search-overlay-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-overlay-close:hover {
    transform: rotate(90deg);
    color: var(--accent);
}

.search-overlay-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

#header-search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    outline: none;
    transition: var(--transition);
}

#header-search-input:focus {
    border-color: var(--accent);
}

.header-search-results {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-height: 50vh;
    overflow-y: auto;
}

.header-search-result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.header-search-result-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--accent);
}

.header-search-result-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.header-search-result-card h4 {
    color: white;
    margin: 0 0 0.5rem;
}

.header-search-result-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* --- Chatbot --- */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(31, 31, 77, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(10deg);
}

.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: var(--primary);
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-messages {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bot-msg, .user-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bot-msg {
    background: #f1f5f9;
    color: var(--primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.user-msg {
    background: var(--accent);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot-input {
    padding: 1.2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex-grow: 1;
    border: none;
    background: #f8fafc;
    padding: 12px 15px;
    border-radius: 12px;
    outline: none;
}

.chatbot-input button {
    background: var(--accent);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chatbot-input button:hover {
    transform: scale(1.05);
}

/* --- Highlighting --- */
@keyframes highlightGlow {
    0% { box-shadow: 0 0 0 0 rgba(31, 31, 77, 0.4); background: var(--accent-soft); }
    100% { box-shadow: 0 0 0 20px rgba(31, 31, 77, 0); background: transparent; }
}

.highlight-target {
    animation: highlightGlow 2s ease-out forwards;
    border-radius: 20px;
}

/* --- Search Overlay --- */
/* --- Header Search Icon --- */
.header-search-trigger {
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.05); /* Slightly darker for better visibility */
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.header-search-trigger:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

/* --- Search Overlay Close --- */
.search-overlay-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--primary); /* Dark close button for light theme */
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4001;
}

.search-overlay-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.65); /* More transparent for better glass effect */
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.search-overlay-container {
    max-width: 900px;
    width: 90%;
    text-align: center;
}

.search-overlay-header h2 {
    color: var(--primary) !important;
}

.search-overlay-header {
    margin-bottom: 3rem;
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 1.5rem;
}

.suggestion-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    align-self: center;
    margin-right: 8px;
}

.suggestion-tag {
    background: var(--bg-alt);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.overlay-input-wrapper {
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.overlay-input-wrapper:focus-within {
    border-color: var(--accent) !important;
    background: white !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15) !important;
}

.overlay-input-wrapper input {
    color: var(--primary) !important;
    font-size: 1.8rem !important;
    padding: 20px 20px 20px 75px !important;
    font-weight: 600 !important;
}

.overlay-input-wrapper .search-icon {
    font-size: 1.8rem !important;
    color: var(--accent) !important;
    left: 25px !important;
}

.overlay-results {
    position: relative !important;
    top: 30px !important;
    background: white !important; /* Solid white like home search */
    backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 20px !important;
    max-height: 50vh !important;
    overflow-y: auto !important;
    padding: 10px !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3) !important;
}

.overlay-results .search-result-item {
    background: transparent !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    color: var(--primary) !important; /* Dark text for white background */
    padding: 15px 20px !important;
}

.overlay-results .search-result-item:hover {
    background: var(--bg-alt) !important; /* Light gray hover */
    transform: translateX(5px) !important;
}

.overlay-results .search-result-info h4 {
    color: var(--primary) !important;
    font-size: 1.2rem !important;
    margin: 0 !important;
}

.overlay-results .search-result-info p {
    color: var(--text-muted) !important;
}

.overlay-results .search-result-item i {
    background: var(--bg-alt) !important;
    color: var(--accent) !important;
    font-size: 1.4rem !important;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.overlay-results span {
    background: var(--accent-soft) !important;
    color: var(--accent) !important;
    border: none !important;
    font-size: 0.7rem !important;
}

#overlay-search-results .search-result-item {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    padding: 1.5rem;
}

#overlay-search-results .search-result-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

#overlay-search-results .search-result-item i {
    background: var(--accent);
    color: white;
    font-size: 1.5rem;
}

#overlay-search-results .search-result-info h4 {
    color: white;
    font-size: 1.2rem;
}

#overlay-search-results .search-result-info p {
    color: rgba(255, 255, 255, 0.7);
}

#overlay-search-results span {
    background: white;
    color: var(--primary);
    padding: 4px 12px;
}

/* --- Fully Clickable Service Cards --- */
.glass-card.hover-glow {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card.hover-glow:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(31, 31, 77, 0.15);
}

/* --- Search Input & Results Symmetry --- */
.search-nav-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-input-wrapper {
    width: 100%;
    background: rgba(187, 186, 181, 0.85) !important; /* Custom color #bbbab5 with glass effect */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 16px !important;
    position: relative;
    height: 55px; /* Shorter */
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.search-input-wrapper input {
    background: transparent !important;
    border: none !important;
    color: var(--primary) !important; /* Dark text for contrast */
    width: 100%;
    height: 100%;
    padding: 0 25px 0 55px !important;
    font-size: 1rem !important; /* Smaller text */
    outline: none !important;
}

.search-input-wrapper input::placeholder {
    color: rgba(17, 24, 39, 0.4); /* Darker placeholder */
}

.search-input-wrapper i {
    position: absolute;
    left: 20px;
    font-size: 1.3rem; /* Smaller icon */
    color: var(--primary); /* Dark icon */
}

#overlay-search-results {
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
}

/* --- Custom Scrollbar for Search Results --- */
.search-results-list::-webkit-scrollbar {
    width: 8px;
}

.search-results-list::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
}

.search-results-list::-webkit-scrollbar-thumb {
    background: var(--accent-soft);
    border-radius: 10px;
}

.search-results-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
/* Glassmorphism Button Hover */
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4) !important;
}
/* Swiper & Testimonial Enhancements */
.testimonialsSwiper .swiper-slide {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonialsSwiper .swiper-slide-active {
    transform: scale(1.05);
}

.testimonialsSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 6px;
    border-radius: 10px;
    background: var(--accent);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
    width: 30px;
    opacity: 1;
}

.quote-icon i {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.glass-card.hover-glow:hover {
    box-shadow: 0 25px 60px rgba(31, 31, 77, 0.12);
    border-color: rgba(31, 31, 77, 0.1);
}

/* --- Premium Form Feedback & Success UI --- */
.toast-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 31, 77, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.toast-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(31, 31, 77, 0.25);
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-overlay.active .toast-card {
    transform: translateY(0) scale(1);
}

.toast-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--accent-soft);
    color: var(--accent-vibrant);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: inset 0 0 0 3px rgba(31, 31, 77, 0.05);
    position: relative;
}

.toast-icon-wrapper.error {
    background: rgba(239, 68, 68, 0.1);
    color: rgb(239, 68, 68);
}

.toast-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.toast-message {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.toast-close-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(31, 31, 77, 0.15);
}

.toast-close-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

/* Button Loading State */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
