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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: #E9AF1F;
}

.logo-text {
    font-weight: 600;
    font-size: 1.25rem;
    color: #1f2937;
}

.nav-links {
    display: none;
    gap: 1.5rem;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

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

.btn-primary {
    background: #E9AF1F;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #666;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1758686254056-6cd980b9aaee?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxlbGRlcmx5JTIwY2FyZSUyMGhvbWUlMjBoYXBweSUyMHNlbmlvcnN8ZW58MXx8fHwxNzY5NzYwOTE4fDA&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(158, 118, 19, 0.8), rgba(233, 175, 31, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #333;
    padding: 0 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #333;
}

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

.btn-hero-primary {
    background: #333;
    color: #E9AF1F;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.btn-hero-primary:hover {
    background: #333;
}

.btn-hero-secondary {
    border: 2px solid #333;
    color: #333;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1.125rem;
    transition: background 0.3s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Section Styles */
.section-about {
    padding: 5rem 1rem;
    background: #f9fafb;
}

.section-services {
    padding: 5rem 1rem;
}

.section-facilities {
    padding: 5rem 1rem;
    background: #f9fafb;
}

.section-testimonials {
    padding: 5rem 1rem;
}

.section-contact {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #E9AF1F, #666);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-white {
    color: white;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header-white .section-title {
    color: white;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.section-description-white {
    font-size: 1.25rem;
    color: #dbeafe;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon-blue {
    background: #dbeafe;
    color: #E9AF1F;
}

.card-icon-green {
    background: #dcfce7;
    color: #16a34a;
}

.card-icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.card-text {
    color: #6b7280;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-icon {
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-text {
    color: #4b5563;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    height: 16rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
}

.gallery-text {
    color: white;
    font-size: 1.25rem;
    padding: 1.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #facc15;
    font-size: 1.25rem;
}

.testimonial-text {
    color: #6b7280;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-name {
    font-weight: 600;
    color: #1f2937;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.contact-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #dbeafe;
}

.contact-value-small {
    color: #dbeafe;
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    color: #1f2937;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #E9AF1F;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
}

.form-button {
    width: 100%;
    background: #E9AF1F;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.form-button:hover {
    background: #666;
}

/* Footer */
.footer {
    background: #eee;
    color: #333;
    padding: 2rem 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-icon {
    color: #60a5fa;
}

.footer-text {
    font-size: 1.125rem;
}

.footer-subtitle {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #E9AF1F;
    outline-offset: 2px;
}

.text-danger {
    color: #e74c3c;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-left: 20px;
    margin-bottom: 10px;
    color: red;
    font-size: 14px;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}