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

:root {
    --primary-color: #d27100;
    --primary-dark: #b85f00;
    --primary-light: #f08020;
    --secondary-color: #d27100;
    --text-color: #FFFFFF;
    --text-light: #CCCCCC;
    --bg-color: #0A0A0A;
    --bg-secondary: #1A1A1A;
    --bg-card: #2A2A2A;
    --border-color: #3A3A3A;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    padding-top: 0;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffa040;
}

a:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 2px;
}

.btn,
.btn a,
.nav-menu a,
.nav-brand a {
    text-decoration: none;
}

p a,
.section a,
main a:not(.btn):not(.nav-menu a):not(.nav-brand a),
footer a:not(.btn):not(.footer-section ul a) {
    text-decoration: none;
}

footer .footer-section ul a {
    text-decoration: none;
}

footer .footer-bottom a {
    text-decoration: none;
}

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

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.3);
    padding: 1rem 0;
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(210, 113, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar.liquid-gel {
    position: fixed !important;
}

.navbar.liquid-gel .effect {
    opacity: 1 !important;
    z-index: 999999 !important;
    position: fixed !important;
}

.nav-menu-close-wrapper {
    display: none;
}

.nav-menu-close {
    display: none;
}

@media (max-width: 768px) {
    .navbar.liquid-gel .effect {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: none !important;
    }
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(210, 113, 0, 0.15);
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.nav-toggle:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 3px;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
    background-color: var(--bg-card);
    color: var(--primary-color);
}

.nav-menu li a:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 4px;
    background-color: var(--bg-card);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
    transition: opacity 0.5s ease-in-out;
}

.hero-image.loaded {
    opacity: 0.35;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-contact {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.hero-contact p {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-light);
}

.hero-contact strong {
    color: var(--text-color);
    font-weight: 600;
}

.hero-contact a {
    color: var(--primary-light);
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-decoration: none;
}

.hero-contact a:hover {
    color: #ffa040;
    text-shadow: 0 0 15px rgba(255, 160, 64, 0.6);
}

.hero-contact a:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:focus {
    outline: 3px solid #FFFFFF;
    outline-offset: 3px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(210, 113, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(210, 113, 0, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(210, 113, 0, 0.4);
}

/* Sections */
main {
    position: relative;
    z-index: 1;
}

.section {
    padding: 5rem 0;
}

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

.section h2 {
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-color);
    display: inline-block;
}

.section h3 {
    color: var(--primary-light);
}

.section p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    color: var(--text-light);
}

/* Contact Info */
.contact-info {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.contact-info h2, .contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.contact-info a {
    color: #FFB84D;
    font-weight: 700;
    background-color: rgba(255, 184, 77, 0.08);
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #FFD700;
    background-color: rgba(255, 184, 77, 0.15);
}

/* Form Styles */
.contact-form {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 700;
    color: #FFB84D;
    background-color: rgba(255, 184, 77, 0.08);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.95rem;
}

.testimonial-author::before {
    content: '— ';
}

/* FAQ */
.faq-list {
    margin-top: 2.5rem;
}

.faq-item {
    background-color: var(--bg-card);
    padding: 1.75rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.faq-item p {
    margin-bottom: 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--text-color);
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

/* Breadcrumbs */
.breadcrumbs {
    padding: 1.25rem 0;
    background-color: var(--bg-secondary);
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumbs li {
    color: var(--text-light);
    font-size: 0.95rem;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-light);
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Localități List */
.localitati-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.localitati-grid li {
    background-color: var(--bg-card);
    padding: 1.25rem;
    border-radius: 8px;
    list-style: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.localitati-grid li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.localitati-grid a {
    color: var(--text-color);
    display: block;
    width: 100%;
}

.localitati-grid a:hover {
    color: var(--primary-light);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(210, 113, 0, 0.2);
}

.service-card h2, .service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

/* Images & Lazy Loading */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Gallery Mosaic */
.gallery-container {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-auto-rows: 240px;
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--bg-card);
    box-shadow: var(--shadow);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 10px 20px rgba(210, 113, 0, 0.15);
    border-color: rgba(210, 113, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
    display: block;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 12px;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Mosaic Spans */
.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 991px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 1rem;
    }
    
    .gallery-item.wide,
    .gallery-item.tall,
    .gallery-item.large {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.gallery-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.gallery-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-lightbox-close:hover {
    background-color: var(--primary-color);
    transform: rotate(90deg);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

.gallery-lightbox-nav:hover {
    background-color: var(--primary-color);
}

.gallery-lightbox-prev {
    left: 1rem;
}

.gallery-lightbox-next {
    right: 1rem;
}

.gallery-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    background-color: var(--bg-card);
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body.nav-menu-open {
        overflow: hidden;
    }
    
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        flex-direction: column;
        padding-top: 80px;
        border-radius: 0;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    body.nav-menu-open::before {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-menu-close-wrapper {
        display: block;
        width: 100%;
        text-align: right;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu-close {
        display: block;
        background: none;
        border: none;
        color: #FFFFFF;
        font-size: 2.2rem;
        cursor: pointer;
        padding: 0.5rem 1rem;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 1.25rem 1.5rem;
        color: #FFFFFF;
        font-size: 1.15rem;
    }
    
    .nav-menu li a:hover {
        background-color: rgba(210, 113, 0, 0.15);
        color: var(--primary-color);
    }

    .navbar {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        border-radius: 12px;
        padding: 0.5rem 0;
    }
    
    .navbar .container {
        padding: 0 1rem;
        height: 50px;
    }
    
    .nav-brand a {
        font-size: 1.15rem;
    }

    .hero {
        min-height: 100vh;
    }
    
    .hero .container {
        padding: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .testimonials, .services-grid, .localitati-grid {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .map-container {
        height: 300px;
    }
}

/* Printing & Accessibility */
@media print {
    .navbar, .footer, .cta-buttons, .scroll-indicator {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Permanent Floating Action Buttons (Sticky CTAs) */
.floating-ctas {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none; /* Let clicks pass through container gaps */
}

.floating-cta {
    pointer-events: auto; /* Re-enable pointer events for buttons */
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-cta:hover {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5), 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.call-cta {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    box-shadow: 0 8px 25px rgba(210, 113, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.call-cta:hover {
    box-shadow: 0 12px 30px rgba(210, 113, 0, 0.55), 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.floating-cta:hover {
    transform: translateY(-4px) scale(1.03);
    color: #FFFFFF;
}

.floating-cta .cta-icon {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.floating-cta .cta-text {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Pulse animation for Call button to draw attention */
.call-cta {
    animation: ctaPulse 3s infinite;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 8px 25px rgba(210, 113, 0, 0.35), 0 0 0 0 rgba(210, 113, 0, 0.4);
    }
    70% {
        box-shadow: 0 8px 25px rgba(210, 113, 0, 0.35), 0 0 0 12px rgba(210, 113, 0, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(210, 113, 0, 0.35), 0 0 0 0 rgba(210, 113, 0, 0);
    }
}

@media (max-width: 768px) {
    .floating-ctas {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }
    
    .floating-cta {
        padding: 0.75rem 1.25rem;
        gap: 0.5rem;
    }
    
    .floating-cta .cta-icon {
        font-size: 1.15rem;
    }
    
    .floating-cta .cta-text {
        font-size: 0.85rem;
    }
}

/* Hero Slider Styles */
.slider-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.slide-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease-out;
    z-index: 1;
}

/* Ken Burns effect on active slide */
.slide.active .slide-background {
    transform: scale(1.06);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Animations for slide content */
.slide h1, .slide h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.6s ease 0.2s;
    color: var(--text-color);
}

.slide .hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    max-width: 850px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, opacity 0.6s ease 0.4s;
}

.slide .cta-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s, opacity 0.6s ease 0.6s;
}

.slide.active h1, .slide.active h2,
.slide.active .hero-subtitle,
.slide.active .cta-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(10, 10, 10, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-light);
    box-shadow: 0 0 15px rgba(210, 113, 0, 0.4);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

@media (max-width: 991px) {
    .slider-prev {
        left: 1rem;
    }
    .slider-next {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .slider-prev {
        left: 0.5rem;
    }
    .slider-next {
        right: 0.5rem;
    }
    .slide-content {
        padding: 1rem;
    }
}

.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.slider-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.slider-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(210, 113, 0, 0.6);
}

