/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d3d4b;
    --primary-hover: #1a2530;
    --secondary-color: #575e60;
    --accent-color: #2d3d4b;
    --text-dark: #2d3d4b;
    --text-light: #575e60;
    --background-light: #e8e8e5;
    --white: #f7f6f4;
    --border-color: #d0d0cd;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #575e60;
    overflow-x: hidden;
    background: #e8e8e5;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Container
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    background: #f7f6f4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border-bottom:1px solid transparent;
}

.header.transparent {
    background: rgba(247, 246, 244, 0);
    box-shadow: none;
    border-bottom:1px solid rgba(255, 255, 255, 0.5);
}

.header.transparent .logo h1,
.header.transparent .nav-list a {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header.transparent .logo svg {
    fill: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header.transparent .logo .tagline {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header.transparent .mobile-menu-toggle span {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header.transparent .nav-list a:hover,
.header.transparent .nav-list a.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: block;
    width: 110px;
}

.logo svg {
    width: 100%;
    height: auto;
    fill: var(--primary-color);
    transition: var(--transition);
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.logo .tagline {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-list a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
    background: rgba(45, 61, 75, 0.08);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   Hero Section (Homepage)
   =================================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: -82px;
    padding-top: 42px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 6px;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

/* ===================================
   Page Hero (Contact Page)
   =================================== */
.page-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-top: -82px;
    padding-top: 42px;
}

.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 61, 75, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 61, 75, 0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

/* ===================================
   Section Styles
   =================================== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 80px 0;
    background: #e8e8e5;
}

.services-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    padding: 40px 30px;
    background: #f7f6f4;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    width: 360px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 61, 75, 0.15);
    background: #f7f6f4;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    stroke: var(--primary-hover);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 80px 0;
    background: #e8e8e5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 15px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Premium Wedding Venue Section
   =================================== */
.premium-venue {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #e8e8e5;
}

.premium-venue-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.premium-venue-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.premium-venue-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 61, 75, 0.85) 0%, rgba(45, 61, 75, 0.6) 100%);
}

.premium-venue-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.premium-venue-inner {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(247, 246, 244, 0.95);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.premium-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: #f7f6f4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.premium-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.premium-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 25px;
    font-style: italic;
}

.premium-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #f7f6f4;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(45, 61, 75, 0.3);
}

.btn-premium:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 61, 75, 0.4);
}

.btn-premium svg {
    transition: var(--transition);
}

.btn-premium:hover svg {
    transform: translateX(5px);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 80px 0;
    background: #e8e8e5;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: #f7f6f4;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f7f6f4;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(45, 61, 75, 0.15);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    margin-top: 20px;
    font-size: 18px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-color);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ===================================
   News Section
   =================================== */
.news {
    padding: 80px 0;
    background: #e8e8e5;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

.news-link:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: #f7f6f4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 61, 75, 0.2);
}

.news-image {
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 12px 0;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

/* ===================================
   Contact Page Sections
   =================================== */
.contact-info-section {
    padding: 60px 0 40px;
    background: #e8e8e5;
}

.offices-section {
    padding: 40px 0 60px;
    background: #e8e8e5;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background: #f7f6f4;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.office-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.office-details p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.8;
}

.office-details strong {
    color: var(--text-dark);
}

.office-details a {
    color: var(--primary-color);
    font-weight: 500;
}

.office-details a:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

/* ===================================
   Contact Form
   =================================== */
.contact-form-section {
    padding: 60px 0 80px;
    background: #e8e8e5;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background: #f7f6f4;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: #f7f6f4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.media-contact {
    margin-top: 40px;
    padding: 25px;
    background: #f7f6f4;
    border-radius: 5px;
    text-align: center;
}

.media-contact p {
    color: var(--text-light);
    margin: 8px 0;
}

.media-contact a {
    color: var(--primary-color);
    font-weight: 500;
}

.media-contact a:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

/* ===================================
   Map Section
   =================================== */
.map-section {
    padding: 60px 0 0;
    background: #e8e8e5;
}

.map-container {
    width: 100%;
    height: 400px;
    margin-top: 40px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #f7f6f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    color: var(--text-light);
}

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b0b0b0;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
    opacity: 0.9;
}

.contact-info li {
    color: #b0b0b0;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 61, 75, 0.4);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #b0b0b0;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    opacity: 0.9;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(45, 61, 75, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px;
        box-shadow: none;
        transition: var(--transition);
        gap: 20px;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list a {
        width: auto;
        color: var(--white);
        font-size: 24px;
        font-weight: 500;
        text-align: center;
        padding: 15px 30px;
    }

    .nav-list a:hover,
    .nav-list a.active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .hero {
        height: 500px;
        margin-top: -82px;
        padding-top: 42px;
    }

    .hero-title {
        font-size: 36px;
        text-align: center;
    }

    .hero-text {
        font-size: 16px;
        text-align: center;
    }

    .hero .container{
        display:flex;
        flex-direction: column;
        align-items: center;
    }

    .page-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-venue-inner {
        padding: 40px 30px;
    }

    .premium-title {
        font-size: 36px;
    }

    .premium-subtitle {
        font-size: 18px;
    }

    .services-grid,
    .news-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .hero {
        height: 400px;
        margin-top: -82px;
        padding-top: 42px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero .container{
        display:flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .page-hero {
        height: 200px;
        margin-top: -82px;
        padding-top: 42px;
    }

    .page-title {
        font-size: 28px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .btn-premium {
        padding: 12px 30px;
        font-size: 14px;
    }

    .premium-title {
        font-size: 28px;
    }

    .premium-subtitle {
        font-size: 16px;
    }

    .premium-venue-inner {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* ===================================
   Legal Pages Styling
   =================================== */
.legal-page .page-hero {
    height: 300px;
}

.legal-content {
    padding: 80px 0;
    background: var(--white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--background-light);
}

.legal-wrapper h2 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-wrapper h2:first-of-type {
    margin-top: 0;
}

.legal-wrapper h3 {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-wrapper p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-wrapper ul,
.legal-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-wrapper ul {
    list-style: disc;
}

.legal-wrapper ol {
    list-style: decimal;
}

.legal-wrapper li {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 10px;
}

.legal-wrapper li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-wrapper a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-wrapper a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

.legal-wrapper strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Cookie Policy Tables */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookie-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-table thead th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.cookie-table tbody tr:last-child {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: rgba(45, 61, 75, 0.03);
}

.cookie-table td {
    padding: 15px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.cookie-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-wrapper {
        padding: 40px 30px;
        border-radius: 0;
    }

    .legal-wrapper h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .legal-wrapper h3 {
        font-size: 18px;
        margin-top: 25px;
    }

    .legal-wrapper p,
    .legal-wrapper li {
        font-size: 15px;
    }

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table thead th,
    .cookie-table td {
        padding: 12px 10px;
    }

    .cookie-table thead th {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .legal-page .page-hero {
        height: 200px;
    }

    .legal-content {
        padding: 40px 0;
    }

    .legal-wrapper {
        padding: 30px 20px;
    }

    .legal-wrapper h2 {
        font-size: 22px;
        margin-top: 30px;
    }

    .legal-wrapper h3 {
        font-size: 17px;
        margin-top: 20px;
    }

    .legal-wrapper p,
    .legal-wrapper li {
        font-size: 14px;
    }

    /* Stack cookie table on mobile */
    .cookie-table,
    .cookie-table thead,
    .cookie-table tbody,
    .cookie-table tr,
    .cookie-table td,
    .cookie-table th {
        display: block;
    }

    .cookie-table thead {
        display: none;
    }

    .cookie-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 15px;
    }

    .cookie-table td {
        padding: 8px 0;
        border: none;
        position: relative;
        padding-left: 50%;
    }

    .cookie-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-right: 10px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .cookie-table td:first-child {
        font-size: 15px;
        padding-top: 0;
    }
}

/* ===================================
   Menus Page Styling
   =================================== */
.menus-section {
    padding: 80px 0;
    background: #e8e8e5;
}

.menus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.menu-card {
    background: #f7f6f4;
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 61, 75, 0.15);
}

.menu-icon {
    margin-bottom: 25px;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--primary-color);
    transition: var(--transition);
}

.menu-card:hover .menu-icon svg {
    transform: scale(1.1);
    stroke: var(--primary-hover);
}

.menu-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.menu-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.menu-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.menu-card .btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.menus-info {
    margin-top: 60px;
    padding: 40px;
    background: #f7f6f4;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.menus-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.menus-info p {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 16px;
}

.menus-info a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.menus-info a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

/* Responsive Menus Page */
@media (max-width: 768px) {
    .menus-grid {
        grid-template-columns: 1fr;
    }

    .menus-info {
        padding: 30px 20px;
    }
}

.footer-bottom{
    font-size:14px;
    color:#b0b0b0;
}

.footer-bottom span.weddinguru{
    font-family: "pacifico", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:20px;
}

.footer-bottom span.weddinguru{
    color:#fff;
}

.footer-bottom span.made-with-love{
    color:#d93b61;
    font-size:16px;
}

