/* Home Page CSS  */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-gold: #f7f8fb;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

.serif-font {
    font-family: "Work Sans", sans-serif;
}

/* Navbar Styles */
.navbar-custom {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.navbar-custom.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: "Work Sans", sans-serif;
    font-size: 1.8rem;
    color: var(--primary-white) !important;
    font-weight: 600;
    position: relative;
    width: 120px;
    height: 72px;
    display: flex;
    align-items: center;
}

.navbar-logo {
    width: 160px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 70%;
    transform: translateY(-50%);
}

.navbar-brand span {
    color: #f7f8fb;
}

.nav-link {
    color: var(--primary-white) !important;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
        color: #dee2ef  !important;
    border-bottom: 2px solid #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f7f8fb;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/*.nav-link:hover::after {*/
/*    width: 80%;*/
/*}*/

.navbar-toggler {
    border-color: #f7f8fb;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.96) 0%, rgba(18, 18, 18, 0.98) 100%),
        radial-gradient(circle at 50% 35%, rgba(212, 175, 55, 0.12) 0%, transparent 42%);
    min-height: 86vh;
    display: flex;
    align-items: center;
    padding: 135px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(780px, 80%);
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.16), transparent);
    pointer-events: none;
    transform: translateX(-50%);
    opacity: 0.45;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #f7f8fb;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid #f7f8fb;
}

.hero-title {
    font-family: "Work Sans", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f7f8fb;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hero-highlights {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-highlights span {
    border: 1px solid rgba(212, 175, 55, 0.55);
    color: #f7f8fb;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.btn-custom {
    background: #f7f8fb;
    color: var(--primary-black);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-custom:hover {
    background: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-white);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-white);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-left: 1rem;
}

.btn-outline-custom:hover {
    background: var(--primary-white);
    color: var(--primary-black);
}

/* Stats Section */
.stats-section {
    background: var(--primary-white);
    padding: 80px 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--light-gray);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 3rem;
    color: #f7f8fb;
    margin-bottom: 1rem;
}

.stat-number {
    font-family: "Work Sans", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.section-title {
    font-family: "Work Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #f7f8fb;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: #f7f8fb;
    font-weight: 600;
}

/* Brand Promise Section */
.brand-promise-section {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 2;
    width: 100%;
}

.brand-promise-image {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.brand-promise-copy {
    color: #d7d7d7;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.brand-promise-copy p {
    margin-bottom: 1.25rem;
}

.brand-promise-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-promise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-white);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.brand-promise-item i {
    width: 42px;
    height: 42px;
    border: 1px solid #f7f8fb;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f7f8fb;
    flex: 0 0 auto;
}

.brand-promise-note {
    font-family: "Work Sans", sans-serif;
    font-size: 1.55rem;
    line-height: 1.55;
    color: var(--primary-white);
    max-width: 680px;
    margin: 0;
}

.hero-brand-promise .section-title {
    color: var(--primary-white);
}

/* Journey Timeline */
.journey-section {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 100px 0;
}

.journey-section .section-title {
    color: var(--primary-white);
}

.timeline-item {
    padding: 2rem;
    border-left: 3px solid #f7f8fb;
    margin-left: 2rem;
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 2.5rem;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #f7f8fb;
    border: 3px solid var(--primary-black);
}

.timeline-year {
    color: #f7f8fb;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-family: "Work Sans", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-desc {
    color: #aaa;
    line-height: 1.8;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 100px 0;
    text-align: center;
}

.quote-text {
    font-family: "Work Sans", sans-serif;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--primary-white);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.4;
}

.quote-author {
    color: #f7f8fb;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Contact Section */
.contact-section {
    background: #161616;
    padding: 100px 0;
}

.contact-card {
    background: #f8f9fa00;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 10px #fff;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #f7f8fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-black);
}

.contact-title {
    font-family: "Work Sans", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #f7f8fb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-black);
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    font-family: "Work Sans", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #f7f8fb;
}

.footer-tagline {
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
}

.social-links {
    margin: 2rem 0;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    line-height: 50px;
    margin: 0 0.5rem;
    color: #f7f8fb;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f7f8fb;
    color: var(--primary-black);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 2rem;
    color: #666;
}

.copyright {
    background: #070707;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    color: var(--primary-white);
    font-size: 0.95rem;
}

.copyright a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #f7f8fb !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image img {
        height: auto;
        margin-top: 3rem;
    }

    .btn-outline-custom {
        margin-left: 0;
        margin-top: 1rem;
    }

    .quote-text {
        font-size: 1.8rem;
    }

    .brand-promise-image {
        max-height: 620px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .brand-promise-section {
        padding: 70px 0;
    }

    .brand-promise-image {
        max-height: 540px;
    }

    .brand-promise-note {
        font-size: 1.3rem;
    }
}

/* Contact Page CSS  */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-gold: #D4AF37;
    --light-gray: #f8f9fa;
    --dark-gray: #2c2c2c;
}

body {
    font-family: "Work Sans", sans-serif;
    overflow-x: hidden;
}

.serif-font {
    font-family: "Work Sans", sans-serif;
}

/* Navbar Styles */
.navbar-custom {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.navbar-custom.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: "Work Sans", sans-serif;
    font-size: 1.8rem;
    color: var(--primary-white) !important;
    font-weight: 600;
    position: relative;
    width: 120px;
    height: 72px;
    display: flex;
    align-items: center;
}


.navbar-brand span {
    color: #f7f8fb;
}

.nav-link {
    color: var(--primary-white) !important;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #dee2ef  !important;
    border-bottom: 2px solid #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f7f8fb;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/*.nav-link:hover::after,*/
/*.nav-link.active::after {*/
/*    width: 80%;*/
/*}*/

.navbar-toggler {
    border-color: #f7f8fb;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero h1 {
    font-family: "Work Sans", sans-serif;
    font-size: 3.5rem;
    color: var(--primary-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-hero p {
    color: #aaa;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #f7f8fb;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid #f7f8fb;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    background: #171717;
}

.contact-card {
    background: #f8f9fa00;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 10px #fff;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #f7f8fb;
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f7f8fb 0%, #f5f6fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: rotateY(360deg);
}

.contact-card h3 {
    font-family: "Work Sans", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f5f6fa;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #f7f8fb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-card a:hover {
    color: var(--primary-black);
}

.contact-hours {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: #171717;
}

.section-title {
    font-family: "Work Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #f7f8fb;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.form-container {
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.8rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #f7f8fb;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, #f7f8fb 0%, #f5f6fa 100%);
    color: var(--primary-black);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #E5C158 0%, #f7f8fb 100%);
}

/* Map Section */
.map-section {
    padding: 0;
    background: var(--primary-white);
}

.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.map-overlay h4 {
    font-family: "Work Sans", sans-serif;
    margin-bottom: 0.5rem;
    color: #f7f8fb;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--primary-white);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--light-gray);
    color: var(--primary-black);
    font-weight: 600;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f7f8fb 0%, #f5f6fa 100%);
    color: var(--primary-black);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.8;
}

/* Social Media Section */
.social-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
}

.social-section h2 {
    font-family: "Work Sans", sans-serif;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.social-section p {
    color: #888;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #f7f8fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f7f8fb;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #f7f8fb;
    color: var(--primary-black);
    transform: translateY(-5px) rotate(360deg);
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-tagline {
    color: #f7f8fb;
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.copyright {
    background: #070707;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    color: var(--primary-white);
    font-size: 0.95rem;
}

.copyright a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #f7f8fb !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .map-overlay {
        padding: 1rem 2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
}

/* Success Message */
.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #28a745;
}