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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* Promotion Popup */
.promotion-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.promotion-popup.active {
    opacity: 1;
    visibility: visible;
}

.promotion-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border: 3px solid #D4AF37;
    border-radius: 20px;
    padding: 3rem;
    max-width: 90vw;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    animation: popupSlideIn 0.5s ease-out;
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.promotion-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s linear infinite;
}

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

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

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    color: #ffffff;
    transform: scale(1.2);
}

.promotion-header h2 {
    color: #D4AF37;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
}

.reopening-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.date-badge {
    background: linear-gradient(135deg, #D4AF37, #F4E4A1);
    color: #000000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.date-separator {
    color: #D4AF37;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
}

.promotion-header .year {
    color: #ffffff;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.promotion-body {
    margin: 2rem 0;
}

.promo-item {
    display: flex;
    align-items: center;
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
}

.promo-icon {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-right: 1.5rem;
    min-width: 60px;
}

.promo-text h3 {
    color: #D4AF37;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.promo-text p {
    color: #cccccc;
    font-size: clamp(0.8rem, 2vw, 1rem);
    margin: 0;
}

.promo-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.promo-highlight p {
    color: #ffffff;
    margin: 0.5rem 0;
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
}

.promo-highlight p:first-child {
    color: #D4AF37;
    font-weight: bold;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.promotion-footer {
    margin-top: 2rem;
}

.promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #F4E4A1);
    color: #000000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    margin-bottom: 1rem;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

.promo-disclaimer {
    color: #888888;
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    margin: 0;
    font-style: italic;
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
    .promotion-popup {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .promotion-content {
        padding: 1.5rem;
        margin: 0;
        border-radius: 15px;
        border-width: 2px;
        max-height: 85vh;
        width: 95%;
    }
    
    .promotion-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }
    
    .reopening-dates {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .date-separator {
        display: none;
    }
    
    .date-badge {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    
    .promotion-header .year {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
    }
    
    .promotion-body {
        margin: 1.5rem 0;
    }
    
    .promo-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .promo-icon {
        margin-right: 0;
        margin-bottom: 0.8rem;
        font-size: 2rem;
    }
    
    .promo-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .promo-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .promo-highlight {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .promo-highlight p {
        font-size: 0.95rem;
        margin: 0.3rem 0;
    }
    
    .promo-highlight p:first-child {
        font-size: 1.05rem;
    }
    
    .promotion-footer {
        margin-top: 1.5rem;
    }
    
    .promo-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .promo-disclaimer {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-top: 0.8rem;
    }
}

@media (max-width: 480px) {
    .promotion-content {
        padding: 1rem;
        width: 98%;
        max-height: 80vh;
    }
    
    .promotion-header h2 {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .date-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .promotion-header .year {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .promo-item {
        padding: 0.8rem;
    }
    
    .promo-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .promo-text h3 {
        font-size: 1rem;
    }
    
    .promo-text p {
        font-size: 0.85rem;
    }
    
    .promo-highlight {
        padding: 0.8rem;
    }
    
    .promo-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .popup-close {
        font-size: 1.5rem;
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 0.5rem 0;
}

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

.nav-logo h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #D4AF37;
    letter-spacing: 3px;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.staff-link {
    background: linear-gradient(135deg, #D4AF37, #F4E4A1);
    color: #000000 !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.staff-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.staff-link::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.1"/></svg>');
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 100;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    color: #D4AF37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: 2px;
}

.hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

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

.hero-info {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
}

.info-item {
    text-align: center;
    min-width: 100px;
}

.info-label {
    display: block;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    color: #D4AF37;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    display: block;
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    color: #ffffff;
    font-weight: 300;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    min-width: 180px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #F4E4A1);
    color: #000000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

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

.btn-secondary:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 100;
    color: #D4AF37;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-header p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

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

.about-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-text p {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-icon {
    color: #D4AF37;
    margin-right: 1rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #D4AF37;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    background: #000000;
}

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

.service-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 300;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gallery-item:hover .image-placeholder {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}

/* Location Section */
.location {
    background: #000000;
}

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

.info-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #D4AF37;
}

.info-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    font-weight: 300;
}

.info-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #D4AF37;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}

.map-placeholder p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: none;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

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

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    font-weight: 300;
}

.contact-item p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

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

.social-link {
    color: #D4AF37;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #D4AF37;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D4AF37;
    color: #000000;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #333333;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333333;
    border-radius: 5px;
    color: #ffffff;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

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

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #333333;
    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: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-section p,
.footer-section li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.footer-section a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #888888;
}

.footer-link {
    color: #D4AF37;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Better mobile navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #333;
        font-size: 1.1rem;
    }

    .staff-link {
        margin: 1rem 2rem;
        width: auto;
        text-align: center;
    }
    
    /* Hero improvements */
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }

    .hero-info {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 2rem;
    }

    /* Grid layouts */
    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    /* Service cards */
    .service-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }

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

    /* Contact form */
    .contact-form {
        padding: 2rem;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 1.5rem;
    }

    .hero-info {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 160px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 10px;
    }

    section {
        padding: 2.5rem 0;
    }
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

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