/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --dark-brown: #654321;
    --light-brown: #DEB887;
    --cream: #F5E6D3;
    --text-dark: #2C1810;
    --text-light: #5C4033;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --border-color: #E0D5C7;
    
    /* Gradient colors */
    --gradient-primary: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    --gradient-secondary: linear-gradient(135deg, #654321 0%, #8B4513 100%);
    --gradient-light: linear-gradient(135deg, #F5E6D3 0%, #DEB887 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(139, 69, 19, 0.7) 50%, rgba(44, 24, 16, 0.85) 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header:hover::after {
    transform: scaleX(1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo:hover {
    transform: translateY(-2px);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    border-radius: 5px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section - Premium Redesign */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: none;
    overflow: hidden;
    isolation: isolate;
}

/* Background Layers */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-1 {
    background: linear-gradient(135deg, #1a0f08 0%, #2c1810 50%, #1a0f08 100%);
    animation: bgShift1 15s ease infinite;
}

.hero-bg-2 {
    background: linear-gradient(135deg, #654321 0%, #8b4513 50%, #654321 100%);
    opacity: 0.3;
    animation: bgShift2 20s ease infinite;
}

.hero-bg-3 {
    background: radial-gradient(circle at 30% 50%, rgba(139, 69, 19, 0.4) 0%, transparent 50%);
    animation: bgShift3 25s ease infinite;
}

@keyframes bgShift1 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

@keyframes bgShift2 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(-2deg); }
}

@keyframes bgShift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

/* Geometric Elements - Subtle Background Decoration */
.hero-geometric {
    position: absolute;
    z-index: 2;
    opacity: 0.08;
    border: 1px solid rgba(222, 184, 135, 0.2);
    pointer-events: none;
}

.hero-geo-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.15) 0%, transparent 70%);
    animation: rotateGeo 40s linear infinite;
}

.hero-geo-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    transform: rotate(45deg);
    border-radius: 20px;
    animation: rotateGeo 35s linear infinite reverse;
}

.hero-geo-3 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 5%;
    transform: rotate(30deg);
    border-radius: 10px;
    opacity: 0.05;
    animation: floatGeo 25s ease-in-out infinite;
}

@keyframes rotateGeo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes floatGeo {
    0%, 100% { transform: translateY(0) rotate(30deg); }
    50% { transform: translateY(-30px) rotate(30deg); }
}

/* Floating Particles - Subtle Background Effect */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(222, 184, 135, 0.35);
    border-radius: 50%;
    animation: floatParticle 20s infinite;
}

.particle:nth-child(1) {
    left: 8%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 88%;
    animation-delay: 4s;
}

.particle:nth-child(3) {
    left: 12%;
    animation-delay: 8s;
}

.particle:nth-child(4) {
    left: 92%;
    animation-delay: 12s;
}

.particle:nth-child(5) {
    left: 5%;
    animation-delay: 16s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes taglineSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Container */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
    isolation: isolate;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg-image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    filter: brightness(0.7) contrast(1.1);
    will-change: transform;
}

.hero-slide.active .slide-bg-image {
    transform: scale(1);
    filter: brightness(0.75) contrast(1.15);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 15, 8, 0.9) 0%, 
        rgba(44, 24, 16, 0.85) 25%,
        rgba(101, 67, 33, 0.8) 50%,
        rgba(139, 69, 19, 0.75) 75%,
        rgba(26, 15, 8, 0.9) 100%);
    z-index: 1;
}

/* Main Content Layout - Following Design Standards */
.hero-main-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2.5vw, 80px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content-container {
    max-width: clamp(100%, 60vw, 800px);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-tagline {
    display: flex;
    gap: 12px;
    margin-bottom: clamp(16px, 2vh, 32px);
}

.tagline-word {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(222, 184, 135, 0.9);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(222, 184, 135, 0.25);
    border-radius: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: taglineSlide 0.8s ease forwards;
}

.tagline-word:nth-child(1) {
    animation-delay: 0.3s;
}

.tagline-word:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes taglineSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 clamp(20px, 2.5vh, 32px) 0;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.title-word {
    display: inline-block;
    margin-right: 8px;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.title-word[data-word="1"] {
    animation-delay: 0.6s;
}

.title-word[data-word="2"] {
    animation-delay: 0.8s;
}

.title-word[data-word="3"] {
    animation-delay: 1s;
}

.title-highlight {
    background: linear-gradient(135deg, #DEB887 0%, #F5E6D3 50%, #DEB887 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: clamp(100%, 53vw, 640px);
    margin: 0 0 clamp(24px, 3vh, 40px) 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 1s forwards;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 clamp(32px, 4vh, 56px) 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.5s ease;
    z-index: -1;
}

.hero-cta-primary:hover::before {
    left: 0;
}

.hero-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.5);
}

.cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover .cta-arrow {
    transform: translateX(5px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.hero-stats {
    display: flex;
    gap: clamp(24px, 4vw, 64px);
    margin: 0;
    padding-top: clamp(24px, 3vh, 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.4s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: clamp(0.75rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}


/* Controls */
.hero-controls-wrapper {
    position: absolute;
    bottom: clamp(60px, 8vh, 100px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 10;
}

.hero-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-control-btn svg {
    width: 24px;
    height: 24px;
}

.hero-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.hero-slide-counter {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    min-width: 64px;
    justify-content: center;
}

.current-slide {
    font-size: 1.25rem;
    font-weight: 700;
}

.slide-divider {
    opacity: 0.4;
    font-size: 0.875rem;
}

.total-slides {
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Progress Indicators */
.hero-progress-indicators {
    position: absolute;
    bottom: clamp(16px, 3vh, 32px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.progress-indicator {
    width: 64px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.progress-indicator:hover {
    background: rgba(255, 255, 255, 0.4);
}

.progress-indicator.active {
    background: rgba(255, 255, 255, 0.5);
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.progress-indicator.active .progress-bar {
    animation: progressFill 5s linear;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 100%; }
}


/* Responsive Hero - Full Coverage for All Resolutions */

/* Large Desktop (1920px and above - FullHD) */
@media (min-width: 1920px) {
    .hero {
        min-height: 900px;
        height: 100vh;
    }
    
    .hero-main-content {
        max-width: 1400px;
        padding: 0 80px;
    }
    
    .hero-content-container {
        max-width: 800px;
    }
    
    .hero-main-title {
        font-size: 5rem;
        margin-bottom: 32px;
    }
    
    .hero-description {
        font-size: 1.375rem;
        margin-bottom: 40px;
        max-width: 700px;
    }
    
    .hero-cta-group {
        margin-bottom: 56px;
    }
    
    .hero-stats {
        gap: 64px;
        padding-top: 40px;
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .hero-controls-wrapper {
        bottom: 120px;
    }
    
    .hero-progress-indicators {
        bottom: 40px;
    }
    
    .hero-control-btn {
        width: 56px;
        height: 56px;
    }
    
    .progress-indicator {
        width: 80px;
        height: 4px;
    }
}

/* Desktop (1600px - 1919px) */
@media (min-width: 1600px) and (max-width: 1919px) {
    .hero {
        min-height: 850px;
        height: 100vh;
    }
    
    .hero-main-content {
        max-width: 1300px;
        padding: 0 60px;
    }
    
    .hero-content-container {
        max-width: 760px;
    }
    
    .hero-main-title {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
        max-width: 680px;
    }
    
    .hero-stats {
        gap: 56px;
    }
    
    .hero-controls-wrapper {
        bottom: 100px;
    }
    
    .hero-progress-indicators {
        bottom: 32px;
    }
}

/* Standard Desktop (1440px - 1599px) */
@media (min-width: 1440px) and (max-width: 1599px) {
    .hero {
        min-height: 800px;
        height: 100vh;
    }
    
    .hero-main-content {
        max-width: 1200px;
        padding: 0 48px;
    }
    
    .hero-content-container {
        max-width: 720px;
    }
    
    .hero-controls-wrapper {
        bottom: 90px;
    }
    
    .hero-progress-indicators {
        bottom: 28px;
    }
}

/* Medium Desktop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .hero {
        min-height: 750px;
        height: 100vh;
    }
    
    .hero-main-content {
        max-width: 1100px;
        padding: 0 40px;
    }
    
    .hero-content-container {
        max-width: 680px;
    }
    
    .hero-main-title {
        font-size: 3.75rem;
    }
    
    .hero-controls-wrapper {
        bottom: 80px;
    }
    
    .hero-progress-indicators {
        bottom: 24px;
    }
}

/* Small Desktop / Large Tablet (968px - 1199px) */
@media (min-width: 968px) and (max-width: 1199px) {
    .hero {
        min-height: 700px;
    }
    
    .hero-main-content {
        max-width: 1000px;
        padding: 0 32px;
    }
    
    .hero-content-container {
        max-width: 640px;
    }
    
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
}

/* Tablet (768px - 967px) */
@media (min-width: 768px) and (max-width: 967px) {
    .hero {
        min-height: 650px;
    }
    
    .hero-main-content {
        padding: 0 24px;
        justify-content: center;
    }
    
    .hero-content-container {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.0625rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 32px;
    }
}

/* Mobile Landscape / Small Tablet (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-main-content {
        padding: 0 20px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
        padding-top: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-controls-wrapper {
        bottom: 64px;
        gap: 20px;
    }
    
    .hero-progress-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .progress-indicator {
        width: 48px;
    }
}

/* Mobile Portrait (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .hero {
        min-height: 550px;
    }
    
    .hero-main-title {
        font-size: 2.25rem;
    }
    
    .hero-cta-group {
        gap: 12px;
    }
}

/* Small Mobile (up to 479px) */
@media (max-width: 479px) {
    .hero {
        min-height: 500px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
    }
    
    .hero-main-content {
        padding: 0 16px;
    }
    
    .hero-main-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 20px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-controls-wrapper {
        bottom: 48px;
        gap: 16px;
    }
    
    .hero-control-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-progress-indicators {
        bottom: 16px;
        gap: 8px;
    }
    
    .progress-indicator {
        width: 40px;
        height: 2px;
    }
}

/* Very Small Mobile (up to 360px) */
@media (max-width: 360px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-main-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        font-size: 0.875rem;
        padding: 12px 16px;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 30px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
}

.section-title::before {
    left: -70px;
}

.section-title::after {
    right: -70px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 15px;
    background: rgba(245, 230, 211, 0.3);
    border-radius: 10px;
    border-left: 3px solid;
    border-right: 3px solid;
    border-image: var(--gradient-primary) 1;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(139, 69, 19, 0.03) 50px,
        rgba(139, 69, 19, 0.03) 100px
    );
    animation: slideBackground 20s linear infinite;
}

@keyframes slideBackground {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50px);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid;
    border-image: var(--gradient-primary) 1;
    border-radius: 10px;
    opacity: 0.2;
    z-index: 0;
}

.about-content::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid;
    border-image: var(--gradient-primary) 1;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.about-text {
    position: relative;
    z-index: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 2px solid rgba(139, 69, 19, 0.1);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 3px solid transparent;
    background: var(--gradient-primary);
    padding: 3px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    isolation: isolate;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
    will-change: transform;
    display: block;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Products Accordion */
.products {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.products::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.products-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: 2px solid transparent;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    background: var(--white);
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    isolation: isolate;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.accordion-item:hover::before,
.accordion-item.active::before {
    transform: scaleY(1);
}

.accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.2);
    transform: translateX(5px);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: var(--gradient-light);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: 0;
}

.accordion-header:hover::before {
    left: 0;
}

.accordion-header:hover {
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.accordion-header span:first-child {
    position: relative;
    z-index: 1;
}

.accordion-icon {
    position: relative;
    z-index: 1;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.accordion-inner {
    padding: 25px;
}

.accordion-inner p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.accordion-inner ul {
    margin-left: 20px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.accordion-inner ul li {
    margin-bottom: 0.5rem;
}

.accordion-inner {
    overflow: hidden;
    position: relative;
}

.accordion-inner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    display: block;
    will-change: transform;
}

.accordion-inner:hover img {
    transform: scale(1.01);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.25);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, var(--gray) 0%, var(--cream) 50%, var(--gray) 100%);
    background-size: 200% 200%;
    animation: gradientMove 10s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
    border-color: var(--primary-color);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.5);
}

.service-icon {
    overflow: hidden;
    isolation: isolate;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    will-change: transform;
    display: block;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Quality Section */
.quality {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.quality::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.quality-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 4px solid;
    border-image: var(--gradient-primary) 1;
    padding: 4px;
    background: var(--white);
    isolation: isolate;
}

.quality-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    z-index: -1;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quality-image:hover::before {
    opacity: 0.3;
}

.quality-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    display: block;
    will-change: transform;
}

.quality-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
}

.quality-text {
    position: relative;
    z-index: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(139, 69, 19, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quality-text h2 {
    font-size: 2.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.quality-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.quality-text > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quality-feature {
    padding: 20px;
    background: var(--gradient-light);
    border-radius: 12px;
    border-left: 5px solid;
    border-image: var(--gradient-primary) 1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quality-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.quality-feature:hover::before {
    left: 100%;
}

.quality-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.2);
}

.quality-feature strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.quality-feature p {
    color: var(--text-light);
    margin: 0;
}

/* Process Section */
.process {
    background: linear-gradient(180deg, var(--gray) 0%, var(--cream) 100%);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.process-step:hover::after {
    width: 100%;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    border-color: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
    border: 3px solid var(--white);
}

.process-step:hover .step-number {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.6);
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.contact-item {
    padding: 20px;
    background: rgba(245, 230, 211, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border-left: 4px solid;
    border-image: var(--gradient-primary) 1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: rgba(245, 230, 211, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(139, 69, 19, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--gradient-secondary);
    color: var(--cream);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.02) 20px,
        rgba(255, 255, 255, 0.02) 40px
    );
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--cream);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cream);
    font-size: 0.9rem;
}

/* Cookie Consent Banner - Google Consent Mode v2 Compliant */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 15, 8, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    z-index: 10000;
    display: none;
    border-top: 3px solid;
    border-image: var(--gradient-primary) 1;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-consent-banner.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.cookie-consent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.cookie-consent-close {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-consent-content {
    margin-bottom: 24px;
}

.cookie-consent-description {
    margin-bottom: 24px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cookie-consent-description a {
    color: var(--light-brown);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-description a:hover {
    color: var(--white);
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    transition: background 0.3s ease;
}

.cookie-category:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.cookie-category-info p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.cookie-category-details {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cookie-btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-consent-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-save-preferences {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.cookie-save-preferences:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.cookie-consent-footer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Cookie Preferences Button */
.cookie-preferences-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(101, 67, 33, 0.9);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cookie-preferences-btn:hover {
    background: rgba(101, 67, 33, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.cookie-preferences-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        padding: 20px;
    }
    
    .cookie-consent-header h3 {
        font-size: 1.25rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-preferences-btn {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cookie-accept:hover::before {
    width: 300px;
    height: 300px;
}

.cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.cookie-accept span {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .quality-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-accept {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 100px 0 80px;
    background-color: var(--gray);
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.policy-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.policy-content h4 {
    color: var(--dark-brown);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.policy-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Responsive Image Styles */
@media (max-width: 968px) {
    .quality-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quality-image {
        order: -1;
    }
    
    .accordion-inner img {
        aspect-ratio: 16 / 10;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .accordion-inner img {
        aspect-ratio: 4 / 3;
        margin-top: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .quality-image img {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .accordion-inner img {
        aspect-ratio: 1 / 1;
        border-radius: 8px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .quality-image {
        border-radius: 10px;
    }
}

/* Thanks Page */
.thanks-page {
    padding: 150px 0;
    text-align: center;
    background-color: var(--gray);
    min-height: 100vh;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}


