:root {
    --red-primary: #E31E24;
    --blue-primary: #0047AB;
    --gold: #C9A961;
    --black: #0D0C0C;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
    background: var(--black);
}

/* ==================== HEADER ==================== */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #000000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar { padding: 0; }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a { text-decoration: none; display: block; }

.logo-img {
    height: 90px;
    width: auto;
    filter: invert(1);
    transition: transform 0.3s ease;
}

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

.logo-amd {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #E31E24, #C41E3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-coiffure {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
}

.nav-menu a:hover, .nav-menu a.active { color: #fff; }

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red-primary), var(--blue-primary));
    transition: width 0.3s;
}

.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

/* Language Selector */
.language-selector { position: relative; }

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 10px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 15px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
    font-size: 14px;
}

.lang-option:hover { background: rgba(255, 255, 255, 0.1); }
.lang-option .flag { font-size: 20px; }

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 3px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* ==================== HERO ==================== */
.hero-video {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.2);
    object-fit: cover;
    filter: blur(10px);
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title-main {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

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

.btn-hero-primary, .btn-hero-secondary {
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 3px solid #fff;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary {
    background: rgba(227, 30, 36, 0.9);
    color: #fff;
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.5);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 32px;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

/* ==================== PAGE HEADER ==================== */
.page-header-video {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.page-header-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-header-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.2);
    object-fit: cover;
    filter: blur(10px);
}

.page-header-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.75), rgba(0, 71, 171, 0.75));
}

.page-header-overlay.dark-only {
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-header-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--red-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

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

.section-title-left {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.2;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images { position: relative; }

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: 30px;
    left: -30px;
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.3);
}

.exp-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-weight: 500;
}

.about-feature i {
    color: var(--gold);
    font-size: 18px;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section.stats-with-bg {
    background: none;
}

.stats-section.stats-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1920') center/cover no-repeat;
    filter: blur(5px);
    transform: scale(1.1);
    z-index: 0;
}

.stats-section.stats-with-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item { color: #fff; }

.stat-item i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ==================== SERVICES ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

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

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 50px;
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    color: var(--black);
    flex-shrink: 0;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    flex: 1;
}

.service-card .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--red-primary);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 15px;
}

/* ==================== GALLERY ==================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--black);
    background: transparent;
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    border-color: transparent;
    color: #fff;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.8), rgba(0, 71, 171, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-overlay i {
    color: #fff;
    font-size: 40px;
}

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

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

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox-close:hover { transform: rotate(90deg); }

/* ==================== PRODUCTS ==================== */
.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.produit-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.produit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.produit-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.produit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.produit-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--red-primary);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.produit-badge.new { background: var(--blue-primary); }

.produit-content { padding: 25px; }

.produit-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--black);
}

.produit-content > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.produit-features {
    list-style: none;
    margin-bottom: 20px;
}

.produit-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    color: #555;
    font-size: 14px;
}

.produit-features i { color: var(--gold); }

.produit-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.produit-price .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--red-primary);
    letter-spacing: 2px;
}

.produit-price .volume {
    color: #999;
    font-size: 14px;
}

.produits-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-box {
    text-align: center;
    padding: 30px;
}

.info-box i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.info-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.info-box p {
    color: #666;
    line-height: 1.6;
}

/* ==================== RATING HERO (AVIS) ==================== */
.rating-hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.rating-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.rating-main-card {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.rating-big {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.rating-number-huge {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    color: #0D0C0C;
}

.rating-max { font-size: 28px; color: #999; }

.rating-stars-huge {
    font-size: 28px;
    color: var(--gold);
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 3px;
    perspective: 500px;
}

.rating-stars-huge .star-3d {
    width: 45px;
    height: 45px;
    object-fit: contain;
    animation: starShine3D 10s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(201, 169, 97, 0.6));
    transform-style: preserve-3d;
}

.rating-stars-huge .star-3d.half {
    opacity: 0.5;
}

.rating-stars-huge .star-3d:nth-child(1) { animation-delay: 0s; }
.rating-stars-huge .star-3d:nth-child(2) { animation-delay: 0.15s; }
.rating-stars-huge .star-3d:nth-child(3) { animation-delay: 0.3s; }
.rating-stars-huge .star-3d:nth-child(4) { animation-delay: 0.45s; }
.rating-stars-huge .star-3d:nth-child(5) { animation-delay: 0.6s; }

@keyframes starShine3D {
    0%, 85%, 100% {
        transform: rotateY(0deg) scale(1);
        filter: drop-shadow(0 0 8px rgba(201, 169, 97, 0.6));
    }
    90% {
        transform: rotateY(180deg) scale(1.15);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    }
    95% {
        transform: rotateY(360deg) scale(1);
        filter: drop-shadow(0 0 8px rgba(201, 169, 97, 0.6));
    }
}

.rating-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    margin-bottom: 25px;
}

.google-icon { width: 20px; height: 20px; }

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4285f4;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-google:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4);
}

.rating-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-bar-item {
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.rating-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
}

.rating-bar {
    height: 10px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #e6c76f);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fillBar {
    from { width: 0; }
    to { width: var(--fill-width); }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    color: #fff;
}

.testimonial-quote {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 15px;
}

.testimonial-card.featured .testimonial-quote { color: rgba(255, 255, 255, 0.3); }

.testimonial-card p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.testimonial-card.featured .author-avatar { background: rgba(255, 255, 255, 0.2); }

.author-info strong { display: block; margin-bottom: 3px; }
.author-info span { font-size: 13px; opacity: 0.7; }

.verified {
    color: #4285f4;
    margin-left: auto;
    font-size: 20px;
}

.testimonial-card.featured .verified { color: rgba(255, 255, 255, 0.8); }

/* ==================== REVIEW CTA ==================== */
.review-cta-section {
    padding: 50px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.review-cta-section.cta-with-bg {
    background: none;
}

.review-cta-section.cta-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.1);
    z-index: 0;
}

.review-cta-section.cta-with-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.review-cta-section .container {
    position: relative;
    z-index: 2;
}

.review-cta-section.cta-with-bg .review-cta-card {
    background: transparent;
    padding: 30px;
    backdrop-filter: none;
}

.review-cta-card {
    background: linear-gradient(135deg, rgba(13, 12, 12, 0.9), rgba(42, 42, 42, 0.9));
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(10px);
}

.review-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
}

.review-cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.review-cta-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

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

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-review.google { background: #4285f4; color: #fff; }
.btn-review.facebook { background: #1877f2; color: #fff; }

.btn-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
    padding: 80px 0;
    background: #fff;
}

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

.trust-item {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.trust-item i {
    font-size: 45px;
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.trust-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--black);
}

.trust-item p { color: #666; font-size: 14px; }

/* ==================== QUICK CONTACT ==================== */
.quick-contact {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.quick-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--black);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--red-primary), var(--blue-primary));
}

.quick-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.quick-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.quick-card.phone .quick-icon { background: linear-gradient(135deg, var(--red-primary), #c41e3a); }
.quick-card.whatsapp .quick-icon { background: linear-gradient(135deg, #25d366, #128c7e); }
.quick-card.location .quick-icon { background: linear-gradient(135deg, var(--blue-primary), #0066cc); }

.quick-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.quick-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.quick-hint { font-size: 13px; color: #999; }

/* ==================== CONTACT MAIN ==================== */
.contact-main {
    padding: 100px 0;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--black);
    margin-bottom: 15px;
}

.info-header p { color: #666; line-height: 1.7; }

.hours-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hours-header i { font-size: 24px; color: var(--red-primary); }

.hours-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: #fff;
    border-radius: 10px;
}

.hours-row.closed { background: #fff5f5; }
.hours-row.closed .time { color: var(--red-primary); font-weight: 600; }

.hours-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #27ae60;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text { font-weight: 600; color: var(--black); }

.social-connect h4 { margin-bottom: 15px; color: var(--black); }

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

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
}

.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.whatsapp { background: #25d366; }
.social-icon.tiktok { background: #000; }

.social-icon:hover { transform: translateY(-5px) scale(1.1); }

/* ==================== CONTACT FORM ==================== */
.contact-form-panel {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 25px;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 10px;
}

.form-header p { color: #666; margin-bottom: 30px; }

.modern-form .form-row { margin-bottom: 25px; }

.modern-form .form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
}

.form-field label i { color: var(--red-primary); }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
    background: #fff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.3);
}

/* ==================== MAP SECTION ==================== */
.map-section-full {
    position: relative;
    background: #f8f9fa;
}

.map-overlay-card {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 10;
    max-width: 300px;
}

.salon-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.map-card-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.map-card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-directions:hover { background: var(--red-primary); }

/* ==================== FAQ ==================== */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i { font-size: 24px; color: var(--red-primary); }

.faq-question h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--black);
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    padding-left: 40px;
}

/* ==================== CTA ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    text-align: center;
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section.cta-with-bg {
    background: none;
}

.cta-section.cta-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.1);
    z-index: 0;
}

.cta-section.cta-with-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--black);
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4);
}

/* ==================== FOOTER ==================== */
.footer {
    background: #000000;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--red-primary), var(--blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p { color: #999; line-height: 1.8; }

.footer ul { list-style: none; }

.footer ul li {
    margin-bottom: 12px;
    color: #999;
}

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

.footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover { color: #fff; }

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    border-color: transparent;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .about-grid, .contact-wrapper, .rating-hero-grid { grid-template-columns: 1fr; }
    .stats-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid, .quick-cards, .faq-grid { grid-template-columns: 1fr; }
    .map-overlay-card { position: relative; top: auto; left: auto; transform: none; margin: 20px; max-width: 100%; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        padding: 30px 0;
        transition: left 0.3s;
        gap: 0;
        text-align: center;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { padding: 15px 0; }
    .language-selector { display: none; }
    .hero-title { font-size: 42px; }
    .page-header-content h1 { font-size: 36px; }
    .about-features, .stats-grid, .trust-grid { grid-template-columns: 1fr; }
    .modern-form .form-row.two-cols { grid-template-columns: 1fr; }
    .contact-form-panel { padding: 30px 20px; }
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-top: 3px solid var(--red-primary);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-text i {
    font-size: 32px;
    color: var(--gold);
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    color: white;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
}

.cookie-btn.decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer Legal Links */
.footer-legal {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== FLYER SECTION ==================== */
.flyer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.flyer-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--black);
    margin-bottom: 10px;
}

.flyer-section .section-header p {
    color: #666;
    font-size: 18px;
}

.flyer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.flyer-image-wrapper {
    max-width: 400px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.flyer-image-wrapper:hover {
    transform: scale(1.02);
}

.flyer-image {
    width: 100%;
    height: auto;
    display: block;
}

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

.btn-share-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
}

.btn-share-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.btn-share-main i {
    font-size: 18px;
}

.btn-download-flyer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--black);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-download-flyer:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ==================== SHARE MODAL ==================== */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.share-modal.active {
    opacity: 1;
    visibility: visible;
}

.share-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.share-modal.active .share-modal-content {
    transform: scale(1);
}

.share-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: all 0.3s;
}

.share-modal-close:hover {
    background: var(--red-primary);
    color: white;
}

.share-modal-content h3 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--black);
}

.share-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-option i {
    font-size: 28px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s;
}

.share-option:hover i {
    transform: scale(1.1);
}

.share-option span {
    font-size: 11px;
    color: #333;
    font-weight: 500;
}

.share-option.whatsapp i { background: #25D366; }
.share-option.facebook i { background: #1877F2; }
.share-option.messenger i { background: linear-gradient(135deg, #00B2FF, #006AFF); }
.share-option.twitter i { background: #1DA1F2; }
.share-option.telegram i { background: #0088cc; }
.share-option.email i { background: #EA4335; }
.share-option.copy i { background: var(--black); }

.share-option:hover {
    background: #f5f5f5;
}

/* Toast notification */
.share-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--black);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 14px;
    z-index: 10001;
    opacity: 0;
    transition: all 0.3s ease;
}

.share-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@media (max-width: 480px) {
    .share-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .share-modal-content {
        padding: 30px 20px;
    }
    
    .flyer-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-share-main,
    .btn-download-flyer {
        width: 100%;
        justify-content: center;
    }
}
