/* ========================================
   EDUARDO XAVIER MASTER HUB v4
   Almost-Black Green + Gold + No Numbers
   Fonts: Playfair Display + Lato + Inter
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #F2EDE4;
    background-color: #050A07;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #F2EDE4;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.subsection-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C4A35A;
    margin-bottom: 2rem;
}

/* ========================================
   GOLD ACCENT LINES
   ======================================== */
.gold-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C4A35A, transparent);
    margin: 0 auto 2.5rem auto;
    box-shadow: 0 0 12px rgba(196, 163, 90, 0.4);
}

.gold-line-small {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C4A35A, rgba(196, 163, 90, 0.5));
    margin-bottom: 1.5rem;
    box-shadow: 0 0 8px rgba(196, 163, 90, 0.3);
}

/* ========================================
   NAVIGATION
   ======================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(7, 20, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(196, 163, 90, 0.1);
}

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

.nav-logo {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #F2EDE4;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo-main {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #C4A35A;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #F2EDE4;
    opacity: 0.8;
    text-transform: uppercase;
    text-align: center;
}

.nav-logo:hover .logo-tagline {
    color: #C4A35A;
    opacity: 1;
}

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

.nav-links a {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #F2EDE4;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C4A35A;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #C4A35A;
}

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

.nav-cta {
    padding: 0.6rem 1.5rem;
    border: 1px solid #C4A35A;
    border-radius: 0;
    background: transparent;
    color: #C4A35A !important;
    transition: all 0.3s;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: #C4A35A;
    color: #071410 !important;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 10000;
}

.lang-btn {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    background: none;
    border: none;
    color: rgba(242, 237, 228, 0.5);
    cursor: pointer;
    transition: color 0.3s;
    pointer-events: auto;
    z-index: 10000;
    position: relative;
}

.lang-btn.active {
    color: #C4A35A;
}

.lang-btn:hover {
    color: #F2EDE4;
}

.lang-separator {
    color: rgba(242, 237, 228, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #F2EDE4;
    transition: all 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #071410 0%, #0D2018 50%, #050A07 100%);
    padding: 8rem 2rem 4rem 2rem;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

.hero-accent-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C4A35A, transparent);
    margin: 0 auto 3rem auto;
    box-shadow: 0 0 10px rgba(196, 163, 90, 0.5);
}

.hero-title {
    font-size: 6.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C4A35A;
    margin-bottom: 1rem;
}

.hero-location {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(242, 237, 228, 0.7);
    margin-bottom: 3rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 2s ease-out 1s both;
}

.scroll-indicator span {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(242, 237, 228, 0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #C4A35A, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #C4A35A;
    color: #071410;
    border-color: #C4A35A;
    box-shadow: 0 4px 15px rgba(196, 163, 90, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: #C4A35A;
    box-shadow: 0 6px 25px rgba(196, 163, 90, 0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: #F2EDE4;
    border-color: rgba(242, 237, 228, 0.5);
}

.btn-ghost:hover {
    background: rgba(242, 237, 228, 0.1);
    color: #F2EDE4;
    border-color: #F2EDE4;
    transform: translateY(-2px);
}

/* ========================================
   SECTIONS
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 10rem 0;
}

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

.section-intro {
    font-size: 1.25rem;
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem auto;
    color: rgba(242, 237, 228, 0.9);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: #071410;
}

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

.about-image {
    position: relative;
}

.portrait-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(196, 163, 90, 0.2);
}

.image-placeholder {
    width: 100%;
    padding-bottom: 125%;
    background: linear-gradient(135deg, #0D2018 0%, #091A0F 100%);
    border: 1px solid rgba(196, 163, 90, 0.2);
    position: relative;
}

.image-placeholder::before {
    content: 'EDUARDO XAVIER';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: rgba(196, 163, 90, 0.3);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: rgba(242, 237, 228, 0.9);
}

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

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

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C4A35A;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(242, 237, 228, 0.7);
}

.awards-note {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(196, 163, 90, 0.8);
    margin-top: 2rem;
    letter-spacing: 0.05em;
}

/* Second stats row adjustment */
.stats-row:last-of-type {
    grid-template-columns: repeat(3, 1fr);
}

/* ========================================
   UNIVERSE SECTION
   ======================================== */
.universe-section {
    background: #0D2018;
}

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

.universe-card {
    background: rgba(7, 20, 16, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.25);
    padding: 3.5rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.universe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 163, 90, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
    pointer-events: none !important;
}

.universe-card:hover {
    transform: translateY(-12px);
    border-color: rgba(196, 163, 90, 0.6);
    box-shadow: 0 8px 30px rgba(196, 163, 90, 0.2), 0 0 40px rgba(196, 163, 90, 0.1);
}

.universe-card:hover::before {
    opacity: 1;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #C4A35A;
    position: relative;
    z-index: 10;
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(242, 237, 228, 0.8);
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.card-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #C4A35A !important;
    text-decoration: none !important;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    z-index: 9999 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.card-link:hover {
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* ========================================
   EXECUTIVE SECTION
   ======================================== */
.executive-section {
    background: #0D2018;
}

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

.executive-card {
    background: rgba(7, 20, 16, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.2);
    padding: 3rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.executive-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 163, 90, 0.5);
    box-shadow: 0 6px 25px rgba(196, 163, 90, 0.15);
}

.executive-cta {
    text-align: center;
}

.executive-statement {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: #C4A35A;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

/* ========================================
   WEDDINGS SECTION
   ======================================== */
.weddings-section {
    background: #071410;
}

.wedding-awards {
    text-align: center;
    margin: 3rem auto 5rem;
    max-width: 600px;
}

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

.award-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.award-title {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C4A35A;
}

.award-years {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(242, 237, 228, 0.7);
}

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

.wedding-card {
    background: rgba(13, 32, 24, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.2);
    padding: 3rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wedding-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 163, 90, 0.5);
    box-shadow: 0 6px 25px rgba(196, 163, 90, 0.15);
}

.wedding-cta {
    text-align: center;
}

.wedding-statement {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: #C4A35A;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

/* ========================================
   CONSULTING SECTION
   ======================================== */
.consulting-section {
    background: #0D2018;
}

.consulting-for {
    margin-bottom: 4rem;
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.for-whom-grid span {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #F2EDE4;
    padding: 1rem;
    background: rgba(7, 20, 16, 0.5);
    border: 1px solid rgba(196, 163, 90, 0.2);
}

.consulting-services {
    margin-bottom: 3rem;
}

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

.service-item h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #C4A35A;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(242, 237, 228, 0.8);
}

.consulting-quote {
    text-align: center;
    margin: 3rem 0;
}

.consulting-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(242, 237, 228, 0.9);
}

.consulting-cta {
    text-align: center;
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */
.locations-section {
    background: #071410;
}

.locations-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.location-card {
    background: rgba(13, 32, 24, 0.5);
    border: 1px solid rgba(196, 163, 90, 0.2);
    padding: 3rem 2rem;
    text-align: center;
}

.location-card-expanded {
    background: rgba(13, 32, 24, 0.6);
    border: 2px solid rgba(196, 163, 90, 0.3);
    padding: 4rem 3rem;
    text-align: center;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.location-card-expanded:hover {
    border-color: rgba(196, 163, 90, 0.6);
    box-shadow: 0 12px 40px rgba(196, 163, 90, 0.2);
    transform: translateY(-5px);
}

.location-name {
    font-size: 2rem;
    color: #C4A35A;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.location-address {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(242, 237, 228, 0.9);
    margin-bottom: 1.5rem;
}

.location-phone {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #C4A35A;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    margin-bottom: 2rem;
}

.location-phone:hover {
    opacity: 0.7;
    letter-spacing: 0.05em;
}

.location-services {
    font-size: 1rem;
    color: rgba(242, 237, 228, 0.7);
    margin-bottom: 1rem;
    font-style: italic;
}

.location-hours {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(196, 163, 90, 0.8);
    text-transform: uppercase;
}

.locations-note {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: rgba(242, 237, 228, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: #0D2018;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C4A35A;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
    background: rgba(7, 20, 16, 0.5);
    border: 1px solid rgba(196, 163, 90, 0.2);
    color: #F2EDE4;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C4A35A;
    background: rgba(7, 20, 16, 0.8);
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #050A07;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(196, 163, 90, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(196, 163, 90, 0.1);
}

.footer-brand h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #C4A35A;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: rgba(242, 237, 228, 0.6);
}

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

.footer-column h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C4A35A;
    margin-bottom: 1rem;
}

.footer-column a,
.footer-column p {
    font-size: 0.9rem;
    color: rgba(242, 237, 228, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.footer-column a:hover {
    color: #C4A35A !important;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(242, 237, 228, 0.5);
}

.footer-bottom p {
    margin-bottom: 0.3rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .universe-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .weddings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stats-row,
    .for-whom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Force mobile layout */
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden !important;
    }
    
    /* Navigation */
    .main-nav {
        padding: 1rem 0 !important;
    }
    
    .nav-container {
        padding: 0 1.5rem !important;
        flex-wrap: nowrap !important;
    }
    
    .nav-logo {
        gap: 0.15rem !important;
    }
    
    .logo-main {
        font-size: 1rem !important;
    }
    
    .logo-tagline {
        font-size: 0.55rem !important;
    }
    
    .nav-links {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(7, 20, 16, 0.98) !important;
        flex-direction: column !important;
        padding: 2rem !important;
        gap: 1.5rem !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s !important;
        z-index: 999 !important;
    }
    
    .nav-links.active {
        transform: translateX(0) !important;
    }
    
    .nav-links a {
        font-size: 1.1rem !important;
    }
    
    .nav-cta {
        padding: 0.8rem 2rem !important;
        font-size: 0.9rem !important;
        display: block !important;
        text-align: center !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .language-toggle {
        margin-left: auto !important;
        margin-right: 1rem !important;
    }
    
    /* Hero Section */
    .hero {
        min-height: 70vh !important;
        padding: 6rem 0 4rem !important;
    }
    
    .hero-title {
        font-size: 3rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-location {
        font-size: 0.9rem !important;
    }
    
    .hero-cta-group {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .btn {
        width: 100% !important;
        text-align: center !important;
        padding: 1rem 2rem !important;
    }
    
    /* Sections */
    section {
        padding: 5rem 0 !important;
    }
    
    .container {
        padding: 0 1.5rem !important;
        max-width: 100% !important;
    }
    
    .section-title {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .section-intro {
        font-size: 1rem !important;
        margin-bottom: 3rem !important;
    }
    
    /* About Section */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    .about-text {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }
    
    /* Stats */
    .stats-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    /* Universe Cards */
    .universe-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .card-title {
        font-size: 1.3rem !important;
    }
    
    /* Executive Section */
    .for-whom-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .for-whom-grid span {
        font-size: 0.9rem !important;
        padding: 1rem !important;
        border-radius: 5px;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Weddings */
    .weddings-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .wedding-card {
        padding: 2rem 1.5rem !important;
    }
    
    .wedding-statement {
        font-size: 1.5rem !important;
    }
    
    .awards-block {
        margin: 3rem 0 !important;
    }
    
    .awards-years {
        font-size: 1.2rem !important;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    /* Locations */
    .locations-grid {
        padding: 0 1rem !important;
    }
    
    .location-card-expanded {
        padding: 2.5rem 2rem !important;
        max-width: 100% !important;
    }
    
    .location-name {
        font-size: 1.5rem !important;
    }
    
    .location-address {
        font-size: 1rem !important;
    }
    
    .location-phone {
        font-size: 1.1rem !important;
    }
    
    .location-card {
        padding: 2rem 1.5rem !important;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center !important;
    }
    
    .footer-links {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .footer-brand h2 {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero {
        min-height: 60vh !important;
        padding: 5rem 0 3rem !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-location {
        font-size: 0.85rem !important;
    }
    
    /* Navigation */
    .logo-main {
        font-size: 0.9rem !important;
    }
    
    .logo-tagline {
        font-size: 0.5rem !important;
    }
    
    .nav-links {
        top: 60px !important;
        padding: 1.5rem !important;
    }
    
    /* Sections */
    section {
        padding: 4rem 0 !important;
    }
    
    .container {
        padding: 0 1rem !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .section-intro {
        font-size: 0.95rem !important;
    }
    
    /* Stats - 1 column on small phones */
    .stats-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Executive Section */
    .for-whom-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* CTA Groups */
    .hero-cta-group {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .btn {
        padding: 1rem 2rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Cards */
    .card-title {
        font-size: 1.2rem !important;
    }
    
    .card-description {
        font-size: 0.95rem !important;
    }
    
    /* Wedding Statement */
    .wedding-statement {
        font-size: 1.3rem !important;
    }
    
    /* Awards */
    .awards-years {
        font-size: 1rem !important;
        flex-wrap: wrap !important;
    }
    
    /* Footer */
    .footer-brand h2 {
        font-size: 1.2rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.85rem !important;
    }
}

/* ========================================
   BOOKING MODAL - SAFARI FIX v6.8 (INLINE STYLES)
   ======================================== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 20, 16, 0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.booking-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    background: #0D2018;
    border: 3px solid #C4A35A;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    z-index: 1000000;
}

.booking-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #C4A35A;
    color: #071410;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal-close:hover {
    background: #F2EDE4;
}

#bookingIframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        height: 90vh;
    }
    
    .booking-modal-close {
        top: 10px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 24px !important;
    }
}
