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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1a1a1a;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Focus Styles */
*:focus {
    outline: 2px solid #cccccc;
    outline-offset: 2px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #666666, #999999);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 102, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 102, 102, 0.4);
    background: linear-gradient(135deg, #777777, #aaaaaa);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
}

.btn-outline {
    background: transparent;
    color: #cccccc;
    border: 2px solid #cccccc;
}

.btn-outline:hover {
    background: #cccccc;
    color: #0a0a0a;
}

.btn-full-width {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Fixed Social Media Sidebar */
.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 15px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.social-sidebar:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.social-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-sidebar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #666666, #999999);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-sidebar-link:hover::before {
    opacity: 1;
}

.social-sidebar-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-sidebar-link:hover {
    transform: translateX(10px) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.social-sidebar-link:hover i {
    color: #ffffff;
    transform: scale(1.2);
}

/* Enable social sidebar site-wide - visible on all devices */
.social-sidebar { display: flex !important; }

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 5px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 25px;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    min-width: 70px;
    justify-content: center;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.lang-btn.active {
    background: linear-gradient(135deg, #666666, #999999);
    box-shadow: 0 2px 8px rgba(102, 102, 102, 0.3);
}

.lang-btn .flag {
    font-size: 1.1rem;
}

.lang-btn .lang-text {
    font-weight: 500;
    font-size: 0.85rem;
}

/* RTL/LTR Language Support */
[dir="ltr"] .language-switcher {
    left: 20px;
    right: auto;
}

[dir="ltr"] .social-sidebar {
    right: 20px;
    left: auto;
}

[dir="ltr"] .navbar {
    text-align: left;
}

[dir="ltr"] .nav-container {
    flex-direction: row;
}

[dir="ltr"] .hero-content {
    text-align: left;
}

[dir="ltr"] .section-title {
    text-align: left;
}

[dir="ltr"] .services-grid {
    direction: ltr;
}

[dir="ltr"] .about-content {
    direction: ltr;
}

[dir="ltr"] .contact-form {
    direction: ltr;
}

[dir="ltr"] .footer {
    direction: ltr;
}

/* Russian font support */
[lang="ru"] {
    font-family: 'Roboto', 'Arial', sans-serif;
}

[lang="ru"] .hero-title,
[lang="ru"] .section-title {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 700;
}

/* Language transition effects */
.lang-transition {
    transition: all 0.3s ease;
}

/* Mobile language switcher adjustments */
@media (max-width: 768px) {
    /* Move language switcher below the fixed navbar and make it more compact */
    .language-switcher {
        top: 72px; /* below navbar */
        right: 12px;
        gap: 2px;
        padding: 3px 4px;
    }

    [dir="ltr"] .language-switcher {
        left: 12px;
        right: auto;
    }

    .lang-btn {
        padding: 4px 8px;
        min-width: 46px;
        font-size: 0.75rem;
    }

    .lang-btn .flag {
        font-size: 0.95rem;
    }

    /* Hide text on small screens to avoid overlapping the logo/hamburger */
    .lang-btn .lang-text {
        display: none;
    }
}

/* WhatsApp specific styling */
.social-sidebar-link:nth-child(1):hover::before {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* TikTok specific styling */
.social-sidebar-link:nth-child(2):hover::before {
    background: linear-gradient(135deg, #FF0050, #000000);
}

/* Instagram specific styling */
.social-sidebar-link:nth-child(3):hover::before {
    background: linear-gradient(135deg, #E4405F, #833AB4, #F56040);
}

/* Facebook specific styling */
.social-sidebar-link:nth-child(4):hover::before {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.logo-text:hover {
    opacity: 0.6;
}

.nav-logo a {
    text-decoration: none;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #cccccc;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background: #cccccc;
    transition: width 0.3s ease;
}

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

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    /* Video Opacity - Change this value to adjust transparency (0.5 = 50%) */
    opacity: 0.6;
    /* Black and White Filter */
    filter: grayscale(100%) contrast(1.2) brightness(0.8);
}

/* Video Performance Optimizations */
@media (max-width: 768px) {
    .hero-video {
        /* Keep good video visibility on mobile */
        opacity: 0.4;
    }
    
    /* Mobile Hero Adjustments */
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        justify-content: center;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Disable video on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(20, 20, 20, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #666666, #999999);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Services Section */
.services-preview {
    background: #111111;
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.service-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.service-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(204, 204, 204, 0.1);
    border-color: rgba(204, 204, 204, 0.3);
    box-shadow: 0 20px 40px rgba(204, 204, 204, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* About Section */
.about-preview {
    background: #0a0a0a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.experience-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #cccccc;
}

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

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    background: #111111;
    position: relative;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 56px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cccccc;
    box-shadow: 0 0 0 3px rgba(204, 204, 204, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

/* Ensure consistent grid alignment in desktop */
.contact-form .form-row {
    align-items: end;
}

.contact-form textarea {
    height: auto;
    min-height: 140px;
}

/* Anchor offset for fixed navbar */
.scroll-target {
    scroll-margin-top: 110px;
}

@media (max-width: 768px) {
    .scroll-target { scroll-margin-top: 90px; }
}

/* Top hero image block */
.top-image-section {
    background: #0a0a0a;
    padding: 30px 0 10px;
}

.top-hero-img {
    display: block;
    width: min(100%, 1100px);
    height: auto;
    max-height: clamp(180px, 26vw, 320px);
    margin-inline: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    background: #0a0a0a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.error-message {
    color: #ff4757;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* Location Section */
.location-section {
    background: #0a0a0a;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    margin-bottom: 2rem;
    color: #ffffff;
}

.address-item,
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.address-item i,
.contact-item i {
    color: #cccccc;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

.workshop-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #666666;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #cccccc;
    width: 16px;
}

.contact-info a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Accessibility link styling */
.accessibility-link {
    background: linear-gradient(135deg, #4285f4, #34a853) !important;
}

.accessibility-link:hover::before {
    background: linear-gradient(135deg, #1a73e8, #137333) !important;
}

/* Footer Hours Styling */
.footer-hours {
    margin-top: 1rem;
}

.footer-hours p {
    margin: 0.8rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-hours i {
    color: #64b5f6;
    font-size: 1rem;
    width: 18px;
}

.footer-hours .days {
    font-weight: 500;
    color: #e0e0e0;
    min-width: 120px;
}

.footer-hours .hours {
    color: #81c784;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(129, 199, 132, 0.3);
}

.footer-hours .hours.closed {
    color: #f48fb1;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(244, 143, 177, 0.3);
}

/* Subtle Color Accents */
.hero-title {
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(227, 242, 253, 0.5);
}

.hero-subtitle {
    color: #b3e5fc;
    text-shadow: 0 0 20px rgba(179, 229, 252, 0.4);
}

.service-card {
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(100, 181, 246, 0.2);
    border: 1px solid rgba(100, 181, 246, 0.3);
}

.service-card h3 {
    background: linear-gradient(135deg, #ffffff, #81c784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    background: linear-gradient(135deg, #1565c0, #2e7d32);
    border: none;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0d47a1, #1b5e20);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.4);
    transform: translateY(-2px);
}

.navbar {
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 181, 246, 0.1);
}

.nav-links a:hover {
    color: #64b5f6;
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.5);
}

.social-sidebar-link:hover {
    background: linear-gradient(135deg, #1565c0, #2e7d32);
    box-shadow: 0 0 20px rgba(21, 101, 192, 0.4);
    transform: scale(1.1);
}

.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-top: 1px solid rgba(100, 181, 246, 0.1);
}

.footer h4 {
    color: #81c784;
    text-shadow: 0 0 10px rgba(129, 199, 132, 0.3);
}

.contact-form input,
.contact-form textarea {
    border: 1px solid rgba(100, 181, 246, 0.2);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #64b5f6;
    box-shadow: 0 0 15px rgba(100, 181, 246, 0.3);
}

.contact-form button {
    background: linear-gradient(135deg, #1565c0, #2e7d32);
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #0d47a1, #1b5e20);
    box-shadow: 0 5px 20px rgba(21, 101, 192, 0.4);
}

/* Gallery Styles */
.gallery-hero {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(100, 181, 246, 0.1);
}

.gallery-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(100, 181, 246, 0.5);
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #b3e5fc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(100, 181, 246, 0.3);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #1565c0, #2e7d32);
    border-color: #64b5f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, #1565c0, #2e7d32);
    border-color: #64b5f6;
    box-shadow: 0 5px 20px rgba(21, 101, 192, 0.4);
}

.filter-count {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 5px;
}

.gallery-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
    justify-items: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(even) {
    animation-delay: 0.2s;
}

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

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(100, 181, 246, 0.3);
    border-color: rgba(100, 181, 246, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.8), rgba(46, 125, 50, 0.8));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

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

.gallery-overlay-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.gallery-overlay-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: linear-gradient(135deg, #1565c0, #2e7d32);
    border: none;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(21, 101, 192, 0.3);
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #0d47a1, #1b5e20);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.4);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(100, 181, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.lightbox-title {
    color: #64b5f6;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lightbox-description {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.lightbox-next {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, #1565c0, #2e7d32);
    transform: scale(1.1);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Force navigation menu to always be visible on DESKTOP ONLY */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Keep social sidebar visible on mobile with adjusted positioning */
    .social-sidebar { 
        display: flex !important;
        left: 10px;
        gap: 10px;
        padding: 15px 10px;
    }
    
    .social-sidebar-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0;
    }
    
    /* Mobile Navigation - Force Hamburger Menu - WORKING VERSION */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer !important;
        z-index: 1002 !important;
        width: 35px !important;
        height: 30px !important;
        justify-content: space-between;
        position: relative !important;
        padding: 8px !important;
        border: 2px solid #ffffff !important;
        background: rgba(0,0,0,0.7) !important;
        border-radius: 6px !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -ms-user-select: none !important;
        touch-action: manipulation !important;
    }
    
    .bar {
        width: 100%;
        height: 3px;
        background: #ffffff;
        border-radius: 2px;
        transition: 0.3s;
        display: block;
    }
    
    .nav-menu {
        position: fixed !important;
        right: -100% !important;
        top: 80px;
        flex-direction: column !important;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: right 0.3s ease;
        padding: 2rem 0;
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        display: flex !important;
        list-style: none;
        margin: 0;
    }
    
    .nav-menu.active {
        right: 0 !important;
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure the menu is hidden when not active */
    .nav-menu:not(.active) {
        right: -100% !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        list-style: none;
    }
    
    .nav-link {
        font-size: 1.2rem !important;
        padding: 1.5rem 2rem !important;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
        text-decoration: none;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    /* Ensure container is flexible */
    .nav-container {
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.5rem 1rem;
    }

    /* Lead form layout improvements on mobile */
    .contact-form-content { 
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important; 
        gap: 1.25rem !important; 
        width: 100% !important;
    }
    .form-info { 
        order: 1 !important; 
        text-align: center; 
        width: 100% !important;
    }
    .form-info h2 { margin-bottom: 0.25rem !important; }
    .form-info .form-description { margin-bottom: 0.75rem !important; }
    .form-container { 
        order: 2 !important; 
        padding: 1.25rem !important; 
        width: 100% !important;
    }
    .contact-form { max-width: 100%; padding: 1.25rem !important; width: 100% !important; }
    .contact-form .form-row { grid-template-columns: 1fr !important; gap: 0.8rem !important; width: 100% !important; }
    .form-group input, .form-group select { height: 52px !important; font-size: 1rem !important; }
    .form-group textarea { min-height: 120px !important; }
    .btn-full-width { padding: 14px 16px !important; font-size: 1.05rem !important; }

    /* Hide mobile-only element the client requested to remove */
    .mobile-hide, .hide-on-mobile { display: none !important; }
}
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .gallery-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        margin: 0.2rem;
        min-width: auto;
    }
    
    .filter-btn i {
        font-size: 0.7rem;
    }
    
    .gallery-filter {
        justify-content: center;
        gap: 0.2rem;
        flex-wrap: wrap;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        text-align: center;
    }
    
    .experience-stats {
        justify-content: center;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .experience-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Page-specific Styles */
/* Specs Table */
.specs-section { background:#0a0a0a; }
.specs-wrapper { overflow-x:auto; }
.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}
.specs-table th,
.specs-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.specs-table th { width: 40%; text-align:right; color:#ffffff; font-weight:700; background: rgba(255,255,255,0.02); }
.specs-table td { color:#e0e0e0; }
.specs-table tr:last-child th,
.specs-table tr:last-child td { border-bottom: none; }
.specs-note { color:#9e9e9e; margin-top:10px; text-align:center; font-size:0.95rem; }

@media (max-width: 768px) {
  .specs-table th { width: 50%; font-size: 0.95rem; }
  .specs-table td { font-size: 0.95rem; }
}

/* Testimonials */
.testimonials-section { background:#0f0f0f; }
.testimonials-grid {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.testimonial-header { display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.avatar {
    width: 46px; height: 46px; border-radius: 50%; display:flex; align-items:center; justify-content:center;
    font-weight:800; color:#0a0a0a; background:#e0e0e0; box-shadow: none;
}
.avatar.female { background: #f8cdd6; }
.avatar.male { background: #cde7f8; }
.testimonial-card .meta .name { color:#fff; }
.testimonial-card .meta .service { color:#bdbdbd; font-size:0.9rem; display:block; }
.testimonial-card .quote { color:#e0e0e0; line-height:1.8; margin:6px 0 10px; }
.rating { color:#ffd54f; letter-spacing:2px; }

/* Page Hero */
.page-hero {
    height: auto;
    min-height: clamp(460px, 68vh, 720px);
    padding: 120px 0 90px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/page-hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    color: #cccccc;
    margin-bottom: 2rem;
}

.breadcrumb {
    color: #cccccc;
    font-size: 1rem;
}

.breadcrumb a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

/* Story Section */
.story-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-paragraph {
    margin-bottom: 2rem;
}

.story-paragraph p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
}

.story-image {
    position: relative;
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-caption {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
    font-style: italic;
}

/* Timeline Section */
.timeline-section {
    background: #111111;
    padding: 80px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #666666, #999999);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-left: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-right: 3rem;
    text-align: left;
}

.timeline-year {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #666666, #999999);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(102, 102, 102, 0.3);
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -30px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
    color: #cccccc;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    background: #0a0a0a;
    padding: 80px 0;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(204, 204, 204, 0.1);
    border-color: rgba(204, 204, 204, 0.3);
    box-shadow: 0 20px 40px rgba(204, 204, 204, 0.2);
}

.value-icon {
    font-size: 3rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
}

/* Statistics Section */
.stats-section {
    background: #111111;
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23333"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.1;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    background: rgba(204, 204, 204, 0.1);
    border-color: rgba(204, 204, 204, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #cccccc;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #666666, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-description {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Workshop Section */
.workshop-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.workshop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.workshop-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.workshop-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
    font-size: 1rem;
}

.workshop-features i {
    color: #cccccc;
    font-size: 1.1rem;
}

.workshop-gallery {
    position: relative;
}

.gallery-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-thumb {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    border-color: #cccccc;
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.1), rgba(10, 10, 10, 0.9)),
                url('../images/cta-bg.jpg') center/cover;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/services-hero.jpg') center/cover;
}

.services-overview {
    background: #0a0a0a;
    padding: 80px 0;
}

.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background: #111111;
}

.service-detail:nth-child(odd) {
    background: #0a0a0a;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-text h3 {
    font-size: 2rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.service-benefits i {
    color: #cccccc;
    font-size: 1.1rem;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Process Section */
.process-section {
    background: #111111;
    padding: 80px 0;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="28" height="24" patternUnits="userSpaceOnUse"><polygon points="14,2 26,8 26,16 14,22 2,16 2,8" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
    opacity: 0.1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(204, 204, 204, 0.1);
    border-color: rgba(204, 204, 204, 0.3);
    box-shadow: 0 20px 40px rgba(204, 204, 204, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #666666, #999999);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 102, 102, 0.3);
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/contact-hero.jpg') center/cover;
}

.contact-info-section {
    background: #0a0a0a;
    padding: 80px 0;
}

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

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    background: rgba(204, 204, 204, 0.1);
    border-color: rgba(204, 204, 204, 0.3);
}

.contact-info-icon {
    font-size: 3rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #ffffff;
}

.contact-note {
    font-size: 0.9rem;
    color: #999999;
    margin-top: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    background: #111111;
    padding: 80px 0;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-content.single {
    grid-template-columns: 1fr !important;
}

.form-info h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-description {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.feature-item i {
    color: #cccccc;
    font-size: 1.2rem;
    width: 20px;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.working-hours h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-grid {
    display: grid;
    gap: 1rem;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.day-hours:last-child {
    border-bottom: none;
}

.day {
    color: #ffffff;
    font-weight: 500;
}

.hours {
    color: #cccccc;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    color: #cccccc;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #666666;
    border-color: #666666;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
}

.form-privacy-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999999;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-privacy-note a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-privacy-note a:hover {
    color: #ffffff;
}

/* Map Section */
.map-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.map-info h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.directions {
    margin-bottom: 2rem;
}

.direction-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.direction-item i {
    color: #cccccc;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.direction-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.direction-item p {
    color: #cccccc;
    margin: 0;
}

.map-note {
    background: rgba(204, 204, 204, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(204, 204, 204, 0.3);
}

.map-note p {
    margin: 0;
    color: #cccccc;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.map-note i {
    color: #cccccc;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Gallery Section */
.gallery-section {
    background: #111111;
    padding: 80px 0;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(204, 204, 204, 0.2);
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

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

.gallery-overlay h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: #cccccc;
    margin: 0;
}

/* Privacy Policy Styles */
.privacy-content {
    background: #0a0a0a;
    padding: 80px 0;
}

.privacy-intro {
    background: rgba(204, 204, 204, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(204, 204, 204, 0.3);
    margin-bottom: 3rem;
}

.privacy-intro p:first-child {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-footer {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.privacy-footer p:last-child {
    color: #999999;
    font-style: italic;
    margin-bottom: 0;
    text-align: center;
}

.privacy-cta {
    background: #111111;
    padding: 80px 0;
    text-align: center;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    color: #cccccc;
    line-height: 1.8;
}

.privacy-text h2 {
    color: #ffffff;
    margin: 3rem 0 1rem 0;
    font-size: 1.5rem;
}

.privacy-text h3 {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-size: 1.2rem;
}

.privacy-text ul {
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.privacy-text li {
    margin-bottom: 0.5rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
        text-align: right !important;
    }
    
    .timeline-year {
        left: -10px !important;
        right: auto !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workshop-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: auto;
        min-height: 360px;
        padding: 120px 0 70px;
        background-position: center top;
        background-size: contain;
    }
    
    .page-title {
        font-size: 1.9rem;
    }
    
    .value-card,
    .stat-card,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .scroll-indicator {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero {
        height: auto;
        background: none;
        color: #000;
    }
    
    .section-title {
        color: #000;
    }
    
    .btn {
        border: 1px solid #000;
        color: #000;
        background: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .service-card,
    .contact-form {
        border: 2px solid #ffffff;
    }
    
    .btn-primary {
        background: #ffffff;
        color: #000000;
    }
}

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

/* Enhanced Mobile Responsive - Small Screens */
@media (max-width: 480px) {
    /* Smaller hero text on very small screens */
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    /* Adjust social bar for small screens */
    .social-sidebar {
        padding: 6px 0 !important;
        gap: 12px !important;
    }
    
    .social-sidebar-link {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }
    
    /* Increase body padding for social bar */
    body {
        padding-bottom: 55px !important;
    }
    
    /* Logo text size for very small screens */
    .logo-text {
        font-size: 1.4rem !important;
    }
}