/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ea580c;
    --secondary-orange: #fb923c;
    --accent-orange: #fed7aa;
    --black: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #475569;
    --border-gray: #e2e8f0;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    color: #333;
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ==================== SECTION LABELS & TITLES ==================== */
.section-label {
    color: #e7ac3c;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-align: center;
    font-family: 'Red Hat Display', sans-serif;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

/* ==================== HEADER / NAVBAR ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    padding: 0 5vw;
    border-radius: 0 0 5px 5px;
    min-height: 65px;
}

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

.nav-logo svg {
    width: 45px;
    height: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 22px 14px;
    display: block;
    transition: opacity 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links li a:hover {
    opacity: 0.7;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('https://tpservicesca.com/wp-content/uploads/2025/09/L1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 160, 40, 0.75);
    color: var(--white);
    padding: 3px 160px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-icon-svg {
    flex-shrink: 0;
    vertical-align: middle;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Hero Features Bar */
.hero-features {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    background: rgba(50, 50, 50, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 35px 50px;
    margin-top: 2px;
    margin-bottom: 40px;
    max-width: 1000px;
    width: 100%;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ==================== ORANGE DIVIDER ==================== */
.orange-divider {
    height: 55px;
    background-color: #E16E1A;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.service-features li {
    color: var(--dark-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '\2713';
    color: var(--primary-orange);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-button {
    display: block;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.2);
    font-size: 1rem;
}

.service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}

/* ==================== ABOUT US SECTION ==================== */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-media {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 6px 6px 18px 0px rgba(0, 0, 0, 0.3);
}

.about-image,
.about-video {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.about-logo-overlay {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.logo-tp {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.logo-diamond {
    margin: 4px 0;
}

.logo-pavers {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
}

.logo-by {
    font-size: 0.55rem;
    color: var(--medium-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content .section-label {
    text-align: left;
}

.about-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

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

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--black);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Reviews Carousel */
.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.review-nav {
    background: none;
    border: 1px solid var(--border-gray);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--dark-gray);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.review-nav:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.review-card {
    flex: 1;
    text-align: center;
}

.review-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 10px;
    position: relative;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-platform {
    position: absolute;
    bottom: -2px;
    right: calc(50% - 35px);
    background: white;
    border-radius: 50%;
    padding: 2px;
}

.review-info {
    margin-bottom: 8px;
}

.review-name {
    display: block;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.review-date {
    color: var(--medium-gray);
    font-size: 0.8rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 1.2rem;
}

.review-stars .verified {
    color: #3b82f6;
    font-size: 0.9rem;
    margin-left: 4px;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(234, 88, 12, 0.25);
}

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

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item-name {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
}

.modal-close,
.modal-nav {
    position: absolute;
    background-color: rgba(30, 30, 30, 0.7);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease;
    z-index: 10;
}

.modal-close:hover,
.modal-nav:hover {
    background-color: var(--primary-orange);
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 24px;
}

.modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-caption {
    text-align: center;
    color: #ccc;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-section .section-label {
    text-align: left;
}

.faq-title {
    text-align: left;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 3px solid #e16e1a;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    gap: 15px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--black);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 22px 18px;
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.btn-call-now {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 16px 30px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.25);
}

.btn-call-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}

/* ==================== MAP SECTION ==================== */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.map-container {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 2px solid var(--accent-orange);
}

.map-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.map-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
}

.header-text {
    position: relative;
    z-index: 1;
}

.map-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.map-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.map-overlay-stats {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-stats {
    display: flex;
    gap: 2rem;
    color: var(--white);
    justify-content: center;
}

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

.map-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.map-canvas {
    height: 600px;
    width: 100%;
}

.map-footer {
    background: var(--light-gray);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-gray);
}

.map-footer p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
    font-size: 1rem;
}

.service-coverage-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-section .section-label {
    text-align: left;
}

.contact-title {
    text-align: left;
    margin-bottom: 35px;
}

.contact-form {
    max-width: 100%;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
}

.full-width {
    margin-bottom: 20px;
}

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

.form-submit {
    text-align: right;
}

.btn-submit {
    background: var(--primary-orange);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.25);
    font-family: var(--font-primary);
}

.btn-submit:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--black);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
    border-top: 3px solid var(--primary-orange);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-orange);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-section p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-features {
        padding: 20px 30px;
        gap: 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-label,
    .about-title {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        padding: 20px 0;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        padding: 12px 30px;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .hero-badge {
        padding: 10px 30px;
        font-size: 0.95rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

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

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

    .gallery-item-name {
        font-size: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .about-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .map-header {
        flex-direction: column;
        padding: 1.5rem;
    }

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

    .map-header h3 {
        font-size: 1.5rem;
    }

    .map-canvas {
        height: 400px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .modal-prev {
        left: 5px;
    }

    .modal-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
    }
}