/* ===== DARK/LIGHT MODE VARIABLES ===== */
:root {
    /* Dark theme (default) */
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --bg-card: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-light: #888888;
    --accent-primary: #d4af37;
    --accent-secondary: #f4d03f;
    --border-color: #404040;
    --shadow: 0 5px 15px rgba(0,0,0,0.3);
    --header-bg: rgba(26, 26, 26, 0.95);
    --mobile-padding: clamp(15px, 4vw, 25px);
    --section-padding: clamp(50px, 8vw, 80px);
}

[data-theme="light"] {
    /* Light theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #979090;
    --text-light: #888888;
    --accent-primary: #d4af37;
    --accent-secondary: #f4d03f;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --header-bg: rgba(255, 255, 255, 0.95);
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}


/* ===== BASE STYLES WITH CSS VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Responsive font sizes */
h1 { 
    font-size: clamp(2rem, 6vw, 3.5rem); 
    line-height: 1.1;
}
h2 { 
    font-size: clamp(1.75rem, 5vw, 2.5rem); 
    line-height: 1.2;
}
h3 { 
    font-size: clamp(1.375rem, 4vw, 1.75rem); 
    line-height: 1.3;
}
h4 { 
    font-size: clamp(1.125rem, 3vw, 1.25rem); 
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
    width: 100%;
}

section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: clamp(10px, 2vw, 15px);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(40px, 8vw, 60px);
    height: 3px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
}

.section-header p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-secondary);
    max-width: min(600px, 90vw);
    margin: 0 auto;
}

.establishment-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 10px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.established-text, .established-year {
    margin-right: 4px;
    opacity: 0.9;
    color: #eeb808;
    font-style: italic;
    font-size: large;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 3vw, 15px) clamp(20px, 4vw, 30px);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: clamp(0.875rem, 2vw, 1rem);
    min-height: 44px; /* Touch target size */
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: #1a1a1a;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent-primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-book {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: #1a1a1a;
    padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 20px);
    border-radius: 25px;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-book:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

.btn-full {
    width: 100%;
    padding: clamp(15px, 3vw, 18px);
}

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: clamp(10px, 2vw, 15px) 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--header-bg);
    padding: clamp(8px, 1.5vw, 10px) 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(10px, 2vw, 20px);
}

.logo {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 15px);
}

.logo-img {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.logo h1 {
    color: var(--accent-primary);
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    margin: 0;
    white-space: nowrap;
}

.logo h1:hover {
    color: var(--text-primary);
    transition: all 0.5s ease;
    animation: smoothWave 1.2s ease-in-out infinite;
}

@keyframes smoothWave {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-2px) rotate(-1deg);
    }
    50% {
        transform: translateY(1px) rotate(1deg);
    }
    75% {
        transform: translateY(-1px) rotate(-0.5deg);
    }
}

.nav ul {
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 30px);
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-primary);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== THEME TOGGLE STYLES ===== */
.theme-toggle {
    position: fixed;
    top: clamp(15px, 3vw, 20px);
    right: clamp(15px, 3vw, 20px);
    z-index: 1001;
    background: var(--header-bg);
    border: 2px solid var(--accent-primary);
    border-radius: 50px;
    padding: clamp(8px, 2vw, 10px);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: clamp(45px, 9vw, 50px);
    height: clamp(45px, 9vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--accent-primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.theme-toggle i {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.theme-toggle:hover i {
    color: var(--bg-primary);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    height: 100svh; /* Use small viewport height for mobile */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('https://m.media-amazon.com/images/I/71HQw5dtrDL._AC_SL1500_.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Change to scroll for mobile performance */
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: min(800px, 90vw);
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: clamp(15px, 3vw, 20px);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--accent-primary);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: clamp(30px, 5vw, 40px);
    color: #e0e0e0;
    animation: fadeInUp 1s ease 0.3s both;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: clamp(20px, 4vw, 30px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--accent-primary);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    animation: bounce 2s infinite;
    display: block;
    padding: 10px;
}

/* Video Tutorial Panel Styles */
.video-tutorial-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 600px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.video-tutorial-panel.active {
    right: 0;
}

.video-header {
    padding: 20px;
    background: var(--bg-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.video-header h2 {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: var(--accent-primary);
}

.video-container {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-player {
    width: 100%;
    max-width: 500px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-player video {
    width: 100%;
    display: block;
}

.video-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.control-btn {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--accent-primary);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    min-height: 44px;
}

.control-btn:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.video-description {
    margin-top: 30px;
    text-align: center;
    max-width: 500px;
    color: var(--text-secondary);
}

.video-description h3 {
    color: var(--accent-primary);
    margin-bottom: 15px;
}

.video-description ol {
    text-align: left;
    margin-top: 15px;
    padding-left: 20px;
}

.video-description li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

/* Tutorial Button Styles */
.tutorial-btn {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    cursor: pointer;
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    min-height: 44px;
}

.tutorial-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-tutorial-panel {
        max-width: 100%;
    }
    
    .video-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .control-btn {
        width: 200px;
        justify-content: center;
    }
}

/* Enhanced Responsive Styles for Video Tutorial */
@media (max-width: 768px) {
    .video-tutorial-panel {
        max-width: 100%;
        border-radius: 0;
    }
    
    .video-header {
        padding: 15px 20px;
    }
    
    .video-header h2 {
        font-size: 1.3rem;
    }
    
    .video-container {
        padding: 15px;
        justify-content: flex-start;
    }
    
    .video-player {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .video-controls {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }
    
    .control-btn {
        width: 200px;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .video-description {
        margin-top: 20px;
        padding: 0 10px;
    }
    
    .video-description h3 {
        font-size: 1.2rem;
    }
    
    .video-description ol {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .video-header {
        padding: 12px 15px;
    }
    
    .video-header h2 {
        font-size: 1.1rem;
    }
    
    .close-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .video-container {
        padding: 10px;
    }
    
    .control-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .video-description {
        font-size: 0.9rem;
    }
    
    .tutorial-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .video-tutorial-panel {
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .video-container {
        padding: 10px;
        justify-content: flex-start;
    }
    
    .video-player {
        max-height: 40vh;
    }
    
    .video-controls {
        margin-top: 10px;
    }
    
    .video-description {
        margin-top: 15px;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 60px);
    align-items: center;
}

.about-text h3 {
    color: var(--text-primary);
    margin-bottom: clamp(15px, 3vw, 20px);
}

.about-text p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: clamp(15px, 3vw, 20px);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-top: clamp(30px, 5vw, 40px);
}

.feature {
    text-align: center;
    padding: clamp(25px, 4vw, 30px) clamp(15px, 3vw, 20px);
    background: var(--bg-card);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--accent-primary);
    margin-bottom: clamp(10px, 2vw, 15px);
}

.feature h4 {
    color: var(--text-primary);
    margin-bottom: clamp(8px, 1.5vw, 10px);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
}

.feature p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    order: -1;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.services .section-header h2,
.services .section-header p {
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(20px, 4vw, 30px);
}

.service-card {
    background: var(--bg-card);
    padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 30px);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background-clip: padding-box;
    box-shadow: var(--shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-icon {
    animation: pulse 1s ease-in-out;
    color: var(--accent-secondary);
}

.service-icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    color: var(--accent-primary);
    margin-bottom: clamp(15px, 3vw, 20px);
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: clamp(12px, 2.5vw, 15px);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: clamp(20px, 4vw, 25px);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.service-price {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--accent-primary);
}

/* ===== TEAM SECTION ===== */
.team {
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(30px, 5vw, 40px);
}

.team-member {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-image {
    position: relative;
    height: clamp(250px, 50vw, 300px);
    overflow: hidden;
}

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

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

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

.member-social {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
}

.member-social a {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    transition: transform 0.3s ease;
}

.member-social a:hover {
    transform: scale(1.2);
}

.member-info {
    padding: clamp(25px, 4vw, 30px);
    text-align: center;
}

.member-info h3 {
    color: var(--text-primary);
    margin-bottom: clamp(8px, 1.5vw, 10px);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.member-role {
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: clamp(12px, 2.5vw, 15px);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

.member-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ===== VIDEO SECTION ===== */
.videos {
    background: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.videos .section-header h2,
.videos .section-header p {
    color: var(--text-primary);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(20px, 4vw, 30px);
    position: relative;
    z-index: 2;
}

.video-item {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.video-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.video-item video {
    width: 100%;
    height: clamp(200px, 40vw, 250px);
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-item:hover video {
    filter: brightness(1.1);
}

.video-info {
    padding: clamp(20px, 4vw, 25px);
    background: var(--bg-card);
}

.video-info h3 {
    color: var(--accent-primary);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: clamp(8px, 1.5vw, 10px);
    font-family: 'Oswald', sans-serif;
    line-height: 1.3;
}

.video-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.video-item::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(2rem, 6vw, 3rem);
    color: rgba(212, 175, 55, 0.8);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

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

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--bg-primary);
}

.gallery .section-header h2,
.gallery .section-header p {
    color: var(--text-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(15px, 3vw, 20px);
}

.gallery-item {
    position: relative;
    height: clamp(100px, 210vw, 350px);
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(20px, 4vw, 30px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.gallery-overlay h3 {
    color: #fff;
    margin-bottom: clamp(5px, 1vw, 10px);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.gallery-overlay p {
    color: var(--accent-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(30px, 5vw, 40px);
}

.testimonial {
    background: var(--bg-card);
    padding: clamp(30px, 5vw, 40px);
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(3rem, 8vw, 4rem);
    color: var(--accent-primary);
    line-height: 1;
    font-family: serif;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: clamp(15px, 3vw, 20px);
}

.stars i {
    color: var(--accent-primary);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.testimonial-content p {
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: clamp(25px, 4vw, 30px);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.5vw, 15px);
    justify-content: center;
}

.author-img {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-primary);
}

.author-avatar {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #1a1a1a;
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.author-info span {
    color: var(--text-secondary);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

/* ===== BOOKING NOTICE ===== */
.booking-notice {
    background: var(--bg-primary);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.booking-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.1"/><circle cx="90" cy="50" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.notice-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 60px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.notice-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    order: -1;
}

.notice-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
}

.notice-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.notice-text {
    color: var(--text-primary);
    text-align: center;
}

.notice-text h2 {
    color: var(--accent-primary);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: clamp(20px, 4vw, 25px);
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

.notice-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: clamp(25px, 4vw, 30px);
}

.notice-text .btn {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.notice-text .btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.contact .section-header h2,
.contact .section-header p {
    color: var(--text-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 60px);
    max-width: min(1000px, 95vw);
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 3vw, 20px);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(15px, 3vw, 20px);
    padding: clamp(25px, 4vw, 30px);
    background: var(--bg-card);
    border-radius: 10px;
    border-left: 4px solid var(--accent-primary);
    transition: all 0.3s ease;
    position: relative;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--bg-secondary);
}

.info-icon {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    color: var(--accent-primary);
    margin-top: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-details h3 {
    color: var(--text-primary);
    margin-bottom: clamp(8px, 1.5vw, 10px);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    transition: all 0.3s ease;
}

.info-details p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
}

.contact-form {
    background: var(--bg-card);
    padding: clamp(30px, 5vw, 40px);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.booking-form h3 {
    color: var(--text-primary);
    margin-bottom: clamp(25px, 4vw, 30px);
    text-align: center;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(15px, 3vw, 20px);
    margin-bottom: clamp(15px, 3vw, 20px);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: clamp(12px, 3vw, 15px);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-height: 44px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--text-light);
}

.booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: #0d0d0d;
    color: #ccc;
    padding: clamp(40px, 6vw, 60px) 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 40px);
    margin-bottom: clamp(30px, 5vw, 40px);
}

.footer-section h2,
.footer-section h3 {
    color: #fff;
    margin-bottom: clamp(15px, 3vw, 20px);
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-img {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-primary);
    margin-bottom: clamp(10px, 2vw, 15px);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.footer-logo h2 {
    color: var(--accent-primary);
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: clamp(10px, 2vw, 15px);
}

.footer-logo h2:hover {
    color: whitesmoke;
    transition: all 0.5s ease;
    animation: smoothWave 1.2s ease-in-out infinite;
}

.footer-logo p {
    margin-bottom: clamp(25px, 4vw, 30px);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.social-links {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    justify-content: center;
}

.social-links a {
    width: clamp(40px, 8vw, 45px);
    height: clamp(40px, 8vw, 45px);
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: all 0.3s ease;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.social-links a:hover {
    background: var(--accent-primary);
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-section ul a {
    color: #ccc;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    justify-content: center;
}

.contact-item i {
    color: var(--accent-primary);
    width: 20px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: clamp(15px, 3vw, 20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 2vw, 20px);
}

.footer-bottom p {
    margin: 0;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

.footer-bottom i {
    color: var(--accent-primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-4px) rotate(0deg);
    }
    75% {
        transform: translateY(-12px) rotate(-1deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(8px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Tablet and Desktop */
@media (min-width: 768px) {
    :root {
        --mobile-padding: clamp(20px, 3vw, 30px);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-image {
        order: 0;
    }
    
    .notice-content {
        grid-template-columns: 1fr 2fr;
    }
    
    .notice-image {
        order: 0;
    }
    
    .notice-text {
        text-align: left;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        text-align: left;
    }
    
    .footer-section h2,
    .footer-section h3 {
        text-align: left;
    }
    
    .footer-logo {
        align-items: flex-start;
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-section ul {
        align-items: flex-start;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }
    
    .info-item:nth-child(4) {
        align-self: end;
        min-width: 300px;
        cursor: pointer;
        background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    }
    
    .info-item:nth-child(4):hover {
        transform: translateX(-10px) scale(1.05);
        width: 400px;
        background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(212, 175, 55, 0.1) 100%);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        border-left: 4px solid var(--accent-secondary);
        z-index: 2;
    }
    
    .info-item:nth-child(4):hover .info-icon {
        transform: scale(1.2) rotate(5deg);
        color: var(--accent-secondary);
        animation: emailPulse 1s ease-in-out;
    }
    
    @keyframes emailPulse {
        0%, 100% { transform: scale(1.2) rotate(5deg); }
        50% { transform: scale(1.3) rotate(0deg); }
    }
    
    .info-item:nth-child(4):hover .info-details h3 {
        color: var(--accent-secondary);
        transform: translateX(5px);
    }
    
    .info-item:nth-child(4):hover .info-details p {
        color: var(--text-primary);
        transform: translateX(5px);
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--header-bg);
        transition: left 0.3s ease;
        padding: 80px 0 50px;
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 0 var(--mobile-padding);
    }
    
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .theme-toggle {
        right: 70px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .theme-toggle {
        right: 60px;
        width: 40px;
        height: 40px;
    }
    
    .theme-toggle i {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .service-card,
    .testimonial {
        padding: 25px 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .footer-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .video-info {
        padding: 18px;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --accent-primary: #000000;
        --accent-secondary: #333333;
        --border-color: #000000;
    }
    
    [data-theme="light"] {
        --accent-primary: #000000;
        --accent-secondary: #333333;
        --border-color: #000000;
    }
}

.raleway-font {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
