/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #fff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    transition: color 0.3s;
    color: #e0e0e0;
}

.nav-link:hover {
    color: #fff;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem;
}

.chevron {
    font-size: 0.7rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: -1rem;
    margin-top: 0;
    padding-top: 0.5rem;
    background-color: #2d2d2d;
    border: 1px solid #444;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-content button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    transition: background-color 0.3s;
    background: #2d2d2d;
    color: #e0e0e0;
}

.dropdown-content button:hover {
    background-color: #3d3d3d;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #e0e0e0;
}

.mobile-menu {
    display: none;
    border-top: 1px solid #333;
    background-color: #2d2d2d;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu > button,
.mobile-dropdown-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    transition: background-color 0.3s;
    color: #e0e0e0;
    background: #2d2d2d;
}

.mobile-menu > button:hover,
.mobile-dropdown-btn:hover {
    background-color: #3d3d3d;
}

.mobile-dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-chevron {
    transition: transform 0.3s;
}

.mobile-chevron.rotated {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
    background: #252525;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: #e0e0e0;
    background: #252525;
}

.mobile-dropdown-content button:hover {
    background-color: #3d3d3d;
}

/* Pages */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* Gallery Layout - Single Column */
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 6rem;
    position: relative;
}

/* Sidebar Filters - Hidden by Default */
.filter-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: #2d2d2d;
    padding: 1.5rem;
    border-right: 1px solid #444;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.filter-sidebar.active {
    left: 0;
}

.filter-sidebar h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-size: 1.25rem;
    border-bottom: 1px solid #444;
    padding-bottom: 0.75rem;
}

.category-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-filter-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #3d3d3d;
    border: 1px solid #444;
    border-radius: 6px;
    transition: all 0.3s;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.category-filter-btn:hover {
    background: #4d4d4d;
    border-color: #666;
}

.category-filter-btn.active {
    background: #007acc;
    border-color: #007acc;
    color: white;
}

.category-filter-btn.has-subcategories {
    background: #363636;
}

.filter-chevron {
    font-size: 0.7rem;
    transition: transform 0.3s;
    opacity: 0.7;
}

.subcategory-filters {
    display: none;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    border-left: 2px solid #444;
    padding-left: 1rem;
}

.subcategory-filters.active {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.subcategory-filter-btn {
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s;
    color: #b0b0b0;
    font-size: 0.9rem;
    text-align: left;
}

.subcategory-filter-btn:hover {
    background: #3d3d3d;
    color: #e0e0e0;
}

.subcategory-filter-btn.active {
    background: #007acc;
    color: white;
    border-color: #007acc;
}

/* Gallery Content - FIXED */
.gallery-content {
    padding: 0;
    width: 100%;
}

.gallery-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #2d2d2d;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    border: 1px solid #444;
    transition: all 0.3s;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.gallery-item:hover {
    border-color: #666;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.gallery-item.hidden {
    display: none;
}

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

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

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

/* Hero Section */
.hero-scroll {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    overflow: hidden;
}

/* Columns */
.scroll-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow: hidden;
    position: relative;
}

/* Base track */
.scroll-track {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(0);
    animation-fill-mode: both;
}

/* LEFT column scrolls DOWN (content moves UP visually) */
#scrollLeft .scroll-track {
    animation: scrollDown 80s linear infinite;
}

/* RIGHT column scrolls UP (content moves DOWN visually) */
#scrollRight .scroll-track {
    animation: scrollUp 80s linear infinite;
}

/* Downward animation (normal direction) */
@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 0.75rem)); /* only half for smooth looping */
    }
}

/* Upward animation (opposite direction, visible from start) */
@keyframes scrollUp {
    0% {
        transform: translateY(calc(-50% - 0.75rem));
    }
    100% {
        transform: translateY(0);
    }
}

/* Desktop Filter Toggle */
.filter-toggle-desktop {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #007acc;
    color: white;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: background-color 0.3s;
}

.filter-toggle-desktop:hover {
    background: #005a9e;
}

/* Show desktop toggle on larger screens */
@media (min-width: 769px) {
    .filter-toggle-desktop {
        display: flex;
    }
    
    /* Hide mobile toggle on desktop */
    .filter-toggle {
        display: none;
    }
    
    /* Make sidebar collapsible on desktop */
    .filter-sidebar.collapsed {
        display: none;
    }
    
    .gallery-content.expanded {
        grid-column: 1 / -1;
    }
}

/* Image settings */
.scroll-column img {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 600px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
}


/* Hero content adjustments for taller layout */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.hero-text {
    text-align: center;
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem 4rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    max-width: 90%;
    border: 1px solid #444;
    margin-top: -2rem; /* Adjust position to account for taller images */
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    color: #fff;
}

.hero-text p {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border: 2px solid #007acc;
    background: #007acc;
    color: white;
    margin: 0.5rem;
    transition: all 0.3s;
    border-radius: 4px;
    font-size: 1rem;
}

.cta-btn:hover {
    background-color: transparent;
    color: #007acc;
}

.cta-btn-secondary {
    padding: 1rem 2.5rem;
    border: 2px solid #666;
    background: transparent;
    color: #e0e0e0;
    margin: 0.5rem;
    transition: all 0.3s;
    border-radius: 4px;
    font-size: 1rem;
}

.cta-btn-secondary:hover {
    background-color: #666;
    color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.container-small {
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.container h1,
.container-small h1 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4rem;
    color: #fff;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-frame {
    background: #2d2d2d;
    padding: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
}

.lightbox-frame img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 20px;
    transition: background 0.3s;
    z-index: 2001;
}

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

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Services Page - Dark Theme */
.services-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: -1rem;
}

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

.service-card {
    background: #2d2d2d;
    border: 1px solid #444;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: #666;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

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

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #444;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007acc;
    font-weight: bold;
}

.service-btn {
    width: 100%;
    padding: 1rem;
    background: #007acc;
    color: white;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1rem;
    margin-top: auto;
}

.service-btn:hover {
    background: #005a9e;
}

/* Pricing Page - Dark Theme */
.pricing-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: -1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #2d2d2d;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: #666;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #007acc;
    background: #363636;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #007acc;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}

.price {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #fff;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1; /* This will make the feature list expand */
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #444;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.features li:last-child {
    border-bottom: none;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007acc;
    font-weight: bold;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    background: #007acc;
    color: white;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1rem;
}

.pricing-btn:hover {
    background: #005a9e;
}

.pricing-note {
    text-align: center;
    color: #b0b0b0;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page - Dark Theme */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #2d2d2d;
    border-radius: 8px;
    border: 1px solid #444;
}

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

.about-text h2 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-text p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Contact Page - Dark Theme */
.contact-form {
    margin-bottom: 3rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #444;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
    background: #2d2d2d;
    color: #e0e0e0;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007acc;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #007acc;
    color: white;
    transition: background-color 0.3s;
    border-radius: 4px;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: #005a9e;
}

.contact-info {
    text-align: center;
    color: #b0b0b0;
    margin-top: 3rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:first-child {
    margin-bottom: 1rem;
}

.contact-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #2d2d2d;
    border-radius: 8px;
    border-left: 4px solid #007acc;
}

.contact-note p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.contact-note strong {
    color: #e0e0e0;
}

.contact-note ul {
    margin: 1rem 0 1rem 1.5rem;
    color: #b0b0b0;
}

.contact-note ul li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    border-top: 1px solid #333;
    padding: 2rem;
    background-color: #2d2d2d;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    color: #b0b0b0;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: #007acc;
    transform: translateY(-3px);
}

.footer-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Desktop layout - Show sidebar by default */
@media (min-width: 769px) {
    .gallery-container {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 2rem;
        padding-top: 6rem;
        transition: grid-template-columns 0.3s ease;
    }
    
    .gallery-container.collapsed {
        grid-template-columns: 1fr;
    }
    
    .filter-sidebar {
        position: static;
        left: auto;
        width: 100%;
        height: auto;
        background: transparent;
        border: none;
        padding: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .filter-sidebar.collapsed {
        display: none;
    }
    
    .filter-close {
        display: none;
    }
    
    .filter-overlay {
        display: none !important;
    }
    
    .gallery-content {
        padding: 0;
        transition: grid-column 0.3s ease;
    }
    
    .gallery-content.expanded {
        grid-column: 1 / -1;
    }
    
    .gallery-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2rem;
    }
    
    .gallery-header-controls {
        display: flex;
        gap: 1rem;
    }
}

.session-duration {
    color: #007acc;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-note {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #007acc;
    margin-top: 2rem;
}

.pricing-note strong {
    color: #fff;
}

/* About Page Styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image-main {
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #2d2d2d;
    border-radius: 12px;
    border: 1px solid #444;
}

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

.about-intro h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #fff;
}

.about-tagline {
    font-size: 1.2rem;
    color: #007acc;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-intro p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #2d2d2d;
    border-radius: 8px;
    border: 1px solid #444;
}

.stat-number {
    font-size: 2rem;
    font-weight: 300;
    color: #007acc;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Story Section */
.about-story {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #2d2d2d;
    border-radius: 12px;
    border-left: 4px solid #007acc;
}

.about-story h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-story p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Approach Section */
.about-approach {
    margin-bottom: 4rem;
}

.about-approach h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

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

.approach-item {
    text-align: center;
    padding: 2rem;
    background: #2d2d2d;
    border-radius: 12px;
    border: 1px solid #444;
    transition: all 0.3s;
}

.approach-item:hover {
    border-color: #007acc;
    transform: translateY(-5px);
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.approach-item h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
}

.approach-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Services Specialties */
.about-services {
    margin-bottom: 4rem;
}

.about-services h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-specialty {
    padding: 1.5rem;
    background: #2d2d2d;
    border-radius: 8px;
    border: 1px solid #444;
}

.service-specialty h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #fff;
}

.service-specialty p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Location Section */
.about-location {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #2d2d2d;
    border-radius: 12px;
}

.about-location h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-location p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.location-list {
    color: #e0e0e0;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.location-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    text-align: center;
    padding: 3rem;
    background: #2d2d2d;
    border-radius: 12px;
    border: 1px solid #444;
}

.about-cta h3 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-cta p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    padding: 1rem 2rem;
    background: #007acc;
    color: white;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1rem;
}

.cta-btn-primary:hover {
    background: #005a9e;
}

.cta-btn-secondary {
    padding: 1rem 2rem;
    border: 2px solid #666;
    background: transparent;
    color: #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1rem;
}

.cta-btn-secondary:hover {
    background: #666;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .about-story,
    .about-location,
    .about-cta {
        padding: 1.5rem;
    }
}

/* Large screen adjustments */
@media (min-width: 1400px) {
    .scroll-column img {
        min-height: 450px;
        max-height: 700px; /* Even taller on large screens */
    }
}

/* Add these styles to your CSS file */

.filter-group {
    position: relative;
}

.subcategory-filters {
    display: none;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    border-left: 2px solid #444;
    padding-left: 1rem;
}

.subcategory-filters.active {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Ensure proper spacing for filter groups */
.category-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-filter-btn.has-subcategories {
    background: #363636;
    position: relative;
}

.filter-chevron {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

/* Make sure the subcategory buttons are visible when active */
.subcategory-filter-btn.active {
    background: #007acc !important;
    color: white !important;
    border-color: #007acc !important;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-scroll {
        flex-direction: column;
    }
    
    .scroll-column {
        height: 50vh;
        flex-direction: row;
        gap: 1rem;
    }

    .scroll-track {
        flex-direction: row;
        gap: 1rem;
        animation: scrollRight 80s linear infinite;
    }

    #scrollLeft .scroll-track {
        flex-direction: row;
        animation: scrollRight 60s linear infinite;
    }
    
    #scrollRight .scroll-track {
        flex-direction: row;
        animation: scrollLeft 60s linear infinite;
    }
    
    @keyframes scrollRight {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50%));
        }
    }
    
    @keyframes scrollLeft {
        0% {
            transform: translateX(calc(-50%));
        }
        100% {
            transform: translateX(0);
        }
    }
    
    .scroll-column img {
        height: 100%;
        width: 300px;
    }
    
    .hero-text {
        padding: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .cta-btn,
    .cta-btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .pricing-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev {
        left: 10px;
        font-size: 30px;
        padding: 15px;
    }
    
    .lightbox-next {
        right: 10px;
        font-size: 30px;
        padding: 15px;
    }
    
    .lightbox-close {
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-frame {
        padding: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        padding-top: 5rem;
    }

    /* Sidebar Filters - Hidden by Default */
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: #2d2d2d;
        padding: 1.5rem;
        border-right: 1px solid #444;
        z-index: 1001;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .filter-sidebar.active {
        left: 0;
    }
    
    .gallery-content {
        padding: 0;
    }
    
    .gallery-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    /* Filter toggle button - Hidden by default, shown on mobile */
    .filter-toggle {
        display: none;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: #007acc;
        color: white;
        border-radius: 6px;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        transition: background-color 0.3s;
    }

    .filter-toggle:hover {
        background: #005a9e;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    /* Overlay when filters are open */
    .filter-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1000;
    }
    
    .filter-overlay.active {
        display: block;
    }
    
    /* Close button for mobile filters */
    .filter-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: #e0e0e0;
        font-size: 1.5rem;
        cursor: pointer;
    }
}

/* Pricing Comparison Wrapper */
.pricing-comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Addons Section */
.addons-section {
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.addons-section h2 {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.addons-section p {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.addon-card {
    background: #2d2d2d;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.addon-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #007acc;
}

.addon-price {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #fff;
}

.addon-card p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pricing-comparison-wrapper {
        grid-template-columns: 1fr;
    }
}