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

html {
    scroll-behavior: smooth;
}

:root {
    /* Color Palette - BBQ inspired with luxury touches */
    --primary-orange: #e1862a;
    --light-orange: #efab38;
    --yellow: #ffdd71;
    --dark-orange: #c96f1a;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #2c2c2c;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --text-muted: #adb5bd;
    
    /* Shadows and Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 8rem 0;
    --section-padding-mobile: 5rem 0;
    --container-padding: 0 2rem;
    --container-padding-mobile: 0 1rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100px;
    gap: 2rem;
}

.nav-logo a {
    text-decoration: none;
    color: var(--white);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

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

.nav-menu-left {
    justify-self: start;
}

.nav-logo-center {
    justify-self: center;
}

.nav-cta-right {
    justify-self: end;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}


.nav-cta {
    display: flex;
    align-items: center;
}

/* Hide mobile CTA button on desktop */
.nav-cta-mobile {
    display: none;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

/* Hamburger Menu Animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

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

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(225, 134, 42, 0.3);
    border: 1px solid rgba(225, 134, 42, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 134, 42, 0.4);
    background: var(--light-orange);
    border-color: rgba(225, 134, 42, 0.7);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--primary-orange);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    opacity: 0.4;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
    color: var(--yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
    font-family: var(--font-display);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    background: var(--white);
    color: var(--primary-orange);
}

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

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--light-gray);
    margin-top: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.service-card.featured {
    grid-row: span 2;
}

.service-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-card.featured .service-image {
    height: 300px;
}

.service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.service-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--primary-orange);
    font-size: 0.8rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--section-padding);
    background: var(--white);
}

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

.why-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all var(--transition-normal);
    position: relative;
}

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

.why-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.why-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.about-header {
    margin-bottom: 2rem;
}

.about-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--primary-orange);
    font-weight: 500;
    font-style: italic;
}

.about-story p {
    color: var(--text-light);
    margin-bottom: 1.8rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-values {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--primary-orange);
}

.about-values h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: var(--font-display);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 0;
    background: transparent;
    transition: all var(--transition-normal);
}

.value-item:hover {
    transform: translateY(-1px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 3px 10px rgba(225, 134, 42, 0.2);
    transition: transform var(--transition-normal);
}

.value-item:hover .value-icon {
    transform: scale(1.05);
}

.value-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-family: var(--font-display);
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo-placeholder {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.photo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--white);
    transition: all var(--transition-normal);
}

.photo-frame:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.photo-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.photo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(225, 134, 42, 0.05), rgba(239, 171, 56, 0.05));
    z-index: 1;
}

.photo-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.photo-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.photo-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
    z-index: 2;
}

.photo-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-display);
}

.photo-title {
    font-size: 0.95rem;
    color: var(--primary-orange);
    font-weight: 600;
}

/* Responsive adjustments for photo placeholder */
@media (max-width: 768px) {
    .photo-frame {
        aspect-ratio: 3/4;
    }
    
    .photo-icon {
        width: 60px;
        height: 60px;
    }
    
    .photo-icon i {
        font-size: 1.5rem;
    }
    
    .photo-name {
        font-size: 1.3rem;
    }
    
    .photo-title {
        font-size: 0.9rem;
    }
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-orange);
    background: transparent;
    color: var(--primary-orange);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: transform var(--transition-normal);
}

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

.gallery-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-placeholder span {
    transform: translateY(-5px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color var(--transition-normal);
}

.lightbox-close:hover {
    color: var(--primary-orange);
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-2xl);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--white);
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 500;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Service fields container */
.service-fields {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-orange);
    width: 16px;
    text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color var(--transition-normal);
    font-family: inherit;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(225, 134, 42, 0.1);
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.course-description {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-orange);
}

.course-description h4 {
    color: var(--primary-orange);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.course-description p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Multi-select styling */
select[multiple] {
    min-height: 120px;
    padding: 10px;
}

select[multiple] option {
    padding: 8px 12px;
    margin: 2px 0;
    border-radius: 5px;
    background: var(--white);
    border: 1px solid var(--medium-gray);
}

select[multiple] option:checked {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

select[multiple] optgroup {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--light-gray);
    padding: 5px 0;
}

/* Service Fields Styling */
.service-fields-container {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(225, 134, 42, 0.05), rgba(239, 171, 56, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(225, 134, 42, 0.1);
    animation: slideInUp 0.5s ease-out;
}

.service-section {
    animation: fadeIn 0.3s ease-out;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-orange);
}

.service-header h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-header p {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Enhanced Course Descriptions */
.course-descriptions-container {
    margin-top: 1.5rem;
}

.course-description {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-orange);
    transition: all var(--transition-normal);
}

.course-description:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.course-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.course-content {
    flex: 1;
}

.course-content h4 {
    color: var(--primary-orange);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.course-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.course-details i {
    color: var(--primary-orange);
}

/* Form Submit Styling */
.form-submit {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

.submit-btn {
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.submit-btn .btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loading {
    display: flex !important;
}

.submit-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-note i {
    color: var(--primary-orange);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Input Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(225, 134, 42, 0.1);
    transform: translateY(-1px);
}

/* Placeholder Styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

/* Select Option Styling */
select option {
    padding: 10px;
    background: var(--white);
    color: var(--text-dark);
}

select option:hover {
    background: var(--light-orange);
    color: var(--white);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--light-orange);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-orange);
}

.footer-logo .logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--light-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--light-orange);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-bottom a:hover {
    color: var(--yellow);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: var(--container-padding-mobile);
    }

    .nav-container {
        grid-template-columns: auto 1fr auto;
        gap: 0.8rem;
        padding: 0 1rem;
        height: 70px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-subtitle {
        font-size: 0.8rem;
    }
    
    .hamburger {
        display: flex;
        order: 1;
    }

    .nav-logo-center {
        order: 2;
        justify-self: center;
    }
    
    .nav-cta-right {
        order: 3;
        justify-self: end;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: left var(--transition-normal);
        padding: 1.5rem 0;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        text-align: center;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all var(--transition-normal);
    }

    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        padding-left: 1rem;
    }

    .nav-menu .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Better touch targets for mobile */
    .nav-menu .nav-item {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu .nav-link {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--white);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Hide desktop CTA button on mobile */
    .nav-cta-right {
        display: none;
    }

    /* Show mobile CTA button in hamburger menu */
    .nav-cta-mobile {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-mobile {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        background: var(--primary-orange);
        color: var(--white);
        text-decoration: none;
        display: block;
        transition: all var(--transition-normal);
    }

    .btn-mobile:hover {
        background: var(--dark-orange);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .hero {
        min-height: 100vh;
        padding: 4rem 0 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 90%;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
        padding: 0 0.5rem;
        text-align: center;
        line-height: 1.5;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }

    .stat-item {
        text-align: center;
        min-width: 80px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card.featured {
        grid-row: span 1;
    }

    .service-card {
        padding: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 1.5rem;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        padding: 0 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.1rem;
    }
    
    .value-item h4 {
        font-size: 1rem;
    }
    
    .value-item p {
        font-size: 0.8rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .service-fields {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

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

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-help {
        font-size: 0.8rem;
    }

    .course-description {
        padding: 1.2rem;
        border-radius: 8px;
    }

    .course-description h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .course-description p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Service Fields Responsive */
    .service-fields-container {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .service-header h3 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .course-description {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .course-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .course-details {
        justify-content: center;
    }
    
    .submit-btn {
        min-width: 100%;
    }
    
    /* Enhanced contact form responsiveness */
    .contact-form {
        padding: 1.5rem;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .service-fields {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .form-help {
        font-size: 0.75rem;
    }
    
    .course-description {
        padding: 1rem;
        border-radius: 6px;
    }
    
    .course-description h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .course-description p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        height: 65px;
        padding: 0 0.8rem;
        gap: 0.6rem;
    }

    .nav-menu {
        top: 65px;
        padding: 1.2rem 0;
        gap: 0.8rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .btn-mobile {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .nav-cta-mobile {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }

    .nav-menu .nav-link {
        font-size: 1rem;
        padding: 0.9rem 0;
    }

    .nav-menu {
        padding: 1.2rem 0;
        gap: 0;
        top: 65px;
        max-height: calc(100vh - 65px);
    }

    .hero {
        padding: 3rem 0 1.5rem;
        min-height: 100vh;
    }

    .hero-content {
        max-width: 95%;
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 0.3rem;
        text-align: center;
        line-height: 1.4;
    }

    .hero-actions {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 1.5rem;
        font-size: 0.9rem;
        min-height: 50px;
        border-radius: 8px;
    }

    .btn-large {
        padding: 1.3rem 1.5rem;
        font-size: 0.95rem;
        min-height: 55px;
    }

    .services-grid,
    .why-grid,
    .values-grid {
        gap: 1rem;
    }

    .service-card,
    .why-card,
    .value-card {
        padding: 1.2rem;
    }

    .about-text {
        padding: 0 0.5rem;
    }

    .contact-form {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

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

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

    .section-title {
        font-size: 1.8rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
    margin-top: 100px; /* Account for fixed navbar */
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* BBQ Gallery Plugin Styles - Modern Design */
.bbq-gallery {
    margin: 3rem 0;
    padding: 0 1rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 28px;
    border: none;
    background: #f8f9fa;
    color: #6c757d;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

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

.filter-btn:hover {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, #e1862a, #f4a261);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 134, 42, 0.4);
}

.gallery-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.gallery-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 280px;
    cursor: pointer;
}

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

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e1862a, #f4a261, #e76f51);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gallery-placeholder::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.gallery-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.gallery-item:hover .gallery-placeholder i {
    transform: scale(1.2) rotate(5deg);
}

.gallery-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease;
    text-align: center;
    padding: 0 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.gallery-item:hover .gallery-placeholder span {
    transform: translateY(-5px);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(225, 134, 42, 0.9), rgba(244, 162, 97, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

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

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
    animation: pulse 2s infinite;
}

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


.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 6rem 2rem;
    color: #6c757d;
}

.gallery-empty i {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.3;
    color: #e1862a;
}

.gallery-empty p {
    font-size: 1.2rem;
    font-weight: 500;
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.gallery-load-more {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.gallery-load-more .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 134, 42, 0.3);
    text-decoration: none;
    display: inline-block;
}

.gallery-load-more .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 134, 42, 0.4);
    text-decoration: none;
}

.loading-spinner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    font-weight: 500;
}

.loading-spinner i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bbq-gallery {
        margin: 2rem 0;
        padding: 0 0.5rem;
    }

    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 3rem;
    }

    .filter-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        gap: 1.5rem;
    }

    .gallery-grid-2,
    .gallery-grid-3,
    .gallery-grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-item {
        height: 240px;
    }


    .gallery-placeholder i {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }

    .gallery-placeholder span {
        font-size: 1.1rem;
    }

    .lightbox-content {
        max-width: 95%;
        padding: 10px;
    }

    #lightbox-image {
        max-height: 70vh;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 10px 15px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .gallery-grid-2,
    .gallery-grid-3,
    .gallery-grid-4 {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
        text-align: center;
    }

    .gallery-placeholder i {
        font-size: 2.5rem;
    }

    .gallery-placeholder span {
        font-size: 1rem;
    }

}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.legal-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.legal-nav-link {
    padding: 12px 24px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: 2px solid var(--medium-gray);
}

.legal-nav-link:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.legal-section {
    margin-bottom: 4rem;
}

.legal-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-orange);
}

.legal-content-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-orange);
}

.legal-content-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-content-box h3:first-child {
    margin-top: 0;
}

.legal-content-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-content-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-content-box ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content-box li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-info h4 {
    color: var(--primary-orange);
    margin-bottom: 0.8rem;
}

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

.contact-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-nav-link {
        width: 200px;
        text-align: center;
    }
    
    .legal-content-box {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 2rem;
    }
}
/* Service Fields Styles for Contact Form */
.service-fields-container {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-orange);
    animation: slideInDown 0.5s ease-out;
}

.service-section {
    display: none;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-orange);
}

.service-header h3 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
    opacity: 0.8;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.form-help i {
    color: var(--primary-orange);
    margin-right: 0.25rem;
}

/* Course Descriptions */
.course-descriptions-container {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.course-description {
    display: none;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.course-description:last-child {
    margin-bottom: 0;
}

.course-description.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.course-description {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.course-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 15px rgba(225, 134, 42, 0.3);
}

.course-content {
    flex: 1;
}

.course-content h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.course-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.course-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-details span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--light-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.course-details i {
    color: var(--primary-orange);
}

/* Form Enhancements */
select[multiple] {
    min-height: 120px;
    padding: 0.75rem;
}

select[multiple] option {
    padding: 0.5rem;
    margin: 0.25rem 0;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

select[multiple] option:hover {
    background-color: var(--primary-orange);
    color: white;
}

select[multiple] option:checked {
    background-color: var(--primary-orange);
    color: white;
}

optgroup {
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--light-gray);
    padding: 0.5rem;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Contact Form Enhancements */
.form-errors {
    margin-bottom: 2rem;
    animation: slideInDown 0.5s ease-out;
}

.form-errors .error-message {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.form-errors .error-message h4 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-errors .error-message ul {
    margin: 0;
    padding-left: 1.5rem;
}

.form-errors .error-message li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.price-estimate {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
    animation: fadeInUp 0.5s ease-out;
}

/* Contact Page Styles */
.contact-page {
    padding: 4rem 0;
    min-height: 80vh;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.contact-success,
.contact-error {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}

.contact-success .success-message,
.contact-error .error-message {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.contact-success .success-message {
    border: 3px solid #27ae60;
}

.contact-error .error-message {
    border: 3px solid #e74c3c;
}

.contact-success .success-message i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out;
}

.contact-error .error-message i {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    animation: shake 0.5s ease-in-out;
}

.contact-success .success-message h3,
.contact-error .error-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-success .success-message p,
.contact-error .error-message p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Form Loading States */
.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

/* Enhanced Form Styling */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 134, 42, 0.2);
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #27ae60;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2327ae60' d='m2.3 6.73.94-.94 1.89-1.89.94-.94-.94-.94L3.24.94.94 3.24l-.94.94.94.94z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e74c3c'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 1.4 1.4m0-1.4-1.4 1.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

/* Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-success,
    .contact-error {
        padding: 1rem;
    }
    
    .contact-success .success-message,
    .contact-error .error-message {
        padding: 2rem 1.5rem;
    }
    
    .contact-success .success-message i,
    .contact-error .error-message i {
        font-size: 3rem;
    }
    
    .contact-success .success-message h3,
    .contact-error .error-message h3 {
        font-size: 1.5rem;
    }
}

/* Logo Styles */
.logo-image {
    max-width: 100%;
    height: auto;
    transition: var(--transition-normal);
}

/* Navigation Logo */
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo .nav-logo-image {
    max-width: 250px;
    height: auto;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 20px rgba(225, 134, 42, 0.6)) 
            drop-shadow(0 0 40px rgba(225, 134, 42, 0.3))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.nav-logo .nav-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(225, 134, 42, 0.8)) 
            drop-shadow(0 0 50px rgba(225, 134, 42, 0.4))
            drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo .footer-logo-image {
    max-width: 220px;
    height: auto;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 25px rgba(225, 134, 42, 0.7)) 
            drop-shadow(0 0 50px rgba(225, 134, 42, 0.4))
            drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.footer-logo .footer-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(225, 134, 42, 0.9)) 
            drop-shadow(0 0 60px rgba(225, 134, 42, 0.5))
            drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

/* Hero Logo */
.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-logo .hero-logo-image {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(225, 134, 42, 0.8)) 
            drop-shadow(0 0 80px rgba(225, 134, 42, 0.5))
            drop-shadow(0 0 120px rgba(225, 134, 42, 0.3))
            drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { 
        filter: drop-shadow(0 0 40px rgba(225, 134, 42, 0.8)) 
                drop-shadow(0 0 80px rgba(225, 134, 42, 0.5))
                drop-shadow(0 0 120px rgba(225, 134, 42, 0.3))
                drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    }
    100% { 
        filter: drop-shadow(0 0 50px rgba(225, 134, 42, 1)) 
                drop-shadow(0 0 100px rgba(225, 134, 42, 0.7))
                drop-shadow(0 0 150px rgba(225, 134, 42, 0.4))
                drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}


/* Responsive Logo Styles */
@media (max-width: 768px) {
    .nav-logo .nav-logo-image {
        max-width: 200px;
    }
    
    .footer-logo .footer-logo-image {
        max-width: 180px;
    }
    
    .hero-logo .hero-logo-image {
        max-width: 300px;
    }
    
}

@media (max-width: 480px) {
    .nav-logo .nav-logo-image {
        max-width: 180px;
    }
    
    .footer-logo .footer-logo-image {
        max-width: 160px;
    }
    
    .hero-logo .hero-logo-image {
        max-width: 250px;
    }
    
}

/* ========================================
   ONE-PAGE OPTIMIZATIONS
   ======================================== */

/* Enhanced Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Account for fixed navbar */
}

/* Section Transitions */
section {
    transition: all 0.3s ease;
    position: relative;
}

/* Hero Section - Full Viewport */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Scroll Indicator Enhancement */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-5px);
}

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

/* Section Spacing Optimization */
.services,
.about,
.gallery,
.contact {
    padding: var(--section-padding);
    position: relative;
}

/* Section Headers - Better Spacing */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    border-radius: 2px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Navigation Enhancement for One-Page */
.nav-link {
    position: relative;
    transition: var(--transition-normal);
}

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

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

/* Active Section Highlighting */
.nav-link.active {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Responsive Section Spacing */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .services,
    .about,
    .gallery,
    .contact {
        padding: var(--section-padding-mobile);
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* Extra small devices (320px and up) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .btn {
        padding: 1.1rem 1.2rem;
        font-size: 0.85rem;
        min-height: 48px;
    }

    .nav-container {
        height: 60px;
        padding: 0 0.6rem;
    }

    .nav-menu {
        top: 60px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .btn-mobile {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .nav-cta-mobile {
        margin-top: 0.6rem;
        padding-top: 0.6rem;
    }

    .nav-menu .nav-link {
        font-size: 0.95rem;
        padding: 0.8rem 0;
    }

    .nav-menu {
        padding: 1rem 0;
        gap: 0;
        top: 60px;
        max-height: calc(100vh - 60px);
    }
}

/* Fade-in Animation for Sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.section-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Better Focus States for Accessibility */
.nav-link:focus,
.btn:focus,
.scroll-arrow:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Smooth Transitions for All Interactive Elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* ========================================
   ABOUT SECTION PHOTO STYLES
   ======================================== */

.about-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: var(--transition-normal);
    max-width: 400px;
    margin: 0 auto;
}

.about-photo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition-normal);
}

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

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.about-photo:hover .photo-overlay {
    transform: translateY(0);
}

.photo-info {
    text-align: center;
}

.photo-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.photo-title {
    display: block;
    font-size: 1rem;
    color: var(--primary-orange);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive About Photo */
@media (max-width: 768px) {
    .about-photo {
        border-radius: 15px;
        max-width: 350px;
    }
    
    .photo-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .photo-name {
        font-size: 1.3rem;
    }
    
    .photo-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-photo {
        border-radius: 10px;
        max-width: 300px;
    }
    
    .photo-overlay {
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .photo-name {
        font-size: 1.2rem;
    }
    
    .photo-title {
        font-size: 0.8rem;
    }
    
    /* Enhanced contact form for small screens */
    .contact-form {
        padding: 1.2rem;
        border-radius: 10px;
        margin: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .service-fields {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 12px;
        font-size: 16px;
        border-radius: 5px;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .form-help {
        font-size: 0.7rem;
    }
    
    .course-description {
        padding: 0.8rem;
        border-radius: 5px;
    }
    
    .course-description h4 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .course-description p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 360px) {
    .contact-form {
        padding: 1rem;
        border-radius: 8px;
        margin: 0 0.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .service-fields {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 6px 10px;
        font-size: 16px;
        border-radius: 4px;
    }
    
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .form-help {
        font-size: 0.65rem;
    }
    
    .course-description {
        padding: 0.6rem;
        border-radius: 4px;
    }
    
    .course-description h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .course-description p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}
