:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-accent: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #667eea;
    --accent-hover: #5568d3;
    --border-color: rgba(255, 255, 255, 0.1);
    --gold: #ffd700;
    --overlay-bg: rgba(0, 0, 0, 0.95);
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-accent: #e0e0e0;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-color: #667eea;
    --accent-hover: #5568d3;
    --border-color: rgba(0, 0, 0, 0.1);
    --overlay-bg: rgba(255, 255, 255, 0.98);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(237, 100, 166, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: bgShift 20s ease infinite;
}

@keyframes bgShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

[data-theme="light"] body::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(237, 100, 166, 0.03) 0%, transparent 50%);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.logo img {
    height: 50px;
    width: 50px;
    object-fit: scale-down;
}

.logo p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text-primary);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--text-primary);
}

.theme-toggle {
    background: var(--bg-accent);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--accent-color);
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

/* .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
} */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 0.2s both;
}

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

/* Sections */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

section h3 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
    border-radius: 8px;
    cursor: pointer;
    min-height: 200px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.3s ease;
    display: block;
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////// */

.gallery img.loaded {
    opacity: 1;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10002;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-modal.active {
    display: block;
    opacity: 1;
}

.blog-modal-content {
    max-width: 800px;
    margin: 100px auto;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    animation: slideInDown 0.4s ease;
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-accent);
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    transition: background 0.3s ease;
}

.blog-modal-close:hover {
    background: var(--accent-color);
    color: white;
}

.blog-modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.blog-modal-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-modal-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.blog-modal-content-text {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: left;
}

/* Reviews Slider */
.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 60px;
}

.reviews-container {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    animation: fadeIn 0.5s ease;
    will-change: transform, opacity;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.stars {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.review-author {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent-hover);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.slider-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 5px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.about-text {
    text-align: left;
}

.about-text p {
    text-align: left;
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.checklist li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist li .icon {
    color: var(--accent-color);
    font-weight: bold;
}

/* Equipment Section */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.equipment-category {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.equipment-category h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.equipment-category ul {
    list-style: none;
    padding: 0;
}

.equipment-category li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.equipment-category li .icon {
    color: var(--accent-color);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 1.5rem 0;
    color: var(--accent-color);
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-card li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

/* Shop Section */
.shop-section {
    margin-top: 80px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.shop-item {
    background: var(--bg-secondary);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.shop-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.shop-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: auto 0 0 0;
    padding-top: 1rem;
}

.shop-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

/* Services Section */
.services-section {
    margin-top: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-secondary);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card .service-price {
    margin-top: auto;
    padding-top: 1rem;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.service-price {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 1rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--bg-secondary);
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    width: 100%;
    height: 250px;
    background: var(--bg-accent);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content .btn {
    margin-top: auto;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-content p {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-info p {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-form-collapsed {
    max-height: 80px;
    overflow: hidden;
}

.contact-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-bottom: 1rem;
}

.contact-form-header h3 {
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.contact-form-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.contact-form-toggle {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-form-toggle:hover {
    background: var(--accent-hover);
}

.contact-form {
    margin-top: 1.5rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.contact-form-wrapper:not(.contact-form-collapsed) .contact-form {
    opacity: 1;
    max-height: 1000px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-accent);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.cta-section h3 {
    text-align: center;
}

.cta-section p {
    max-width: 600px;
    margin: 1rem auto;
}

/* Location */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.location-info {
    text-align: left;
}

.location-info p {
    text-align: left;
    margin-bottom: 1rem;
}

.map {
    width: 100%;
    height: 400px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    padding: 3rem 5%;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-info {
    text-align: left;
}

.footer-info h2 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-info p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    text-align: left;
}

footer .copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
/* Mobile navigation hide/show */
@media (max-width: 768px) {
    header {
        position: fixed;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }
    
    header.nav-hidden {
        transform: translateY(-100%);
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .about-content,
    .location-content,
    .contact-section,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }
    
    section {
        padding: 60px 5%;
    }
    
    .reviews-slider {
        padding: 0 40px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .blog-modal-content {
        margin: 80px 20px;
        padding: 2rem;
    }
    
    .blog-modal-image {
        height: 250px;
    }
}

/* Loading spinner for images */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Stronger bold formatting */
strong, b {
    font-weight: 800;
}

u {
    text-decoration-thickness: 2px;
}

/* Print styles */
@media print {
    header, footer, .theme-toggle, .lightbox, .blog-modal {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        page-break-inside: avoid;
    }
}


/* Additional CSS fixes and improvements */

/* Better contact form collapsed state */
.contact-form-wrapper {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.contact-form-wrapper.contact-form-collapsed {
    max-height: 100px;
}

.contact-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-bottom: 1rem;
}

.contact-form-wrapper.contact-form-collapsed .contact-form-header {
    padding-bottom: 0;
    align-items: center;
}

.contact-form {
    margin-top: 1.5rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
}

.contact-form-wrapper:not(.contact-form-collapsed) .contact-form {
    max-height: 1000px;
    opacity: 1;
}

/* Better toggle button */
.contact-form-toggle {
    font-size: 1.5rem;
    padding: 4px 12px;
    min-width: 40px;
    line-height: 1;
    transition: transform 0.3s ease;
}



/* Logo theme switching */
[data-theme="light"] #logo-img {
    content: url('/photos/static/logo_light.png');
}

/* Legal pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 5% 60px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    text-align: left;
    color: var(--text-primary);
}

.legal-page p, .legal-page ul {
    text-align: left;
    margin: 1rem 0;
    line-height: 1.8;
}

.legal-page ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.footer-legal {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 0.5rem;
}

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

/* Contact form arrow */
.contact-form-toggle {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-form-toggle:hover {
    background: var(--accent-color);
    color: white;
}

.contact-form-wrapper.contact-form-collapsed .contact-form-toggle {
    transform: rotate(180deg);
}

.contact-form-wrapper:not(.contact-form-collapsed) .contact-form-toggle {
    transform: rotate(180deg);
}

/* Reviews slider fix */
.reviews-container {
    overflow: hidden;
    position: relative;
}

/* About image responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* Responsive improvements */
@media (max-width: 1200px) {
    nav ul {
        gap: 1.5rem;
    }
    
    nav ul li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    header nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    nav ul {
        width: 100%;
        justify-content: space-around;
        gap: 1rem;
    }
    
    .logo {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    nav ul li a {
        font-size: 0.8rem;
    }
    
    .theme-toggle {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .about-content,
    .location-content,
    .contact-section,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }
    
    section {
        padding: 60px 5%;
    }
    
    .reviews-slider {
        padding: 0 40px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .blog-modal-content {
        margin: 80px 20px;
        padding: 2rem;
    }
    
    .blog-modal-image {
        height: 250px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* High zoom levels (300%+) */
@media (max-width: 500px) {
    nav {
        padding: 0.5rem 2%;
    }
    
    nav ul {
        width: 100%;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .logo p {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .logo img {
        height: 35px;
        width: 35px;
    }
    
    section {
        padding: 40px 3%;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}

/* Notifications */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10001;
    animation: slideInRight 0.3s ease;
    max-width: 300px;
}

/* Fix header overlap */
main {
    min-height: calc(100vh - 200px);
}

/* Better mobile menu */
@media (max-width: 480px) {
    nav ul {
        gap: 0.5rem;
    }
    
    nav ul li {
        flex-basis: calc(50% - 0.5rem);
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
}