/* ===== VARIABLES ===== */
:root {
    --gold: #D4AF37;
    --dark-gold: #B8941E;
    --light-gold: #F4E4B0;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 0;
}

body::-webkit-scrollbar {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
}

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

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text i {
    font-size: 2rem;
}

.logo-text span {
    color: var(--gold);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:not(.btn-devis):hover {
    color: var(--gold);
}

.nav-links a:not(.btn-devis)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:not(.btn-devis):hover::after {
    width: 100%;
}

.nav-links a.nav-highlight {
    color: var(--gold);
    font-weight: 600;
    animation: navBlink 1.5s ease-in-out infinite;
}

.nav-links a.nav-highlight::after {
    display: none;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video::after {
    content: none;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="%23D4AF37" fill-opacity="0.05" d="M0,100 Q300,200 600,100 T1200,100 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
    animation: wave 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes navBlink {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    }
    50% {
        opacity: 0.5;
        text-shadow: 0 0 4px rgba(212, 175, 55, 0.4);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--light-gold);
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #f1f1f1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: var(--gold);
}

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

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s backwards;
}

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

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-header p {
    color: var(--light-gold);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ===== SERVICES ===== */
.services {
    background: var(--dark-gray);
}

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

.service-card {
    background: var(--medium-gray);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    color: #ccc;
    line-height: 1.8;
}

.formules-grid .service-card {
    text-align: left;
}

.service-list {
    margin-top: 15px;
    list-style: none;
    padding-left: 0;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #ddd;
}

.service-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ===== ABOUT ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--dark-gray);
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat p {
    color: #ccc;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* ===== PRO & DUAL SECTIONS ===== */
.pro-section {
    background: var(--black);
}

.pro-content {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    text-align: center;
}

.pro-content p + p {
    margin-top: 20px;
}

.dual-section {
    background: var(--dark-gray);
}

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

.dual-card {
    background: var(--medium-gray);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.dual-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.dual-card p {
    color: #ddd;
    line-height: 1.7;
}

/* ===== WHY US ===== */
.why-us {
    background: var(--dark-gray);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.why-list {
    list-style: none;
    padding-left: 0;
}

.why-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    color: #ddd;
}

.why-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
}

.why-text {
    margin-top: 30px;
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.8;
}

.why-highlight {
    margin-top: 15px;
    font-weight: 600;
    color: var(--gold);
}

/* ===== REVIEWS ===== */
.reviews {
    background: var(--dark-gray);
}

.reviews-frame {
    border: 2px solid var(--gold);
    border-radius: 25px;
    padding: 40px;
    background: rgba(10, 10, 10, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    transition: height 0.4s ease;
}

.reviews-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1), transparent 55%);
    pointer-events: none;
}

.reviews-slider {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
    align-items: flex-start;
}

.review-card {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 20px 40px;
    text-align: center;
    color: var(--white);
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.review-card.active {
    opacity: 1;
}

.review-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.review-author h3 {
    color: var(--gold);
    margin-bottom: 5px;
}

.review-author span {
    color: #aaa;
}

/* ===== QUOTE FORM ===== */
.quote-section {
    background: var(--dark-gray);
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--medium-gray);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

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

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

.form-label {
    display: block;
    margin-bottom: 6px;
    color: #ccc;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group select option {
    background: var(--medium-gray);
}

.quote-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    border: none;
}

.quick-call {
    margin-top: 25px;
    text-align: center;
}

.quick-call p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 1rem;
}

.quick-call .btn {
    display: inline-block;
    width: auto;
    position: relative;
    overflow: hidden;
}

.quick-call .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: quickCallShine 2.2s infinite;
}

@keyframes quickCallShine {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

body.success-body {
    background: var(--black);
    color: var(--white);
}

.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.success-card {
    background: var(--medium-gray);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}

.success-card i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-card h1 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.success-card p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.success-actions .btn {
    min-width: 220px;
    text-align: center;
}

/* ===== CONTACT ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--dark-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    border-left: 3px solid var(--gold);
}

.contact-item i {
    font-size: 2rem;
    color: var(--gold);
    min-width: 40px;
}

.contact-item h3 {
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-item p {
    color: #ccc;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    border: 3px solid var(--gold);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    padding: 60px 0 20px;
    border-top: 3px solid var(--gold);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
}

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

.footer-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    border: none;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--dark-gold);
    transform: translateY(-5px);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-section ul li i {
    color: var(--gold);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom p {
    color: #999;
}

.footer-credit {
    color: var(--gold);
    text-decoration: none;
    margin-left: 5px;
}

.footer-credit:hover {
    text-decoration: underline;
}

.mentions-legales-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: bold;
}

.mentions-legales-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.96);
    border-top: 2px solid var(--gold);
    z-index: 1500;
}

.mobile-contact-item {
    flex: 1;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-contact-item i {
    font-size: 1.4rem;
}

.mobile-contact-item + .mobile-contact-item {
    border-left: 1px solid rgba(212, 175, 55, 0.25);
}

.mobile-contact-item:active {
    background: rgba(212, 175, 55, 0.12);
}

.mobile-contact-text {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--gold);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--dark-gold);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 2rem;
}

.modal-content h3 {
    color: var(--gold);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.modal-content p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.8;
}

.modal-body {
    color: #ccc;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(960px, calc(100% - 40px));
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    display: none;
    gap: 20px;
    z-index: 2000;
}

.cookie-banner.visible {
    display: flex;
}

.cookie-text {
    flex: 1;
    color: #eee;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.cookie-actions .btn {
    min-width: 140px;
    text-align: center;
}

.cookie-modal .modal-content {
    max-width: 520px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option h3 {
    color: var(--gold);
    margin-bottom: 8px;
}

.cookie-option p {
    color: #bbb;
    font-size: 0.95rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: 0.3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.switch input:checked + .slider {
    background-color: var(--gold);
}

.switch input:checked + .slider:before {
    transform: translateX(22px);
}

.cookie-save {
    width: 100%;
    margin-top: 25px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--dark-gold);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        border-top: 2px solid var(--gold);
    }

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

    .burger {
        display: flex;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .quote-form {
        padding: 30px 20px;
    }

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

    .modal-content {
        margin: 20px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 45px 0;
    }

    section + section {
        padding-top: 25px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header p {
        margin-top: 12px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

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

    .mobile-contact-bar {
        display: flex;
        padding: 12px 24px;
        min-height: 90px;
    }

    .mobile-contact-item {
        flex-direction: row;
        gap: 12px;
        padding: 18px 15px;
        font-size: 1rem;
        letter-spacing: 0;
    }

    .mobile-contact-item i {
        font-size: 1.9rem;
    }

    .mobile-contact-text {
        font-weight: 700;
        text-transform: none;
    }
    
    .reviews-frame {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-section ul {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .cookie-banner {
        flex-direction: column;
        bottom: 10px;
        padding: 15px;
    }

    .cookie-actions {
        justify-content: center;
    }

    body {
        padding-bottom: 110px;
    }
}

/* ===== SCROLLBAR ===== */
