:root {
    --primary-color: #00A859;
    /* More vibrant 2026 Green */
    --primary-light: #4DE094;
    --primary-dark: #006837;
    --accent-color: #FFB800;
    /* Sophisticated yellow/gold for trust */
    --secondary-color: #FFFFFF;
    --text-color: #0F172A;
    /* Deeper slate for better readability */
    --text-muted: #64748B;
    --light-gray: #F8FAFC;
    --font-family: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 90px;
    --container-width: 1300px;
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - 2026 Floating Design */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: var(--container-width);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0 40px;
}

.header.scrolled {
    height: 75px;
    top: 10px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}

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

.header.scrolled .logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-color);
    position: relative;
    padding: 10px 0;
}

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

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a:hover::after {
    width: 100%;
}

.btn-contact {
    background: var(--primary-color);
    color: white !important;
    padding: 12px 28px !important;
    border-radius: var(--radius);
    font-weight: 600 !important;
    box-shadow: 0 10px 20px rgba(0, 168, 89, 0.2);
    transition: var(--transition);
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 168, 89, 0.3);
}

/* Modern Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.hamburger-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hamburger-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    margin: 3px 0;
}

.hamburger-btn.active {
    background: var(--primary-color);
}

.hamburger-btn.active span {
    background-color: white;
}

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

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

@media (max-width: 992px) {
    .hamburger-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 50px;
        transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        clip-path: circle(0% at 100% 0%);
        z-index: 1500;
        pointer-events: none;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0%);
        pointer-events: auto;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for links */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-links li a {
        font-size: 32px;
        font-weight: 800;
        color: var(--text-color);
        letter-spacing: -1px;
    }

    .btn-contact {
        margin-top: 20px;
        font-size: 20px !important;
        padding: 15px 40px !important;
    }
}

/* Hero Slider - 2026 Enterprise Edition */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    /* Pulled up to show the action/machines */
    z-index: 1;
    transform: scale(1.1);
    transition: transform 10s linear;
}

.slide.active .slide-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--primary-light);
    background: linear-gradient(to right, var(--primary-light), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Slider Controls - Side Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

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

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

.slider-arrow i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius);
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 168, 89, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 168, 89, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius);
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    border-radius: 50%;
    animation: mouse-scroll 2s infinite;
}

@keyframes mouse-scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Section General */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-slider {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.about-slider-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.about-slider-nav button {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 12px;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-slider-nav button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Services Section - Modern Enterprise Card */
.services {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 168, 89, 0.08);
    border-color: rgba(0, 168, 89, 0.1);
}

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: white;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 5px 0 15px;
    color: var(--text-color);
}


.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card .read-more {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-card .read-more i {
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 0;
    font-size: 12px;
}

.service-card:hover .read-more {
    gap: 12px;
}

/* Machines Section */
.machines {
    background-color: white;
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.machine-card {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.machine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.machine-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.machine-info {
    padding: 20px;
    text-align: center;
}

.machine-info h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.machine-info p {
    font-size: 14px;
    color: #666;
}

/* Projects Section */
.projects {
    background-color: white;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    /* Adjusted to focus on top/middle action */
    transition: var(--transition);
}

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

/* Contact Section */
.contact {
    background-color: #333;
    color: white;
}

.contact .section-title h2 {
    color: white;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #222;
    color: #999;
    padding: 30px 0;
    text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .about-content {
        flex-direction: column;
    }
}

/* Why Choose Us - Corporate Style */
.why-choose-erben {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.why-choose-erben .subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pillar-item {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pillar-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 168, 89, 0.08);
    border-color: rgba(0, 168, 89, 0.2);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 168, 89, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.pillar-item:hover .pillar-icon {
    background: var(--primary-color);
}

.pillar-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.pillar-item:hover .pillar-icon i {
    color: white;
}

.pillar-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.pillar-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Brand References - Professional Logo Grid */
.brand-references {
    background-color: #fff;
    padding: 100px 0;
}

.brands-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

/* Brands Slider Section */
.brand-references {
    background-color: #fafafa;
    padding: 80px 0;
    overflow: hidden;
}

.brands-slider-wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.brands-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

.track-left {
    animation: scrollLeft 40s linear infinite;
}

.track-right {
    animation: scrollRight 40s linear infinite;
}

.brand-box {
    width: 200px;
    height: 100px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    filter: grayscale(1);
    opacity: 0.6;
}

.brand-box:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.brand-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

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

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .brand-box {
        width: 150px;
        height: 80px;
        padding: 15px;
    }
}

/* FAQ - Minimal Accordion */
.faq-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.faq-accordion {
    max-width: 850px;
    margin: 60px auto 0;
}

.faq-accordion-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-trigger {
    width: 100%;
    padding: 25px 35px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-trigger i {
    font-size: 14px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-trigger.active {
    color: var(--primary-color);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-panel p {
    padding: 0 35px 30px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-trigger {
        font-size: 18px;
        padding: 20px;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 60px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: white;
    box-shadow: 0 30px 60px rgba(0, 168, 89, 0.2);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-content p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions a {
        width: 100%;
    }
}

/* Modern Footer */
.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 80px 0 30px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-column p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-column h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}


.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Cookie Notice - Premium Design */
.cookie-notice {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 9999;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-notice.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-content button {
    white-space: nowrap;
    padding: 12px 30px;
    font-size: 14px;
    flex-shrink: 0;
}

/* WhatsApp Sticky Button - Modern & Premium */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 10001;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-sticky i {
    font-size: 24px;
}

.whatsapp-sticky span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.5s ease;
}

.whatsapp-sticky:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    background-color: #20ba5a;
}

.whatsapp-sticky:hover span {
    max-width: 200px;
}

@media (max-width: 768px) {
    .cookie-notice {
        width: 100%;
        left: 0;
        bottom: -200px;
        border-radius: 0;
        padding: 20px;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        display: block !important;
    }

    .cookie-notice.active {
        bottom: 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-content p {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .cookie-content button {
        width: 100%;
        padding: 12px;
    }

    .whatsapp-sticky {
        bottom: 0 !important;
        right: 0 !important;
        border-radius: 0;
        border-top-left-radius: 20px;
        padding: 15px 25px;
    }

    .whatsapp-sticky span {
        display: none;
    }
}
