/* Design System Colors */
:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8941F;
    --primary-teal: #304B54;
    --black: #000000;
    --white: #ffffff;
    --text-gray: #333333;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #304B54 0%, #000000 20%, #000000 80%, #304B54 100%);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.02);
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding-top: 200px;
    padding-bottom: 4rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-image-grid {
    width: 428px;
    height: 665px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.image-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.image-row:nth-child(2) {
    padding-top: 60px;
}

.grid-img {
    width: 185px;
    height: 113px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: #f8f9fa;
    position: relative;
    object-fit: contain;
    object-position: center;
}

.grid-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    border-radius: 8px;
}

.grid-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 56px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: normal;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.hero-subtitle .highlight {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 24px;
    display: block;
}

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

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #304B54 0%, #000000 50%, #304B54 100%);
    color: var(--white);
    border: 3px solid #304B54;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #000000 0%, #304B54 50%, #000000 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(48, 75, 84, 0.5);
    border-color: #000000;
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #304B54 0%, #000000 50%, #304B54 100%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #304B54 0%, #000000 50%, #304B54 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(48, 75, 84, 0.5);
    border: 3px solid #304B54;
}

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

.section-header h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 52px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #ffffff;
}

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

/* Service Tabs - Elegant Folder Style */
.service-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
}

.tab-button {
    padding: 1.2rem 2.5rem 1rem 2.5rem;
    background: linear-gradient(180deg, #f0f4f8 0%, #e1e8ed 100%);
    border: 2px solid #d1d5db;
    border-bottom: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    position: relative;
}

.tab-button i {
    font-size: 1.1rem;
    color: #304B54;
}

.tab-button:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    transform: translateY(-2px);
    border-color: #304B54;
}

.tab-button.active {
    background: linear-gradient(135deg, #304B54 0%, #000000 50%, #304B54 100%);
    color: #ffffff;
    transform: translateY(0);
    z-index: 3;
    border: none;
    border-bottom: none;
}

.tab-button.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #304B54 0%, #000000 50%, #304B54 100%);
    z-index: 4;
}

.tab-button.active i {
    color: #ffffff;
}

/* Tab Content */
.tab-content-container {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    background: linear-gradient(135deg, #304B54 0%, #000000 50%, #304B54 100%);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: none;
    position: relative;
    z-index: 1;
    margin-top: -2px;
}

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

.tab-img-single {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tab-img-single:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.tab-info h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
}

.tab-info p {
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.services-list li {
    color: #ffffff;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.6rem 0.8rem 0.6rem 2.2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.services-list li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    border-left-color: rgba(255, 255, 255, 0.6);
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0.8rem;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Locations Section */
.locations {
    padding: 6rem 0;
    background: #ffffff;
}

.locations-card {
    background: linear-gradient(135deg, #304B54 0%, #000000 50%, #304B54 100%);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: none;
    max-width: 1000px;
    margin: 0 auto;
}

.locations-title {
    font-family: 'Instrument Serif', serif;
    font-size: 52px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.locations-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    line-height: 1.6;
}

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

.location-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

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

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

.gallery-overlay h4 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.gallery-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #D4AF37;
}

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

.gallery-placeholder p {
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-info-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.contact-info-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: #304B54;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #333333;
    margin: 0;
    font-size: 0.95rem;
}

.social-media {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.social-media h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

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

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: #304B54;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-links-contact a:hover {
    background: linear-gradient(135deg, #304B54 0%, #000000 50%, #304B54 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(48, 75, 84, 0.4);
}

.map-container {
    width: 100%;
    max-width: 900px;
    height: 350px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4a5568;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.contact-form h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #304B54;
}

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

/* Gallery Page Styles */
.gallery-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding-top: 150px;
    padding-bottom: 4rem;
    text-align: center;
}

.gallery-hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
}

.gallery-hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #333333;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-page {
    padding: 4rem 0 6rem;
    background: #ffffff;
    min-height: 100vh;
}

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

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid #000000;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(48, 75, 84, 0.1);
    border-color: #304B54;
}

.filter-btn.active {
    background: linear-gradient(135deg, #304B54 0%, #000000 50%, #304B54 100%);
    color: #ffffff;
    border-color: #304B54;
}

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

.gallery-card {
    transition: all 0.3s ease;
}

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

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

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

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

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

.gallery-overlay h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

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

/* Contact Page Styles */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding-top: 150px;
    padding-bottom: 4rem;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #333333;
    max-width: 700px;
    margin: 0 auto;
}

.contact-page-section {
    padding: 4rem 0 6rem;
    background: #ffffff;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-section h3,
.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #D4AF37;
    transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: 180px;
        padding-bottom: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 3rem;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-subtitle .highlight {
        font-size: 1.6rem;
    }
    
    .hero-image-grid {
        width: 100%;
        max-width: 500px;
    }
    
    .grid-img {
        height: 70px;
    }
    
    .tab-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }
    
    .contact-top {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #000000;
        width: 80%;
        max-width: 300px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 2rem 1rem;
        padding-top: 120px;
        gap: 2rem;
    }
    
    .hero-image-grid {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 1rem;
    }
    
    .image-row {
        display: contents;
    }
    
    .grid-img {
        width: 100%;
        min-height: 80px;
        height: 80px;
        background: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        position: relative;
        object-fit: contain;
        object-position: center;
    }
    
    .grid-img::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
        border-radius: 12px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-subtitle .highlight {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .service-tabs {
        flex-direction: column;
        padding: 0 1rem;
        gap: 0.3rem;
    }
    
    .tab-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .tab-layout {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .tab-img-single {
        max-width: 100%;
        height: 250px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .locations-card {
        padding: 2rem 1.5rem;
    }
    
    .locations-title {
        font-size: 2.5rem;
    }
    
    .locations-intro {
        font-size: 15px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-item {
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-full-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .gallery-img-wrapper {
        height: 280px;
    }
    
    .contact-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-layout {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
        padding: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        max-width: 100%;
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        height: 80px;
        margin: 0 auto 1rem;
    }
    
    .social-links,
    .social-links-contact {
        justify-content: center;
    }
    
    .gallery-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-hero p,
    .contact-hero p {
        font-size: 1rem;
    }
    
    .gallery-filters {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .filter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}