@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;600;700&display=swap');

/* ===== BASE & RESET ===== */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== VARIABLES ===== */
:root {
    --champagne: #F7E7CE;
    --champagne-light: #FFF5E6;
    --champagne-dark: #E6D4B8;
    --black: #0A0A0A;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --gold: #FFC107;
}

/* ===== TYPOGRAPHY ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--champagne);
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(10 10 10 / 67%);
	/*padding:15px;*/
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(247, 231, 206, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Logo stílus a kapcsolat oldalon */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: clamp(45px, 6vw, 70px);
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Reszponzív beállítások a kapcsolat oldalhoz */

/* Nagy desktop */
@media (min-width: 1400px) {
    .logo-img {
        height: 180px;
    }
}

/* Desktop */
@media (min-width: 1100px) and (max-width: 1399px) {
    .logo-img {
        height: 180px;
    }
}

/* Tablet landscape */
@media (min-width: 900px) and (max-width: 1099px) {
    .logo-img {
        height: 140px;
    }
}

/* Tablet portrait */
@media (min-width: 768px) and (max-width: 899px) {
    .logo-img {
        height: 140px;
    }
}

/* Mobile large */
@media (min-width: 600px) and (max-width: 767px) {
    .logo-img {
        height: 140px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
}

/* Mobile medium */
@media (min-width: 480px) and (max-width: 599px) {
    .logo-img {
        height: 140px;
    }
}

/* Mobile small */
@media (max-width: 479px) {
    .logo-img {
        height: 140px;
    }
    
    header {
        padding: 1rem clamp(0.938rem, 4vw, 1.25rem);
    }
}

/* Nagyon kis képernyők */
@media (max-width: 375px) {
    .logo-img {
        height: 140px;
    }
}
/* Desktop Navigation */
nav {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

nav a {
    color: var(--champagne);
    text-decoration: none;
    font-weight: 300;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--champagne);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--champagne);
    color: var(--black);
    padding: 0.75rem 1.875rem;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--champagne);
}

.cta-btn:hover {
    background: transparent;
    color: var(--champagne);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f7e7ce;
    border: 1px solid rgba(247, 231, 206, 0.08);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.mobile-menu-btn:active {
    transform: scale(0.98);
}

.mobile-menu-btn .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--champagne);
    position: relative;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-btn .bar::before,
.mobile-menu-btn .bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--champagne);
    transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.mobile-menu-btn .bar::before {
    top: -7px;
}

.mobile-menu-btn .bar::after {
    bottom: -7px;
}

.mobile-menu-btn.open .bar {
    background: transparent;
}

.mobile-menu-btn.open .bar::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.open .bar::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.4s ease;
    padding: 6.25rem 2.5rem 2.5rem;
    border-left: 1px solid rgba(247, 231, 206, 0.1);
}

.mobile-nav.active {
    right: 0;
    display: block;
}

.mobile-nav a {
    display: block;
    color: var(--champagne);
    text-decoration: none;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(247, 231, 206, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    padding-left: 1.25rem;
    color: var(--champagne-dark);
}

.mobile-nav .cta-btn {
    margin-top: 1.875rem;
    text-align: center;
    border-bottom: none;
    background: var(--champagne);
    color: var(--black);
    padding: 0.938rem 1.875rem;
    display: block;
    font-weight: 600;
    border: 2px solid var(--champagne);
}

.mobile-nav .cta-btn:hover {
    background: transparent;
    color: var(--champagne);
    padding-left: 1.875rem;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: clamp(5rem, 10vh, 8rem);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, var(--champagne) 35px, var(--champagne) 36px);
    z-index: 2;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.float-item {
    position: absolute;
    border: 1px solid rgba(247, 231, 206, 0.2);
    animation: float 20s infinite ease-in-out;
}

.float-item:nth-child(1) {
    width: clamp(150px, 30vw, 300px);
    height: clamp(150px, 30vw, 300px);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    width: clamp(100px, 20vw, 200px);
    height: clamp(100px, 20vw, 200px);
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.float-item:nth-child(3) {
    width: clamp(75px, 15vw, 150px);
    height: clamp(75px, 15vw, 150px);
    border-radius: 50%;
    bottom: 15%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 clamp(1.25rem, 5vw, 3.125rem);
}

.hero-subtitle {
    font-size: clamp(0.75rem, 2vw, 1rem);
    letter-spacing: clamp(2px, 0.5vw, 5px);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 10vw, 7.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.875rem;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--champagne-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.stars {
    position: relative;
    display: inline-block;
}

.stars::before,
.stars::after {
    content: '✨';
    position: absolute;
    animation: sparkle 2s ease-in-out infinite;
    opacity: 0;
}

.stars::before {
    left: -30px;
}

.stars::after {
    right: -30px;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

.hero-description {
    font-size: clamp(0.938rem, 2.5vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 3.125rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    padding: clamp(0.938rem, 2vw, 1.125rem) clamp(2.5rem, 5vw, 3.75rem);
    background: var(--champagne);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--champagne-dark);
    transition: left 0.4s ease;
    z-index: -1;
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(247, 231, 206, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTION STYLES ===== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-size: clamp(0.625rem, 1.5vw, 0.75rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champagne-dark);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 3.75rem;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--champagne) 0%, #fff 50%, var(--champagne) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: clamp(5rem, 15vw, 9.375rem) clamp(1.25rem, 5vw, 3.125rem);
    position: relative;
    background: var(--dark-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(2.5rem, 8vw, 5rem);
    align-items: center;
}

.about-text {
    line-height: 1.8;
}

.about-text p {
    font-size: clamp(0.938rem, 2vw, 1.125rem);
    margin-bottom: 1.563rem;
    opacity: 0.9;
    font-weight: 300;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    position: relative;
}

.about-img {
    height: clamp(200px, 30vw, 300px);
    background: linear-gradient(135deg, var(--champagne-dark) 0%, var(--champagne) 100%);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
    width: 100%;
}

.about-img:hover {
    transform: scale(1.05);
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.3);
    transition: opacity 0.3s ease;
}

.about-img:hover::after {
    opacity: 0;
}

/* ===== WHAT IS SECTION ===== */
.what-is-section {
    padding: clamp(5rem, 15vw, 9.375rem) clamp(1.25rem, 5vw, 3.125rem);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.what-is-section::before,
.what-is-section::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(247, 231, 206, 0.1);
    border-radius: 50%;
}

.what-is-section::before {
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    animation: pulse 15s infinite ease-in-out;
}

.what-is-section::after {
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    animation: float 20s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.05; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.what-is-section .section-title {
    background: linear-gradient(135deg, var(--champagne) 0%, #fff 50%, var(--champagne-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(247, 231, 206, 0.2);
}

.what-is-content {
    position: relative;
    z-index: 2;
}

.what-is-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(2.5rem, 8vw, 5rem);
    margin-top: 3.75rem;
    align-items: start;
}

.what-is-text {
    line-height: 1.9;
}

.what-is-text p {
    font-size: clamp(0.938rem, 2vw, 1.125rem);
    margin-bottom: 1.875rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 2;
    position: relative;
    padding-left: 1.875rem;
}

.what-is-text p::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--champagne);
    font-size: 1.25rem;
}

.what-is-text p:first-of-type {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
}

.what-is-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.563rem;
}

.feature-box {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    padding: clamp(1.875rem, 4vw, 2.188rem) clamp(1.563rem, 3vw, 1.875rem);
    border: 1px solid rgba(247, 231, 206, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 231, 206, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(247, 231, 206, 0.4);
    box-shadow: 0 15px 50px rgba(247, 231, 206, 0.2);
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
}

.feature-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(60px, 10vw, 70px);
    height: clamp(60px, 10vw, 70px);
    background: linear-gradient(135deg, rgba(247, 231, 206, 0.15) 0%, rgba(247, 231, 206, 0.05) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    border: 2px solid rgba(247, 231, 206, 0.2);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(247, 231, 206, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(247, 231, 206, 0); }
}

.feature-box:hover .feature-icon {
    animation: none;
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, var(--champagne) 0%, var(--champagne-dark) 100%);
    border-color: var(--champagne);
    box-shadow: 0 5px 20px rgba(247, 231, 206, 0.4);
}

.feature-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-box p {
    font-size: clamp(0.813rem, 1.5vw, 0.875rem);
    opacity: 0.8;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: clamp(5rem, 15vw, 9.375rem) clamp(1.25rem, 5vw, 3.125rem);
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(247, 231, 206, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 231, 206, 0.05) 0%, transparent 50%);
    animation: wave 20s ease-in-out infinite;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 231, 206, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-50%) translateY(-20px); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--champagne);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.25rem, 4vw, 2.5rem);
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--dark-gray);
    padding: clamp(2.5rem, 6vw, 3.75rem) clamp(1.875rem, 4vw, 2.5rem);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(247, 231, 206, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--champagne-dark) 0%, var(--champagne) 100%);
    transition: height 0.5s ease;
    z-index: 1;
}

.service-card:hover::before {
    height: 100%;
}

.service-card-content {
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(70px, 12vw, 90px);
    height: clamp(70px, 12vw, 90px);
    background: rgba(247, 231, 206, 0.1);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    background: rgba(247, 231, 206, 0.3);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    opacity: 0.1;
    line-height: 1;
    margin-bottom: 1.25rem;
    transition: all 0.5s ease;
}

.service-card:hover .service-number {
    opacity: 0.3;
    color: var(--black);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.563rem);
    font-weight: 900;
    transition: color 0.5s ease;
    margin-bottom: 1rem;
	text-align:center;
}

.service-card:hover .service-title {
    color: var(--black);
}

.service-description {
    font-size: clamp(0.813rem, 1.5vw, 0.938rem);
    line-height: 1.7;
    opacity: 0.8;
    font-weight: 300;
    transition: color 0.5s ease;
}

.service-card:hover .service-description {
    color: var(--black);
    opacity: 0.9;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: clamp(5rem, 15vw, 9.375rem) clamp(1.25rem, 5vw, 3.125rem);
    background: var(--dark-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 1.25rem;
    margin-top: 5rem;
}

.gallery-item {
    height: clamp(250px, 40vw, 350px);
    background: linear-gradient(135deg, var(--champagne-dark) 0%, var(--champagne) 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.4) 100%);
    opacity: 0.7;
    z-index: 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    transform: translateY(0);
}

.gallery-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(247, 231, 206, 0.9), rgba(230, 212, 184, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 800"><rect fill="%23F7E7CE" width="400" height="800"/><circle cx="200" cy="200" r="120" fill="%23E6D4B8" opacity="0.4"/><circle cx="100" cy="500" r="80" fill="%23E6D4B8" opacity="0.3"/><circle cx="300" cy="650" r="100" fill="%23E6D4B8" opacity="0.35"/></svg>');
    background-size: cover;
    background-position: center;
}

.gallery-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(230, 212, 184, 0.9), rgba(247, 231, 206, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23E6D4B8" width="400" height="400"/><path d="M0,200 Q100,100 200,200 T400,200 L400,400 L0,400 Z" fill="%23F7E7CE" opacity="0.5"/><path d="M0,150 Q100,50 200,150 T400,150 L400,300 L0,300 Z" fill="%23F7E7CE" opacity="0.3"/></svg>');
    background-size: cover;
}

.gallery-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(247, 231, 206, 0.85), rgba(230, 212, 184, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23F7E7CE" width="400" height="400"/><rect x="50" y="50" width="300" height="300" fill="%23E6D4B8" opacity="0.3" transform="rotate(45 200 200)"/><circle cx="200" cy="200" r="100" fill="%23E6D4B8" opacity="0.2"/></svg>');
    background-size: cover;
}

.gallery-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(230, 212, 184, 0.85), rgba(247, 231, 206, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 800"><rect fill="%23E6D4B8" width="400" height="800"/><circle cx="200" cy="150" r="100" fill="%23F7E7CE" opacity="0.4"/><circle cx="250" cy="400" r="120" fill="%23F7E7CE" opacity="0.3"/><circle cx="150" cy="650" r="90" fill="%23F7E7CE" opacity="0.35"/></svg>');
    background-size: cover;
}

.gallery-item:nth-child(5) {
    background: linear-gradient(135deg, rgba(247, 231, 206, 0.9), rgba(230, 212, 184, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23F7E7CE" width="400" height="400"/><polygon points="200,50 350,350 50,350" fill="%23E6D4B8" opacity="0.3"/><circle cx="200" cy="200" r="80" fill="%23E6D4B8" opacity="0.25"/></svg>');
    background-size: cover;
}

.gallery-item:nth-child(6) {
    background: linear-gradient(135deg, rgba(230, 212, 184, 0.9), rgba(247, 231, 206, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23E6D4B8" width="400" height="400"/><rect x="100" y="100" width="200" height="200" fill="%23F7E7CE" opacity="0.4"/><circle cx="100" cy="100" r="60" fill="%23F7E7CE" opacity="0.3"/><circle cx="300" cy="300" r="60" fill="%23F7E7CE" opacity="0.3"/></svg>');
    background-size: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 1.875rem;
    left: 1.875rem;
    right: 1.875rem;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1) rotate(90deg);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--champagne);
    font-weight: 300;
    z-index: 4;
    opacity: 1;
    pointer-events: none;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.gallery-category {
    font-size: clamp(0.625rem, 1.5vw, 0.75rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: clamp(5rem, 15vw, 9.375rem) clamp(1.25rem, 5vw, 3.125rem);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(247, 231, 206, 0.05);
    border-radius: 50%;
}

.stats-section::before {
    top: -300px;
    left: -300px;
    width: 600px;
    height: 600px;
    animation: float 25s infinite ease-in-out;
}

.stats-section::after {
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    animation: float 30s infinite ease-in-out reverse;
}

.stats-section .section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    text-align: center;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--champagne) 0%, #fff 50%, var(--champagne-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.stats-subtitle {
    text-align: center;
    font-size: clamp(0.875rem, 2vw, 1rem);
    opacity: 0.7;
    margin-bottom: 3.75rem;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: clamp(1.875rem, 4vw, 2.5rem);
    margin-top: 3.75rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: clamp(2.5rem, 6vw, 3.75rem) clamp(1.875rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, rgba(247, 231, 206, 0.03) 0%, rgba(247, 231, 206, 0.01) 100%);
    border: 1px solid rgba(247, 231, 206, 0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--champagne) 0%, var(--gold) 100%);
    transition: width 0.6s ease;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(247, 231, 206, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.stat-item:hover::before {
    width: 100%;
}

.stat-item:hover::after {
    width: 300px;
    height: 300px;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: rgba(247, 231, 206, 0.3);
    box-shadow: 0 20px 60px rgba(247, 231, 206, 0.2);
    background: linear-gradient(135deg, rgba(247, 231, 206, 0.05) 0%, rgba(247, 231, 206, 0.02) 100%);
}

.stat-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--champagne);
    margin-bottom: 1.25rem;
    display: inline-block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(247, 231, 206, 0.3));
    transition: all 0.5s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2) rotateY(360deg);
    color: var(--gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.938rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.stat-item:hover .stat-number {
    transform: scale(1.15);
}

.stat-label {
    font-size: clamp(0.813rem, 1.5vw, 0.938rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    opacity: 1;
    letter-spacing: 3px;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: clamp(5rem, 12vw, 7.5rem) clamp(1.25rem, 5vw, 3.125rem);
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.reviews-section .section-label {
    color: var(--gold);
    display: inline-block;
    font-weight: 600;
}

.reviews-section .section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
    background: none;
    -webkit-text-fill-color: initial;
}

.reviews-section .section-subtitle {
    color: #999;
    font-size: clamp(0.875rem, 2vw, 1rem);
    max-width: 700px;
    margin: 0 auto 5rem;
    line-height: 1.7;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.reviews-slider {
    overflow: hidden;
    position: relative;
    padding-bottom: 5rem;
}

.reviews-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: clamp(1.25rem, 3vw, 1.875rem);
    justify-content: flex-start;
}

.review-card {
    background: #fff;
    padding: clamp(2.5rem, 5vw, 3.125rem);
    border: 1px solid #e8e8e8;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.review-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.quote-mark {
    position: absolute;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--gold);
    line-height: 0.7;
    font-weight: 900;
    opacity: 1;
    top: 15px;
    right: 25px;
}

.review-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
}

.review-text {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.8;
    margin-bottom: 1.875rem;
    color: #666;
    font-weight: 400;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dotted #ccc;
    padding-top: 1.25rem;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.938rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: clamp(0.813rem, 1.5vw, 0.875rem);
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.author-date {
    display: block;
    font-size: clamp(0.75rem, 1.5vw, 0.813rem);
    color: #999;
    font-weight: 500;
}

.slider-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 1.875rem auto 0;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.slider-dots {
    display: flex;
    gap: 0.625rem;
    order: 2;
    flex: 1;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    width: 25px;
    border-radius: 5px;
}

.slider-controls {
    display: flex;
    gap: 0.938rem;
    order: 3;
}

.slider-control-btn {
    background: #e0e0e0;
    color: #555;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.938rem, 2vw, 1.125rem);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-control-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slider-label {
    font-size: clamp(0.625rem, 1.5vw, 0.75rem);
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 0;
    font-weight: 600;
    order: 3;
}

.more-about-btn {
    background: var(--gold);
    color: var(--black);
    padding: clamp(0.813rem, 2vw, 0.938rem) clamp(1.875rem, 4vw, 2.188rem);
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: clamp(0.75rem, 1.5vw, 0.813rem);
    cursor: pointer;
    transition: all 0.3s ease;
    order: 1;
}

.more-about-btn:hover {
    background: #e89500;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--champagne);
    padding: clamp(3.75rem, 8vw, 5rem) clamp(1.25rem, 5vw, 3.125rem) 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--champagne-dark), transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(2.5rem, 5vw, 3.75rem);
    margin-bottom: 3.75rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1.563rem;
    color: var(--champagne);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--champagne-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    font-size: clamp(0.813rem, 1.5vw, 0.938rem);
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.563rem;
}

.footer-social {
    display: flex;
    gap: 0.938rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(247, 231, 206, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--champagne);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.938rem, 2vw, 1.125rem);
}

.social-icon:hover {
    background: var(--champagne);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.938rem;
}

.footer-links a {
    color: var(--champagne);
    text-decoration: none;
    font-size: clamp(0.813rem, 1.5vw, 0.938rem);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 0.625rem;
}

.footer-contact p {
    font-size: clamp(0.813rem, 1.5vw, 0.938rem);
    opacity: 0.8;
    margin-bottom: 0.938rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-contact i {
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(247, 231, 206, 0.1);
    padding: 1.875rem 0;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    opacity: 0.7;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-legal {
    display: flex;
    gap: 1.563rem;
    flex-wrap: wrap;
}

.footer-legal a,
.cookie-settings-link {
    color: var(--champagne);
    text-decoration: none;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover,
.cookie-settings-link:hover {
    opacity: 1;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--champagne);
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transition: bottom 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: clamp(1.875rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 1.875rem);
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(1.563rem, 4vw, 2.5rem);
    align-items: center;
}

.cookie-icon {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--champagne);
    animation: cookieFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(247, 231, 206, 0.3));
}

@keyframes cookieFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(15deg); }
}

.cookie-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 0.75rem;
    color: var(--champagne);
}

.cookie-text p {
    font-size: clamp(0.813rem, 1.5vw, 0.938rem);
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
}

.cookie-actions {
    display: flex;
    gap: 0.938rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: clamp(0.813rem, 2vw, 0.875rem) clamp(1.563rem, 3vw, 1.75rem);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(0.688rem, 1.5vw, 0.813rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cookie-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cookie-btn-primary {
    background: var(--champagne);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(247, 231, 206, 0.3);
}

.cookie-btn-primary:hover {
    background: var(--champagne-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(247, 231, 206, 0.5);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--champagne);
    border: 2px solid var(--champagne);
}

.cookie-btn-secondary:hover {
    background: rgba(247, 231, 206, 0.1);
    border-color: var(--champagne-light);
}

.cookie-btn-outline {
    background: transparent;
    color: var(--champagne);
    border: 2px solid rgba(247, 231, 206, 0.3);
}

.cookie-btn-outline:hover {
    border-color: var(--champagne);
    background: rgba(247, 231, 206, 0.05);
}

/* ===== COOKIE MODAL ===== */
.cookie-customize-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 1.25rem;
}

.cookie-customize-modal.active {
    opacity: 1;
    visibility: visible;
}

.cookie-customize-content {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--champagne);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(100px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.cookie-customize-header {
    padding: clamp(1.875rem, 4vw, 2.5rem);
    border-bottom: 1px solid rgba(247, 231, 206, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(247, 231, 206, 0.03) 0%, transparent 100%);
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cookie-customize-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--champagne);
}

.cookie-close {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(247, 231, 206, 0.3);
    background: transparent;
    color: var(--champagne);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-close:hover {
    background: var(--champagne);
    color: var(--black);
    transform: rotate(90deg);
    border-color: var(--champagne);
}

.cookie-customize-body {
    padding: clamp(1.875rem, 4vw, 2.5rem);
}

.cookie-description {
    font-size: clamp(0.875rem, 2vw, 1rem);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    padding: 1.25rem;
    background: rgba(247, 231, 206, 0.03);
    border-left: 3px solid var(--champagne);
}

.cookie-category {
    background: rgba(247, 231, 206, 0.03);
    border: 1px solid rgba(247, 231, 206, 0.15);
    padding: clamp(1.25rem, 3vw, 1.875rem);
    margin-bottom: 1.563rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cookie-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 231, 206, 0.05), transparent);
    transition: left 0.6s ease;
}

.cookie-category:hover::before {
    left: 100%;
}

.cookie-category:hover {
    border-color: rgba(247, 231, 206, 0.3);
    background: rgba(247, 231, 206, 0.05);
    transform: translateX(5px);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cookie-category-title {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
}

.cookie-category-title i {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--champagne);
    margin-top: 0.313rem;
    filter: drop-shadow(0 0 10px rgba(247, 231, 206, 0.3));
    flex-shrink: 0;
}

.cookie-category-title h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin-bottom: 0.5rem;
    color: var(--champagne);
}

.cookie-category-title p {
    font-size: clamp(0.813rem, 1.5vw, 0.875rem);
    opacity: 0.7;
    line-height: 1.5;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 34px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(247, 231, 206, 0.2);
    transition: 0.4s;
    border-radius: 34px;
    border: 2px solid rgba(247, 231, 206, 0.3);
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 2px;
    bottom: 2px;
    background-color: var(--champagne);
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--champagne);
    border-color: var(--champagne);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(36px);
    background-color: var(--black);
}

.cookie-switch.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-switch.disabled .cookie-slider {
    cursor: not-allowed;
}

.cookie-details {
    padding-left: clamp(2.5rem, 5vw, 3.25rem);
    font-size: clamp(0.813rem, 1.5vw, 0.875rem);
    opacity: 0.7;
    line-height: 1.8;
}

.cookie-details p {
    margin-bottom: 0.625rem;
}

.cookie-details strong {
    color: var(--champagne);
    opacity: 1;
}

.cookie-customize-footer {
    padding: clamp(1.563rem, 3vw, 1.875rem) clamp(1.875rem, 4vw, 2.5rem);
    border-top: 1px solid rgba(247, 231, 206, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 0.938rem;
    background: rgba(247, 231, 206, 0.02);
    flex-wrap: wrap;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop */
@media (min-width: 1400px) {
    .section-container,
    .header-content,
    .footer-content,
    .footer-bottom-content,
    .reviews-container,
    .cookie-content {
        padding-left: 3.125rem;
        padding-right: 3.125rem;
    }
}

/* Desktop/Tablet Landscape */
@media (max-width: 1100px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: inline-flex;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Tablet Portrait */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .what-is-grid {
        grid-template-columns: 1fr;
    }
    
    .what-is-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .cookie-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .slider-bottom {
        justify-content: center;
    }
    
    .more-about-btn,
    .slider-label {
        width: 100%;
        text-align: center;
    }
}

/* Mobile Medium */
@media (max-width: 600px) {
    .what-is-features {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-controls,
    .slider-label {
        display: none;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .cookie-consent {
        padding: 1.25rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===== UTILITY CLASSES ===== */
.content-section {
    padding: clamp(5rem, 15vw, 9.375rem) clamp(1.25rem, 5vw, 3.125rem);
    background: var(--dark-gray);
}

/* ===== ACCESSIBILITY ===== */
.mobile-nav a:focus,
.mobile-nav button:focus,
.mobile-menu-btn:focus,
.cookie-btn:focus,
.cookie-close:focus,
.slider-control-btn:focus,
nav a:focus,
.cta-btn:focus {
    outline: 3px solid rgba(255, 193, 7, 0.5);
    outline-offset: 3px;
}

/* ===== PRINT STYLES ===== */
@media print {
    header,
    .mobile-menu-btn,
    .mobile-nav,
    .overlay,
    .cookie-consent,
    .cookie-customize-modal,
    .floating-elements,
    .hero-pattern {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title,
    .hero-title,
    .logo {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
}