/* Service Page Specific Styles */

/* Navigation Dropdown & Mega Menu */
.nav-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .nav-mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    min-width: 220px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mega-menu-item:hover {
    background: linear-gradient(90deg, rgba(85, 11, 20, 0.08) 0%, transparent 100%);
    color: var(--premium-burgundy);
    border-left-color: var(--premium-burgundy);
    padding-left: 28px;
}

.mega-submenu-wrapper {
    position: relative;
}

.has-submenu {
    cursor: pointer;
}

.submenu-arrow {
    transition: transform 0.2s ease;
}

.mega-submenu-wrapper:hover .submenu-arrow {
    transform: translateX(3px);
}

.mega-submenu {
    position: absolute;
    top: -12px;
    left: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    min-width: 180px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.mega-submenu::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
    filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.05));
}

.mega-submenu-wrapper:hover .mega-submenu {
    opacity: 1;
    visibility: visible;
}

.mega-submenu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mega-submenu a:hover {
    background: linear-gradient(90deg, rgba(85, 11, 20, 0.08) 0%, transparent 100%);
    color: var(--premium-burgundy);
    border-left-color: var(--premium-burgundy);
    padding-left: 24px;
}

.nav-cta {
    background: var(--premium-burgundy) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 80px 24px 40px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

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

    .nav-link {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: #2B2B2B !important;
        width: 100%;
        border-radius: 0;
    }

    .nav-link-dropdown {
        justify-content: space-between;
    }

    .nav-cta {
        margin-top: 20px;
        width: 100% !important;
        display: flex !important;
        justify-content: center;
    }

    /* Hamburger Menu Toggle */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }

    .hamburger {
        position: relative;
        width: 24px;
        height: 2px;
        background: var(--premium-burgundy);
        transition: 0.3s;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: var(--premium-burgundy);
        transition: 0.3s;
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        bottom: -8px;
    }

    .menu-toggle.active .hamburger {
        background: transparent;
    }

    .menu-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle.active .hamburger::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    /* Mobile Dropdown */
    .nav-mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-top: 0;
        width: 100%;
        box-shadow: none;
        background: #fcfcfc;
        border-radius: 0;
    }

    .nav-dropdown.active .nav-mega-menu {
        display: block;
    }

    .mega-menu-content {
        box-shadow: none;
        background: transparent;
        padding: 0;
        border: none;
    }

    .mega-menu-item {
        padding: 10px 15px;
        font-size: 14px;
        border-left: 2px solid transparent;
    }

    .nav-dropdown.active .nav-dropdown-arrow {
        transform: rotate(180deg);
    }

    .mega-submenu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: #f8f8f8;
        margin-left: 0;
        border: none;
        border-radius: 0;
    }

    .mega-submenu-wrapper.active .mega-submenu {
        display: block;
    }

    .mega-submenu::before {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Breadcrumb */
.breadcrumb-section {
    background: #F8F8F8;
    padding: 16px 0;
    border-bottom: 1px solid #EDEDED;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb li {
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: #999;
}

.breadcrumb a {
    color: var(--premium-burgundy);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .active {
    color: #2B2B2B;
    font-weight: 500;
}

/* Service Hero */
.service-hero {
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.95) 0%, rgba(90, 30, 58, 0.95) 100%),
        url('../assets/hero-bg.png') center/cover;
    color: white;
    padding: 70px 0 50px;
    text-align: center;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-hero-subtitle {
    font-size: 1.25rem;
    opacity: 1;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.service-hero .btn-group {
    justify-content: center;
}

/* Service Content */
.service-content {
    padding: var(--spacing-xl) 0;
}

.service-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-article {
    max-width: 100%;
    margin: 0 auto 60px;
}

.service-article h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: #2B2B2B;
    margin: 48px 0 24px;
    font-weight: 700;
}

.service-article h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #2B2B2B;
    margin: 36px 0 20px;
    font-weight: 600;
}

.service-article h4 {
    font-size: 1.25rem;
    color: #2B2B2B;
    margin: 24px 0 12px;
    font-weight: 600;
}

.service-article p {
    font-size: 16px;
    line-height: 1.8;
    color: #5A5A5A;
    margin-bottom: 20px;
}

/* Keep in-content links clearly visible without hover (desktop + mobile). */
.service-article p a {
    color: var(--premium-burgundy);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    font-weight: 600;
}

.service-article p a:hover {
    color: #5A1E3A;
    text-decoration-thickness: 2px;
}

.service-article p a:focus-visible {
    outline: 2px solid rgba(85, 11, 20, 0.25);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.benefit-card {
    background: white;
    border: 1px solid #EDEDED;
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--premium-burgundy);
}

.benefit-card h4 {
    margin: 0 0 12px 0;
    color: var(--premium-burgundy);
}

.benefit-card p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

/* Advantage Grid */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 24px 0;
}

/* Advantage List */
.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #5A5A5A;
}

.advantage-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--premium-burgundy);
    font-weight: bold;
    font-size: 18px;
}

/* Samples Section */
.samples-section {
    background: #F8F8F8;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 24px 0 36px;
}

.samples-placeholder {
    color: #999;
    font-size: 15px;
    font-style: italic;
    margin: 0;
}

.katalog-samples {
    background: transparent;
    padding: 0;
    margin-top: 0;
}

.katalog-samples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
    justify-items: center;
    margin: 0 auto;
}

.katalog-sample-card {
    width: min(100%, 320px);
    margin: 0;
}

.katalog-sample-media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    aspect-ratio: 5 / 5;
    background: #f3f3f3;
}

.katalog-sample-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
    will-change: transform;
}

@media (hover: hover) {
    .katalog-sample-card:hover .katalog-sample-image {
        transform: scale(1.04);
    }
}

.katalog-sample-caption {
    font-size: 11px;
    color: #888;
    margin-top: 8px;
    line-height: 1.4;
}

.katalog-sample-label {
    color: #666;
    font-weight: 600;
}

/* Samples Section 2*/
.samples-section2 {
    background: #F8F8F8;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 24px 0 36px;
}

.samples-placeholder2 {
    color: #999;
    font-size: 15px;
    font-style: italic;
    margin: 0;
}

.katalog-samples2 {
    background: transparent;
    padding: 0;
    margin-top: 0;
}

.katalog-samples-grid2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
    justify-items: center;
    margin: 0 auto;
}

.katalog-sample-card2 {
    width: min(100%, 320px);
    margin: 0;
}

.katalog-sample-media2 {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
    background: #f3f3f3;
}

.katalog-sample-image2 {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
    will-change: transform;
}

@media (hover: hover) {
    .katalog-sample-card2:hover .katalog-sample-image2 {
        transform: scale(1.04);
    }
}

.katalog-sample-caption2 {
    font-size: 11px;
    color: #888;
    margin-top: 8px;
    line-height: 1.4;
}

.katalog-sample-label2 {
    color: #666;
    font-weight: 600;
}


/* Technical Specs */
.tech-specs {
    background: #FAFAFA;
    border-radius: 16px;
    padding: 40px;
    margin: 60px 0;
}

.tech-specs h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #2B2B2B;
    margin: 0 0 32px;
    text-align: center;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.specs-table th,
.specs-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #EDEDED;
}

.specs-table th {
    background: var(--premium-burgundy);
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.specs-table tbody tr:last-child td {
    border-bottom: none;
}

.specs-table tbody tr:hover {
    background: #F8F8F8;
}

.specs-table td:first-child {
    color: #2B2B2B;
    font-weight: 500;
}

.specs-table td:last-child {
    color: #666;
}

/* Usage Areas */
.usage-areas {
    margin: 60px auto;
}

.usage-areas h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #2B2B2B;
    margin: 0 0 32px;
    text-align: center;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.usage-card {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border: 2px solid #EDEDED;
    border-radius: 12px;
    transition: var(--transition-normal);
}

.usage-card:hover {
    border-color: var(--premium-burgundy);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.usage-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.usage-card h4 {
    color: #2B2B2B;
    margin: 0 0 12px;
    font-size: 1.125rem;
}

.usage-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    margin: 60px auto;
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #2B2B2B;
    margin: 0 0 32px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--premium-burgundy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
    font-weight: 600;
    color: #2B2B2B;
    font-size: 16px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: "+";
    font-size: 24px;
    color: var(--premium-burgundy);
    font-weight: 400;
    transition: var(--transition-fast);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid #F0F0F0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--premium-burgundy) 0%, #5A1E3A 100%);
    color: white;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    margin: 60px auto;
    box-shadow: 0 12px 32px rgba(114, 47, 55, 0.3);
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin: 0 0 24px;
    color: white;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-feature {
    font-size: 15px;
    font-weight: 500;
}

.cta-box p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.7;
}

.cta-box p a {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    font-weight: 700;
}

.cta-box p a:hover {
    text-decoration-thickness: 2px;
}

.cta-box .btn-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.cta-box .btn {
    margin: 0;
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.5rem;
}

.cta-box .btn-primary,
.cta-box .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-box .btn-primary:hover,
.cta-box .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Related Services */
.related-services {
    margin: 60px 0;
}

.related-services h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #2B2B2B;
    margin: 0 0 32px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.related-grid> :last-child:nth-child(4n+1) {
    grid-column: 2 / 4;
}

.related-grid>* {
    width: 100%;
}

.related-card {
    background: white;
    border: 2px solid #EDEDED;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-normal);
    display: block;
}

.related-card:hover {
    border-color: var(--premium-burgundy);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.related-card h4 {
    color: var(--premium-burgundy);
    font-size: 1.25rem;
    margin: 0 0 12px;
}

.related-card p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* Related Card Dropdown */
.related-card-dropdown {
    position: relative;
}

.related-card.has-dropdown {
    cursor: pointer;
    position: relative;
    background: white;
    border: 2px solid #EDEDED;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.related-card.has-dropdown:hover {
    border-color: var(--premium-burgundy);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.related-card.has-dropdown h4 {
    color: var(--premium-burgundy);
    font-size: 1.25rem;
    margin: 0 0 12px;
}

.related-card.has-dropdown p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

.related-card.has-dropdown .dropdown-arrow {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
    color: var(--premium-burgundy);
}

.related-card-dropdown:hover .dropdown-arrow {
    transform: translateX(-50%) rotate(180deg);
}

.related-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.related-card-dropdown:hover .related-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.related-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.related-dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(85, 11, 20, 0.08) 0%, transparent 100%);
    color: var(--premium-burgundy);
    border-left-color: var(--premium-burgundy);
    padding-left: 24px;
}

/* Footer Override for Service Pages */
.footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    text-align: left;
}

.footer .footer-section h3 {
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2rem;
    }

    .service-hero-subtitle {
        font-size: 1.05rem;
    }

    .service-article h2 {
        font-size: 1.75rem;
    }

    .service-article h3 {
        font-size: 1.5rem;
    }

    .tech-specs {
        padding: 24px 20px;
    }

    .specs-table th,
    .specs-table td {
        padding: 12px;
        font-size: 14px;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }

    .cta-box .btn-group {
        grid-template-columns: 1fr;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefits-grid,
    .usage-grid {
        grid-template-columns: 1fr;
    }

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

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

    .related-grid> :last-child:nth-child(4n+1) {
        grid-column: 1 / -1;
    }
}

/* Floating Back Button */
.floating-back {
    position: fixed;
    top: 100px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--premium-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 998;
    cursor: pointer;
    text-decoration: none;
    color: var(--premium-burgundy);
}

.floating-back:hover {
    transform: translateX(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(114, 47, 55, 0.25);
    background: var(--premium-burgundy);
    color: white;
}

.floating-back svg {
    width: 24px;
    height: 24px;
}

/* Fix Floating WhatsApp & Email from main CSS */
.email-float,
.whatsapp-float {
    position: fixed;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float {
    bottom: 28px;
    background: #25D366;
}

.email-float {
    bottom: 88px;
    background: var(--premium-burgundy);
}

.email-float:hover,
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.email-float svg,
.whatsapp-float svg {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Tooltip for floating buttons */
.email-float::before,
.whatsapp-float::before,
.floating-back::before {
    content: attr(data-tooltip);
    position: absolute;
    background: rgba(43, 43, 43, 0.95);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.email-float::before,
.whatsapp-float::before {
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(-12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-back::before {
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(12px);
}

.email-float:hover::before,
.whatsapp-float:hover::before,
.floating-back:hover::before {
    opacity: 1;
    visibility: visible;
}

.email-float:hover::before,
.whatsapp-float:hover::before {
    transform: translateY(-50%) translateX(-8px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-back {
        top: 80px;
        left: 16px;
        width: 44px;
        height: 44px;
    }

    .email-float,
    .whatsapp-float {
        width: 44px;
        height: 44px;
        right: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
    }

    .email-float {
        bottom: 74px;
    }

    .email-float::before,
    .whatsapp-float::before,
    .floating-back::before {
        display: none;
    }
}

/* Features Highlight Section */
.features-highlight {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(85, 11, 20, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: rgba(85, 11, 20, 0.2);
    box-shadow: 0 8px 24px rgba(85, 11, 20, 0.1);
}

.feature-icon {
    font-size: 2rem;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--premium-burgundy) 0%, #7a1f2d 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(85, 11, 20, 0.2);
}

.feature-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--premium-burgundy);
}

.feature-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .feature-icon {
        font-size: 1.5rem;
        min-width: 40px;
        height: 40px;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }
}
