/* ==========================================
   BEACH WEDDINGS IN TURKEY
   Modern Wedding Website Stylesheet
   ========================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #c9a96e;
    --gold-light: #e0c48a;
    --gold-dark: #a8874a;
    --champagne: #faf4ea;
    --champagne-dark: #eedec0;
    --dark: #1a1a2e;
    --dark-2: #252540;
    --text: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --rose: #c88ca0;
    --nav-height: 80px;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.09);
    --shadow-deep: 0 10px 40px rgba(0,0,0,0.18);
    --radius: 3px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    line-height: 1.3;
    color: var(--dark);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: var(--radius);
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 135, 74, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-package {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    width: 100%;
    text-align: center;
    display: block;
    margin: 24px;
    width: calc(100% - 48px);
}
.btn-package:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-package-featured {
    background: var(--gold);
    color: var(--white);
    width: 100%;
    text-align: center;
    display: block;
    margin: 24px;
    width: calc(100% - 48px);
}
.btn-package-featured:hover {
    background: var(--gold-dark);
    color: var(--white);
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
}

/* ===== NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.navbar {
    background: transparent;
    transition: all var(--transition);
}

.site-header.scrolled .navbar {
    background: rgba(20, 20, 38, 0.97);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 58px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 11px;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 11px;
    right: 11px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-link:hover {
    color: var(--gold-light);
}
.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 8px 18px;
    margin-left: 8px;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover {
    background: var(--gold-dark);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease;
}
.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(15, 15, 30, 0.55) 0%,
        rgba(15, 15, 30, 0.3) 45%,
        rgba(15, 15, 30, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 900px;
}

.hero-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(30px, 4.5vw, 54px);
    color: var(--gold-light);
    margin-bottom: 4px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    display: block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 7.5vw, 90px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    text-shadow: 0 3px 24px rgba(0,0,0,0.4);
    margin-bottom: 20px;
}
.hero-title span {
    color: var(--gold-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(13px, 1.8vw, 17px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    margin-bottom: 28px;
}

.hero-divider {
    color: var(--gold-light);
    font-size: 16px;
    margin: 28px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.hero-divider::before, .hero-divider::after {
    content: '';
    width: 70px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light));
}
.hero-divider::after {
    background: linear-gradient(to left, transparent, var(--gold-light));
}

.hero-tagline {
    font-size: clamp(15px, 2vw, 19px);
    font-style: italic;
    color: rgba(255,255,255,0.88);
    margin-bottom: 44px;
    font-family: 'Playfair Display', serif;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
}
.scroll-down span {
    display: block;
    width: 22px;
    height: 22px;
    border-right: 2px solid var(--gold-light);
    border-bottom: 2px solid var(--gold-light);
    transform: rotate(45deg);
    animation: scrollBounce 1.8s ease infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50%       { transform: rotate(45deg) translateY(7px); opacity: 1; }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-light    { background: var(--white); }
.section-champagne { background: var(--champagne); }
.section-dark     { background: var(--dark); }

.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-header-light .section-title { color: var(--white); }

.section-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(26px, 3.5vw, 40px);
    color: var(--gold);
    margin-bottom: 4px;
    display: block;
}

.section-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 18px auto;
}
.section-divider-light { background: var(--gold-light); }

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-subtitle-light { color: rgba(255,255,255,0.65); }

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 15.5px;
    color: var(--text);
}
.about-lead {
    font-family: 'Playfair Display', serif;
    font-size: 19px !important;
    color: var(--dark) !important;
    font-style: italic;
    line-height: 1.65;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 28px !important;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--champagne);
    padding: 28px 22px;
    border-radius: var(--radius);
    border-top: 3px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.feature-icon { font-size: 34px; margin-bottom: 14px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* ===== VENUES SECTION ===== */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.venue-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.18);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.venue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.venue-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 210px;
    overflow: hidden;
}
.venue-images img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.venue-card:hover .venue-images img { transform: scale(1.06); }

.venue-info { padding: 28px 22px; }
.venue-info h3 { color: var(--gold-light); font-size: 20px; margin-bottom: 12px; }
.venue-info p  { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.75; }

/* ===== PACKAGES SECTION ===== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: start;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
}
.package-featured { border: 2px solid var(--gold); }

.package-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-bottom-left-radius: 4px;
}

.package-header {
    padding: 36px 24px 28px;
    text-align: center;
}
.package-silver   { background: linear-gradient(135deg, #ebebeb, #bfbfbf); }
.package-gold     { background: linear-gradient(135deg, #f7e8bf, #c9a96e); }
.package-platinum { background: linear-gradient(135deg, #d0e8f4, #6faac7); }
.package-rose     { background: linear-gradient(135deg, #f5d8e4, #c88ca0); }

.package-icon  { font-size: 38px; margin-bottom: 10px; }
.package-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}
.package-price {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.package-features {
    padding: 24px;
    flex: 1;
    border-bottom: 1px solid #eee;
}
.package-features li {
    padding: 8px 0 8px 22px;
    border-bottom: 1px solid #f2f2f2;
    font-size: 13.5px;
    color: var(--text);
    position: relative;
}
.package-features li:last-child { border-bottom: none; }
.package-features li:first-child { padding-left: 0; }
.package-features li:not(:first-child)::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.package-features li em {
    font-style: italic;
    color: var(--text-light);
    font-size: 12.5px;
}

/* ===== RECEPTION SECTION ===== */
.reception-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 64px;
}

.reception-card {
    background: var(--champagne);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--champagne-dark);
    transition: box-shadow var(--transition);
}
.reception-card:hover { box-shadow: var(--shadow); }
.reception-featured { border: 2px solid var(--gold); }

.reception-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-bottom-left-radius: 4px;
}

.reception-header {
    background: var(--dark);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.reception-header h3 { color: var(--white); font-size: 20px; }
.reception-price-badge {
    background: var(--gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.reception-content { padding: 24px; }
.reception-content p { margin-bottom: 8px; font-size: 15px; }
.reception-content ul { margin: 8px 0 16px 20px; }
.reception-content ul li {
    list-style: disc;
    font-size: 15px;
    padding: 4px 0;
    color: var(--text);
}

.reception-note {
    font-size: 12.5px;
    color: var(--text-light);
    font-style: italic;
    margin: 12px 0 4px;
    padding: 8px 12px;
    background: rgba(201,169,110,0.08);
    border-left: 2px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.reception-pricing {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.price-item {
    background: var(--white);
    border: 1px solid var(--champagne-dark);
    border-radius: var(--radius);
    padding: 12px 14px;
    text-align: center;
    flex: 1;
    min-width: 80px;
}
.price-item span { display: block; font-size: 11.5px; color: var(--text-light); margin-bottom: 4px; }
.price-item strong { font-size: 20px; color: var(--gold-dark); font-family: 'Playfair Display', serif; }

/* Drinks */
.drinks-section { margin-bottom: 64px; }
.drinks-title { text-align: center; font-size: 24px; margin-bottom: 32px; }

.drinks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 680px;
    margin: 0 auto;
}
.drinks-card {
    background: var(--champagne);
    border: 1px solid var(--champagne-dark);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}
.drinks-card-featured { border: 2px solid var(--gold); background: var(--white); }
.drinks-card h4 { font-size: 19px; margin-bottom: 10px; }
.drinks-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}
.drinks-card p:last-child { font-size: 14px; color: var(--text-light); }

/* Capacity */
.venues-capacity h3 { text-align: center; font-size: 24px; margin-bottom: 32px; }
.capacity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.capacity-item {
    text-align: center;
    background: var(--champagne);
    border-radius: var(--radius);
    padding: 32px 24px;
    border-top: 3px solid var(--gold);
}
.capacity-icon { font-size: 40px; margin-bottom: 16px; }
.capacity-item h4 { font-size: 16px; margin-bottom: 8px; }
.capacity-item p { font-size: 14px; color: var(--text-light); }

/* ===== EXTRAS SECTION ===== */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2px;
}
.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.1);
    transition: background var(--transition);
}
.extra-item:hover { background: rgba(201,169,110,0.1); }
.extra-item-highlight {
    background: rgba(201,169,110,0.07);
    border-color: rgba(201,169,110,0.22);
}
.extra-name { color: rgba(255,255,255,0.83); font-size: 14.5px; }
.extra-price {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    margin-left: 16px;
}

/* ===== LEGAL SECTION ===== */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.legal-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}
.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-deep);
}
.legal-step {
    font-size: 52px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--champagne-dark);
    line-height: 1;
    margin-bottom: 16px;
}
.legal-card h3 { font-size: 16px; margin-bottom: 12px; }
.legal-card p  { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

.legal-documents {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 48px;
    box-shadow: var(--shadow);
    max-width: 720px;
    margin: 0 auto;
}
.legal-documents h3 { font-size: 22px; text-align: center; margin-bottom: 28px; }
.documents-list { display: flex; flex-direction: column; gap: 0; }
.document-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 15.5px;
    color: var(--text);
    padding: 14px 0;
    border-bottom: 1px solid #f2f2f2;
}
.document-item:last-child { border-bottom: none; }
.doc-check {
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== BOOKING SECTION ===== */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.booking-card {
    background: var(--champagne);
    border-radius: var(--radius);
    padding: 32px;
    border-top: 3px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}
.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.booking-icon { font-size: 40px; margin-bottom: 18px; }
.booking-card h3 { font-size: 18px; margin-bottom: 18px; }
.booking-card li {
    padding: 9px 0 9px 24px;
    border-bottom: 1px solid var(--champagne-dark);
    font-size: 14.5px;
    color: var(--text);
    position: relative;
}
.booking-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}
.booking-card li:last-child { border-bottom: none; }

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1.6fr;
    gap: 40px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 22px; flex-shrink: 0; width: 36px; text-align: center; padding-top: 2px; }
.contact-detail h4 {
    color: var(--gold-light);
    font-size: 12.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: 'Lato', sans-serif;
}
.contact-detail p,
.contact-detail a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.65;
}
.contact-detail a:hover { color: var(--gold-light); }

.contact-form-wrapper {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius);
    padding: 32px;
}
.contact-form-wrapper h3 { color: var(--white); font-size: 20px; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}
.form-group textarea { resize: vertical; }
/* reCAPTCHA v3 — no visible widget, just a small note */
.recaptcha-note {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Form result messages */
.form-result {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}
.form-result-success {
    background: rgba(80, 180, 100, 0.15);
    border: 1px solid rgba(80, 180, 100, 0.35);
    color: #7ed89b;
}
.form-result-error {
    background: rgba(220, 80, 80, 0.15);
    border: 1px solid rgba(220, 80, 80, 0.35);
    color: #e08888;
}

/* Keep old g-recaptcha rule as no-op (v3 hides the badge by default) */
.g-recaptcha { display: none; }

.contact-map h3 { color: var(--white); font-size: 20px; margin-bottom: 24px; }
.map-wrapper {
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius);
    overflow: hidden;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0d0d1c;
    padding: 70px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; flex-direction: column; gap: 16px; }
.footer-logo img { height: 58px; width: auto; }
.footer-logo-2 { height: 58px !important; width: auto !important; opacity: 0.7; }

.footer-links h4,
.footer-contact h4 {
    color: var(--gold-light);
    font-size: 12.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}
.footer-links ul li { padding: 5px 0; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.55); font-size: 14px; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .legal-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .contact-info { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-logo { grid-column: 1 / -1; flex-direction: row; align-items: center; }
}

@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .venues-grid { grid-template-columns: 1fr; }
    .reception-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { flex-direction: column; }
    .booking-grid { grid-template-columns: 1fr; }
    .capacity-grid { grid-template-columns: 1fr; }
    .drinks-grid { grid-template-columns: 1fr; max-width: 400px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .footer-logo { flex-direction: column; align-items: center; }

    /* Mobile nav */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: rgba(20, 20, 38, 0.98);
        padding: 16px 0 24px;
        gap: 0;
        border-top: 1px solid rgba(201,169,110,0.2);
    }
    .nav-menu.open { display: flex; }
    .nav-link {
        padding: 13px 24px;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
    }
    .nav-link::after { display: none; }
    .nav-link-cta { margin: 16px 24px; text-align: center; border-radius: var(--radius); }
    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 580px) {
    .section { padding: 64px 0; }
    .packages-grid { grid-template-columns: 1fr; }
    .legal-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .venue-images { grid-template-columns: 1fr; height: auto; }
    .venue-images img { height: 160px; }
    .reception-header { flex-direction: column; gap: 10px; align-items: flex-start; }
    .extras-grid { grid-template-columns: 1fr; }
    .legal-documents { padding: 28px 20px; }
    .contact-form-wrapper { padding: 24px; }
}
