/* ==========================================
   RESET AND BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - inspired by NM Studio */
    --primary-color: #0a0a0a;
    --secondary-color: #a8b8cc;
    --accent-color: #c5d5e8;
    --text-dark: #0d0d0d;
    --text-light: #4a4a4a;
    --text-muted: #767676;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #030303;
    --border-color: #e8ecf1;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Palette Options */
body.palette-1 {
    --secondary-color: #9a7c6f;
    --accent-color: #c9a96e;
    --border-color: #e5ddd3;
}

body.palette-2 {
    --secondary-color: #7d8b6f;
    --accent-color: #a8b894;
    --border-color: #d4dcc8;
}

body.palette-3 {
    --secondary-color: #7d7d8e;
    --accent-color: #9a9aad;
    --border-color: #cccad8;
}

body.palette-4 {
    --secondary-color: #8b6b4f;
    --accent-color: #b8935d;
    --border-color: #e0cfc1;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.lead {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    margin-bottom: 30px;
}

.section-description {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    line-height: 1;
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    opacity: 0.85;
}

.logo-tagline {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: -4px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #141414 0%, #1f1f1f 100%);
    background-image: url('https://nm-studio.si/wp-content/uploads/2023/09/sara-1.jpg');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 10, 0.85) 0%, rgba(5, 5, 10, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    padding: 0 20px;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.25em;
}

.hero-title {
    color: var(--bg-white);
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    color: var(--bg-white);
}

.hero-buttons .btn-secondary:hover {
    border-color: var(--secondary-color);
}


.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--bg-white);
    z-index: 2;
    animation: fadeIn 2s ease;
}

.scroll-indicator span {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--bg-white);
    border-radius: 25px;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--bg-white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* ==========================================
   ABOUT STUDIO SECTION
   ========================================== */
.about-studio {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
}

.features-list {
    margin-top: 30px;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    padding: 35px;
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-light);
}

.icon-circle {
    width: 52px;
    height: 52px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--secondary-color);
    font-size: 0.75rem;
    line-height: 1.1;
    text-align: center;
    padding: 4px;
    box-sizing: border-box;
}

.contact-icon.icon-circle,
.transport-icon.icon-circle {
    font-size: 0.7rem;
}

/* ==========================================
   EQUIPMENT SECTION
   ========================================== */
.equipment {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.equipment-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.equipment-subtitle {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin: 50px 0 20px;
    text-align: left;
}

.equipment-subtitle:first-of-type {
    margin-top: 30px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.equipment-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.equipment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.equipment-icon svg {
    width: 100%;
    height: 100%;
}

.equipment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.equipment-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.equipment-showcase {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.showcase-card {
    background: var(--bg-white);
    padding: 18px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.showcase-card h4 {
    color: var(--secondary-color);
}

.showcase-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.img-placeholder {
    background: repeating-linear-gradient(135deg, #eef2f8 0, #eef2f8 10px, #fafbfc 10px, #fafbfc 20px);
    border: 1px dashed var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 30px 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.img-placeholder span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.equipment-additional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.equipment-note {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 35px;
    transition: var(--transition-smooth);
}

.equipment-note:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.equipment-note h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.equipment-note p {
    color: var(--text-light);
    margin: 0;
}

.equipment-detail {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.equipment-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.equipment-category {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.equipment-category:hover {
    border-color: var(--secondary-color);
    transform: translateY(-6px);
}

.category-title {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.equipment-category ul li {
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.equipment-category ul li:last-child {
    border-bottom: none;
}

.background-colors {
    list-style: none;
}

.background-colors li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.background-colors li:last-child {
    border-bottom: none;
}

.color-square {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    flex-shrink: 0;
}

.equipment-category-wide {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    border: 2px solid var(--secondary-color);
}

.equipment-category-wide .category-title {
    font-size: 1.1rem;
}

.equipment-category-wide ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0 30px;
}

.equipment-notes {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.equipment-note {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.equipment-note h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.equipment-note p {
    color: var(--text-light);
    line-height: 1.6;
}

.rental-responsibility {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-left: 4px solid var(--accent-color);
}

.rental-responsibility h4 {
    color: var(--secondary-color);
}

.rental-responsibility p {
    font-size: 0.95rem;
}

.studio-corners {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.corner-card {
    background: var(--bg-white);
    padding: 22px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.corner-card h4 {
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.corner-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.pricing-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 8px 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--primary-color);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
}

.price-amount {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.pricing-features {
    margin-bottom: 35px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
    text-align: center;
}

.pricing-note p {
    color: var(--text-light);
    margin: 0;
}

/* ==========================================
   STUDIO GUIDELINES SECTION
   ========================================== */
.studio-guidelines {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.guideline-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.guideline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.guideline-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.guideline-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.guideline-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   WHY CHOOSE SECTION
   ========================================== */
.why-choose {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text {
    padding-right: 20px;
}

.benefits-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.benefit-icon {
    font-size: 0.75rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.benefit-text p {
    color: var(--text-light);
}

.why-image {
    position: relative;
}

.image-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-placeholder img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.image-placeholder:hover img {
    transform: scale(1.05);
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    color: var(--bg-white);
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ==========================================
   PORTFOLIO GALLERY SECTION
   ========================================== */
.portfolio-gallery {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.lightbox-gallery {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
}

.gallery-slider-container {
    overflow: hidden;
    width: 100%;
}

.gallery-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.lightbox-item {
    flex: 0 0 275px;
    margin-right: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.lightbox-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
    display: block;
}

.lightbox-item:hover img {
    transform: scale(1.08);
}

.lightbox-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(125, 125, 142, 0.9);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-prev:hover, .gallery-next:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev:active, .gallery-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Mobile responsiveness for gallery slider */
@media (max-width: 1200px) {
    .lightbox-item {
        flex: 0 0 275px;
    }
}

@media (max-width: 992px) {
    .lightbox-item {
        flex: 0 0 275px;
    }
}

@media (max-width: 768px) {
    .lightbox-item {
        flex: 0 0 250px;
        margin-right: 15px;
    }
    
    .gallery-prev, .gallery-next {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .lightbox-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .lightbox-item img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .lightbox-gallery {
        margin-top: 30px;
    }
    
    .gallery-slider-container {
        padding: 0;
        margin: 0;
    }
    
    .gallery-slider {
        gap: 0;
    }
    
    .lightbox-item {
        flex: 0 0 100%;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .lightbox-item img {
        height: 400px;
        width: 100%;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-slider-container {
        margin: 0;
    }
    
    .lightbox-item img {
        height: 350px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--bg-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 4px;
    user-select: none;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bg-white);
    font-size: 0.95rem;
    text-align: center;
    white-space: nowrap;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==========================================
   BOOKING SECTION
   ========================================== */
.booking {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.booking-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.booking-steps {
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-card {
    background-color: var(--bg-white);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.contact-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 35px;
}

.contact-method {
    display: flex;
    gap: 15px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-method a {
    color: var(--text-light);
}

.contact-method a:hover {
    color: var(--secondary-color);
}

.contact-method p {
    color: var(--text-light);
    margin: 0;
}

.business-hours {
    background-color: var(--bg-light);
    padding: 25px;
    margin-top: 30px;
}

.business-hours h4 {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.business-hours p {
    color: var(--text-light);
    margin-bottom: 5px;
}

/* ==========================================
   LOCATION SECTION
   ========================================== */
.location {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;

.map-container iframe {
    /* colorful map - no filter */
}
}

.map-container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.transport-option {
    display: flex;
    gap: 20px;
    align-items: start;
}

.transport-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.transport-option h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.transport-option p {
    color: var(--text-light);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 300;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-text h2 {
    color: var(--primary-color);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-color: var(--secondary-color);
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta .btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.cta .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.cta .btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollDown {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .about-content,
    .why-choose-content,
    .booking-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .guidelines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .equipment-grid,
    .pricing-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-notes {
        grid-template-columns: 1fr;
    }
    
    .lightbox-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 12px 15px;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 15px 30px;
    }
    
    .stat-card,
    .equipment-card {
        padding: 25px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 12px 15px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: -35px;
    }
    
    .lightbox-next {
        right: -35px;
    }
}
