/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== CSS VARIABLES ==================== */
:root {
    --gold: #E5B649;
    --burgundy: #6B2E2E;
    --dark-burgundy: #4A1F1F;
    --light-gold: #F0CC70;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
}

/* ==================== BODY & CONTAINER ==================== */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVIGATION STYLES ==================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 46, 46, 0.1);
    transition: all 0.4s ease;
}

.navbar.scrolled .nav-background {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    position: relative;
    z-index: 2;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.nav-brand a {
    text-decoration: none;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    position: relative;
}

.icon-line {
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.icon-line:nth-child(1) {
    width: 100%;
}

.icon-line:nth-child(2) {
    width: 70%;
}

.icon-line:nth-child(3) {
    width: 85%;
}

.nav-brand:hover .icon-line:nth-child(1) {
    width: 85%;
}

.nav-brand:hover .icon-line:nth-child(2) {
    width: 100%;
}

.nav-brand:hover .icon-line:nth-child(3) {
    width: 70%;
}

.nav-brand h2 {
    color: var(--burgundy);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-brand img {
    max-height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.3px;
}

.nav-link span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover span {
    color: var(--burgundy);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.cta-btn {
    padding: 12px 30px;
    background: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--burgundy);
}

.cta-btn:hover {
    background-color: var(--gold);
    color: var(--text-dark);
    border-color: var(--dark-burgundy);
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-page-hero {
    margin-top: 80px;
    height: auto;
    min-height: 400px;
    background: linear-gradient(135deg, #6B2E2E 0%, #4A1F1F 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.contact-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 182, 73, 0.1), transparent);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.contact-page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 182, 73, 0.08), transparent);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ==================== MAIN CONTACT SECTION ==================== */
.contact-main {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* Contact Form Section */
.contact-form-section h2 {
    font-size: 2.5rem;
    color: #6B2E2E;
    margin-bottom: 30px;
    font-weight: 800;
}

.contact-form-section p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #333333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #E5B649;
    box-shadow: 0 0 0 3px rgba(229, 182, 73, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    height: 20px;
    width: 20px;
    cursor: pointer;
    accent-color: #E5B649;
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: #666666;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6B2E2E, #E5B649);
    color: #FFFFFF;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 46, 46, 0.3);
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 46, 46, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* Contact Info Section */
.contact-info-section {
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 182, 73, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info-section h2 {
    font-size: 1.8rem;
    color: #6B2E2E;
    margin-bottom: 40px;
    font-weight: 800;
}

.info-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6B2E2E, #E5B649);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.info-item-icon svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.info-item h3 {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-item p {
    color: #666666;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

.info-item a {
    color: #E5B649;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: #6B2E2E;
}

/* Social Links in Contact Info */
.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(229, 182, 73, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B2E2E;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
}

.social-links-contact a:hover {
    background: #E5B649;
    color: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(229, 182, 73, 0.3);
}

.social-links-contact a i {
    transition: transform 0.3s ease;
}

.social-links-contact a:hover i {
    transform: scale(1.2);
}

/* ==================== MAP SECTION ==================== */
.contact-map-section {
    margin-top: 80px;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-header {
    background: linear-gradient(135deg, #6B2E2E 0%, #4A1F1F 100%);
    color: #FFFFFF;
    padding: 40px;
    text-align: center;
}

.map-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.map-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.map-container {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(229, 182, 73, 0.1), rgba(107, 46, 46, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.map-placeholder {
    text-align: center;
}

.map-placeholder-icon {
    width: 80px;
    height: 80px;
    background: #E5B649;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.map-placeholder-icon svg {
    width: 40px;
    height: 40px;
    color: #FFFFFF;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    color: #6B2E2E;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: #666666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.embed-map-btn {
    background: #6B2E2E;
    color: #FFFFFF;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.embed-map-btn:hover {
    background: #E5B649;
    color: #6B2E2E;
    transform: translateY(-2px);
}

/* ==================== FAQ SECTION ==================== */
.contact-faq {
    padding: 20px 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 20px;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #6B2E2E;
    font-weight: 800;
}

.faq-header p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: #E5B649;
    box-shadow: 0 10px 30px rgba(229, 182, 73, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #6B2E2E, #E5B649);
    color: #FFFFFF;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
    flex: 1;
}

.faq-item.active .faq-question h3 {
    color: #FFFFFF;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #E5B649;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #FFFFFF;
    transform: rotate(180deg);
}

.faq-toggle svg {
    width: 18px;
    height: 18px;
    color: #6B2E2E;
}

.faq-item.active .faq-toggle svg {
    color: #6B2E2E;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #666666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ==================== FOOTER STYLES ==================== */
.footer {
    background: var(--dark-burgundy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-burgundy) 0%, #3a1515 50%, var(--dark-burgundy) 100%);
    z-index: 1;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .brand-icon {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.footer-logo .icon-line {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.footer-logo .icon-line:nth-child(1) {
    width: 100%;
}

.footer-logo .icon-line:nth-child(2) {
    width: 70%;
}

.footer-logo .icon-line:nth-child(3) {
    width: 85%;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link:hover {
    color: var(--dark-burgundy);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 25px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact span {
    flex: 1;
}

.footer-newsletter {
    position: relative;
    z-index: 2;
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.newsletter-form input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 18px 35px;
    background: var(--gold);
    color: var(--dark-burgundy);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.newsletter-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 182, 73, 0.3);
}

.newsletter-btn:hover svg {
    transform: translateX(5px);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.copyright a {
    color: inherit;
    text-decoration: none;
}

.footer-legal {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.back-to-top:hover {
    background: var(--light-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(229, 182, 73, 0.3);
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
    .contact-container {
        gap: 60px;
    }

    .contact-info-section {
        top: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
    
    .nav-brand img {
        max-height: 45px;
    }
}

@media (max-width: 968px) {
    /* Navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 60px 20px;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }
    
    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 1.2rem;
        width: 100%;
        border-bottom: 1px solid rgba(107, 46, 46, 0.1);
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-cta {
        position: fixed;
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 400px;
        transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active ~ .nav-cta {
        bottom: 0;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Contact sections */
    .contact-page-hero {
        min-height: 300px;
        padding: 60px 20px;
    }

    .contact-page-hero h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-section {
        position: static;
        top: auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-text h3 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-page-hero {
        margin-top: 70px;
    }
    
    .contact-page-hero h1 {
        font-size: 2rem;
    }

    .contact-page-hero p {
        font-size: 1.1rem;
    }

    .contact-form-section h2 {
        font-size: 2rem;
    }

    .contact-info-section {
        padding: 35px 25px;
    }

    .map-container {
        height: 300px;
    }

    .faq-header h2 {
        font-size: 2rem;
    }
    
    .nav-brand img {
        max-height: 40px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 18px 0;
    }
    
    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-newsletter {
        padding: 40px 0;
    }

    .newsletter-text h3 {
        font-size: 1.3rem;
    }

    .newsletter-text p {
        font-size: 0.95rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .copyright {
        font-size: 0.9rem;
    }

    .footer-legal {
        gap: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .contact-page-hero {
        min-height: 250px;
        padding: 40px 20px;
    }

    .contact-page-hero h1 {
        font-size: 1.75rem;
    }

    .contact-page-hero p {
        font-size: 1rem;
    }

    .contact-main {
        padding: 60px 0;
    }

    .contact-container {
        gap: 40px;
    }

    .contact-form-section h2 {
        font-size: 1.5rem;
    }

    .contact-info-section h2 {
        font-size: 1.5rem;
    }

    .info-item-icon {
        width: 45px;
        height: 45px;
    }

    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .contact-map-section {
        border-radius: 15px;
    }

    .map-header {
        padding: 30px 20px;
    }

    .map-header h2 {
        font-size: 1.5rem;
    }

    .contact-faq {
        padding: 60px 0;
        margin-top: 60px;
    }

    .faq-header h2 {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .navbar .container {
        padding: 1rem 15px;
    }
    
    .nav-brand h2 {
        font-size: 1.2rem;
    }
    
    .brand-icon {
        width: 35px;
        height: 35px;
    }
    
    .hamburger span {
        width: 25px;
        height: 2.5px;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 30px 15px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 16px 0;
    }
    
    .nav-cta {
        padding: 15px;
    }
    
    .cta-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .nav-brand img {
        max-height: 35px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-contact li {
        gap: 12px;
        font-size: 0.95rem;
    }

    .footer-contact svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .contact-page-hero h1 {
        font-size: 1.5rem;
    }

    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 16px;
    }

    .map-placeholder h3 {
        font-size: 1.2rem;
    }

    .faq-grid {
        gap: 20px;
    }

    .faq-item {
        border-radius: 12px;
    }
    
    .nav-brand h2 {
        font-size: 1.1rem;
    }
    
    .brand-icon {
        width: 30px;
        height: 30px;
        gap: 3px;
    }
    
    .icon-line {
        height: 2.5px;
    }
    
    .hamburger span {
        width: 24px;
    }
}