* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #07075f;
    --accent: #d4a017;
    --light-bg: #fef9e6;
    --light-pink: #fbeced;
    --dark-text: #1a1a1a;
    --light-text: #555;
    --white: #ffffff;
    --dark-footer: #2a2a2a;
    --shadow: 0 8px 32px rgba(7, 7, 95, 0.12);
    --shadow-lg: 0 16px 48px rgba(7, 7, 95, 0.15);
}

html, body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-pink) 100%);
    scroll-behavior: smooth;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-pink) 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    object-fit: cover;
}

.logo-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    animation: scaleIn 0.8s ease-out;
}

.logo-badge img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #0a0a7d;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.contact-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

/* ========== ABOUT SECTION ========== */
.section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
}

/* ========== GALLERY GRID ========== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 95, 0.7);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========== FEATURED GRID (4 Column for events/services) ========== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.featured-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.featured-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.featured-card-content {
    padding: 25px;
}

.featured-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* ========== CAROUSEL SECTION ========== */
.carousel-wrapper {
    margin-top: 50px;
    position: relative;
}

.carousel-container {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
}

.carousel-item {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-item.active {
    display: flex;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.carousel-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(7, 7, 95, 0.6);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--primary);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* ========== VIDEO SECTION ========== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== MAP SECTION ========== */
.map-section {
    background: var(--dark-footer);
    padding: 60px 40px;
}

.map-section .map-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    height: 450px;
}

.map-section .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== FOOTER SECTION ========== */
.footer-section {
    background: var(--dark-footer);
    padding: 40px;
}

.footer {
    background: transparent;
    border-top: 1px solid rgba(212, 160, 23, 0.15);
    padding: 32px 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 2;
}

.footer a {
    color: var(--accent);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--white);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-brand svg {
    flex-shrink: 0;
}

.footer-brand-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
}

.share-row {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 16px 0 20px;
}

.share-row span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.s-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.12);
    border: 1.5px solid rgba(212, 160, 23, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.s-icon:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ========== RESPONSIVE MAP & FOOTER ========== */
@media (max-width: 768px) {
    .map-section {
        padding: 40px 25px;
    }

    .map-section .map-container {
        height: 350px;
    }

    .footer-section {
        padding: 30px 25px;
    }

    .footer {
        padding: 24px 20px 0;
        font-size: 0.8rem;
    }

    .footer-brand-text {
        font-size: 0.95rem;
    }

    .s-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 30px 15px;
    }

    .map-section .map-container {
        height: 280px;
        border-radius: 12px;
    }

    .footer-section {
        padding: 24px 15px;
    }

    .footer {
        padding: 20px 16px 0;
        font-size: 0.75rem;
        line-height: 1.8;
    }

    .footer-brand-text {
        font-size: 0.9rem;
    }

    .share-row {
        gap: 10px;
        margin: 12px 0 16px;
    }

    .s-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* ========== FLOATING ACTION BUTTONS ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
    animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    animation: none;
}

/* Floating Share Menu */
.share-menu {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 997;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.share-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 10;
}

.share-toggle:hover {
    transform: scale(1.1);
    background: #e6b800;
}

.share-menu-items {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--primary);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    min-width: 60px;
}

.share-menu.active .share-menu-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.share-menu-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 160, 23, 0.3);
}

.share-menu-item:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
    border-color: var(--accent);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.4s ease-out;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: #0a0a7d;
}
footer {
  background: #060F09;
  padding: 52px 5% 28px;
  text-align: center;
}
.footer-powered { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-powered span { font-size: 0.7rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.12em; }
.footer-powered img { height: 38px; width: auto; object-fit: contain; vertical-align: middle; }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--sun); }
.footer-section-label { font-size: 0.68rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.footer-social { display: flex; justify-content: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.footer-social a:hover { transform: translateY(-3px); }
.footer-social a:nth-child(1):hover { background: #3b5999; border-color: #3b5999; color: #fff; }
.footer-social a:nth-child(2):hover { background: #1d9bf0; border-color: #1d9bf0; color: #fff; }
.footer-social a:nth-child(3):hover { background: #e4405f; border-color: #e4405f; color: #fff; }
.footer-social a:nth-child(4):hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.footer-social a.wa-icon { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); color: #25D366; }
.footer-social a.wa-icon:hover { background: #25D366; border-color: #25D366; color: #fff; }
.footer-share-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.fsr-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.fsr-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
.fsr-wa  { background: #25D366; }
.fsr-fb  { background: #3b5999; }
.fsr-tw  { background: #1d9bf0; }
.fsr-li  { background: #0077b5; }
.fsr-em  { background: #e8593f; }
.fsr-sm  { background: #4c53ef; }
.footer-bottom { font-size: 0.78rem; color: rgba(255,255,255,.28); border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; }


/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .section {
        padding: 50px 25px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .footer {
        padding: 28px 20px;
        font-size: 0.75rem;
    }

    .s-icon {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .cta-buttons {
        gap: 10px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .contact-strip {
        gap: 20px;
    }

    .whatsapp-btn,
    .scroll-to-top {
        width: 55px;
        height: 55px;
        bottom: 20px;
        font-size: 1.2rem;
    }

    .whatsapp-btn {
        left: 20px;
    }

    .scroll-to-top {
        right: 20px;
    }

    .share-menu {
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px 15px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .logo-badge img {
        width: 100px;
        height: 100px;
    }

    .section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .contact-strip {
        flex-direction: column;
        gap: 15px;
    }

    .footer {
        padding: 24px 16px;
        font-size: 0.7rem;
        line-height: 1.8;
    }

    .share-row {
        gap: 8px;
        margin: 10px 0 14px;
    }

    .s-icon {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }
}