:root {
    --neutral: #9ca3af;
    --text: #f5f5f5;
    --muted: #cfcfcf;
    --panel: #111;
    --ring: rgba(156, 163, 175, 0.18);
    --shadow: 0 0 25px rgba(156, 163, 175, 0.4);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}
body {
    background: #000;
    color: var(--text);
    /* Changed font from Cairo to Inter for better English readability */
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
}
a {
    color: var(--neutral);
    text-decoration: none;
}
a:hover {
    color: #d1d5db;
    text-decoration: underline;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding-inline: clamp(12px, 5vw, 24px);
}
.rtl {
    direction: rtl;
}
canvas#bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    pointer-events: none;
}
.main-content {
    position: relative;
    z-index: 2;
    width: 100%;
    background: transparent;
}
.site-header {
    padding: 1.1rem 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    position: relative;
    z-index: 1000;
}
.header-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}
.logo {
    justify-self: start;
}
.logo img {
    height: 56px;
    display: block;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}
.social {
    justify-self: center;
    display: flex;
    gap: 10px;
}
.social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}
.social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.social i {
    font-size: 14px;
    color: #fff;
}
.nav {
    justify-self: end;
}
.nav .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.3rem;
    align-items: center;
}
.nav .nav-menu li {
    margin: 0;
    padding: 0;
}
.nav .nav-menu a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px;
    text-decoration: none;
}
.nav .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #0066ff, #ff1493, #8a2be2);
    transition: width 0.3s ease-in-out;
}
.nav .nav-menu a:hover::after, .nav .nav-menu a[aria-current="page"]::after, .nav .nav-menu a.active::after {
    width: 100%;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    display: block;
}
.page-head, .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-head {
    min-height: 48vh;
}
.hero {
    min-height: 92vh;
}
.page-head .inner, .hero .hero-inner {
    max-width: 1080px;
    margin: auto;
    padding: clamp(16px, 3vw, 28px);
}
.page-head h1, .hero h1 {
    font-family: "Playfair Display", serif;
    color: var(--neutral);
    font-size: clamp(2.8rem, 8vw, 5.6rem);
    line-height: 1.12;
    letter-spacing: 1px;
    text-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.page-head h1 {
    font-size: clamp(2.2rem, 6.5vw, 4.2rem);
}
.page-head h1::after, .hero h1::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient( 110deg, transparent 0, rgba(255, 255, 255, 0.85) 8%, transparent 16% );
    mix-blend-mode: screen;
    animation: shine 6s ease-in-out infinite;
}
@keyframes shine {
    0%, 30% {
        transform: translateX(-120%);
    }
    50% {
        transform: translateX(120%);
    }
    100% {
        transform: translateX(120%);
    }
}
.hero p {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    margin: 1rem 0 2.2rem;
    opacity: 0.92;
    letter-spacing: 0.3px;
}
.lead {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    opacity: 0.95;
    max-width: 760px;
    margin: 1rem auto 2rem;
    text-align: center;
}
.cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    background: transparent;
    color: var(--neutral);
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 800;
    border: 2px solid var(--neutral);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s;
    margin-top: auto;
}
.btn:hover {
    background: var(--neutral);
    color: #000;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 30px rgba(156, 163, 175, 0.5);
}
.btn.ghost {
    background: transparent;
    color: var(--neutral);
}
.btn.ghost:hover {
    background-color: var(--neutral);
    color: #000;
}
.neon-btn {
    --bg: #121212;
    --neutral: #9ca3af;
    --pink: #fe53bb;
    --violet: #8f51ea;
    --blue: #0044ff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 13rem;
    height: 3rem;
    border-radius: 5rem;
    cursor: pointer;
    color: #fff;
    border: double 4px transparent;
    background-size: 300% 300%;
    background-image: linear-gradient(var(--bg), var(--bg)), linear-gradient( 137.48deg, var(--neutral) 10%, var(--pink) 45%, var(--violet) 67%, var(--blue) 87% );
    background-origin: border-box;
    background-clip: content-box, border-box;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: btn-gradient 5s ease infinite;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow: visible;
}
.neon-btn strong {
    z-index: 2;
    font-size: 0.9rem;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
}
.neon-btn .stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 5rem;
    transition: 0.35s;
}
.neon-btn .glow {
    position: absolute;
    inset: 0 auto 0 auto;
    width: 12rem;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
}
.neon-btn .circle {
    width: 48%;
    height: 30px;
    filter: blur(2rem);
    animation: btn-pulse 4s infinite;
}
.neon-btn .circle:first-child {
    background: rgba(254, 83, 186, 0.6);
}
.neon-btn .circle:last-child {
    background: rgba(143, 81, 234, 0.7);
}
.neon-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 24px rgba(156, 163, 175, 0.18);
}
.neon-btn:active {
    animation: none;
    border-color: var(--pink);
}
.neon-btn:hover .stars {
    background: #212121;
}
@keyframes btn-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes btn-pulse {
    0% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
.neon-btn .stars::after, .neon-btn .stars::before {
    content: "";
    position: absolute;
    inset: auto;
    width: 200rem;
    height: 200rem;
    left: -100rem;
    top: -10rem;
    background: transparent;
}
.neon-btn .stars::after {
    background-image: radial-gradient(#fff 1px, transparent 1%);
    background-size: 50px 50px;
    animation: stars-rotate 90s linear infinite;
}
.neon-btn .stars::before {
    left: -50%;
    top: 0;
    width: 170%;
    height: 500%;
    opacity: 0.5;
    background-image: radial-gradient(#fff 1px, transparent 1%);
    background-size: 50px 50px;
    animation: stars-move 60s linear infinite;
}
@keyframes stars-move {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-135rem);
    }
}
@keyframes stars-rotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .neon-btn, .neon-btn .circle, .neon-btn .stars::before, .neon-btn .stars::after {
        animation: none !important;
    }
}
.cards, .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
}
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: visible;
    color: var(--text);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(156, 163, 175, 0.3);
}
.card img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.card-body {
    padding: 14px;
}
.info-cards {
    padding: 3rem 0;
}
.info-cards .card {
    background: rgba(25, 22, 22, 0.93);
    border-radius: 18px;
    box-shadow: 0 4px 18px #0008, 0 0 18px rgba(156, 163, 175, 0.25);
    width: 100%;
    min-height: 270px;
    padding: 1.8rem 1.3rem;
    align-items: flex-start;
    border: 1.5px solid rgba(156, 163, 175, 0.13);
}
.info-cards .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 34px rgba(156, 163, 175, 0.33), 0 0 12px var(--neutral);
    border-color: rgba(156, 163, 175, 0.22);
}
.info-cards .card-icon {
    font-size: 36px;
    margin-bottom: 0.8em;
}
.info-cards .card h3 {
    color: var(--neutral);
    margin-bottom: 0.9em;
    font-size: 1.22em;
}
.info-cards .card blockquote {
    font-size: 1em;
    margin-bottom: 0.5rem;
    font-style: italic;
    border-left: 4px solid var(--neutral);
    padding-left: 0.7rem;
}
.info-cards .card ul {
    margin: 0;
    padding-left: 1.25em;
    font-size: 0.96em;
    line-height: 1.55;
}
.info-cards .card ul li {
    margin-bottom: 0.6em;
}
.events, .page-body {
    padding: 3rem 0;
}
.events h2, .page-body h2 {
    font-family: "Playfair Display", serif;
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--neutral);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}
.gallery img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery img:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}
.event-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 2rem;
}
.event-card {
    position: relative;
    background: var(--panel);
    border: 1px solid rgba(156, 163, 175, 0.2);
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(156, 163, 175, 0.2);
}
.event-card .event-date {
    position: absolute;
    top: 0;
    left: 0;
    background: #9ca3af;
    color: #000;
    font-weight: 700;
    padding: 0.5rem 0.8rem;
    border-radius: 0 0 8px 0;
    letter-spacing: 0.02em;
}
.event-card .event-body {
    padding: 1rem;
}
.event-card h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}
.event-card .meta {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.8rem;
}
.faq {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.faq details:hover {
    border-color: rgba(156, 163, 175, 0.28);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
}
.faq details[open] {
    border-color: rgba(156, 163, 175, 0.38);
}
.faq summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::after {
    content: "";
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--neutral);
    border-bottom: 2px solid var(--neutral);
    transform: rotate(-45deg);
    transition: transform 0.25s ease;
}
.faq details[open] summary::after {
    transform: rotate(45deg);
}
.faq p {
    margin-top: 0.65rem;
    color: #ddd;
    line-height: 1.7;
}
.site-footer {
    position: relative;
    background: radial-gradient( 600px at 0 90%, rgba(156, 163, 175, 0.08), transparent 60% ), radial-gradient( 900px at 100% 10%, rgba(156, 163, 175, 0.06), transparent 60% ), linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
    padding: 4rem 0 2.5rem;
    border-top: 1px solid var(--ring);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem 2.5rem;
}
.footer-brand .footer-logo {
    filter: drop-shadow(0 0 12px rgba(156, 163, 175, 0.3));
    margin-bottom: 0.5rem;
}
.footer-brand h3, .footer-contact h4, .footer-links h4, .footer-social h4 {
    color: var(--neutral);
    margin-bottom: 0.75rem;
    font-family: "Playfair Display", serif;
}
.site-footer .list {
    list-style: none;
}
.site-footer .list li {
    margin: 0.45rem 0;
}
.site-footer .list a:hover {
    color: var(--neutral);
    text-shadow: 0 0 10px rgba(156, 163, 175, 0.35);
    text-decoration: none;
}
.copyright {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.92rem;
    color: #bdbdbd;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
}
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    border-top: 1px solid rgba(156, 163, 175, 0.3);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 1000;
}
.sticky-cta .btn, .sticky-cta .neon-btn {
    flex: 1;
    max-width: 200px;
}
@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}
.bg-dark-texture {
    background: radial-gradient( circle at top left, rgba(156, 163, 175, 0.05) 0%, transparent 40% ), radial-gradient( circle at bottom right, rgba(156, 163, 175, 0.05) 0%, transparent 40% ), #1a1a1a;
}
.section-padded {
    padding: 4rem 0;
}
.section-title {
    font-family: "Playfair Display", serif;
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--neutral);
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(156, 163, 175, 0.25);
}
.content-block {
    max-width: 960px;
    margin: 0 auto;
    text-align: justify;
}
.content-block p {
    margin-bottom: 1em;
    line-height: 1.8;
    font-size: 1.05rem;
    opacity: 0.9;
}
.content-block h3 {
    color: var(--neutral);
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    margin: 1.5rem 0 0.8rem;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2rem;
}
.story-image {
    text-align: center;
}
.story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(156, 163, 175, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(156, 163, 175, 0.35);
}
.image-caption {
    font-style: italic;
    font-size: 0.9em;
    color: #ccc;
    margin-top: 0.8rem;
    opacity: 0.8;
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}
@media (max-width: 768px) {
    .site-header .header-wrap {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "logo burger" "social social";
        align-items: center;
        gap: 12px;
    }
    .site-header .logo {
        grid-area: logo;
    }
    .site-header .hamburger {
        grid-area: burger;
        display: flex;
        position: fixed;
        top: 18px;
        right: clamp(12px, 5vw, 24px);
    }
    .social {
        grid-area: social;
        display: flex !important;
        justify-content: center;
        margin-top: 6px;
    }
    .nav {
        display: none;
    }
    .nav.open {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1001;
        background: rgba(0, 0, 0, 0.98);
        padding-top: 90px;
    }
    .nav.open .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 22px;
        height: 80%;
    }
    .nav.open .nav-menu a {
        font-size: 1.35rem;
    }
}
.location {
    padding: 4rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}
.location h2 {
    font-family: "Playfair Display", serif;
    color: var(--neutral);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: var(--shadow);
}
.location p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2rem;
}
.map-embed {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
.map-embed:hover {
    transform: scale(1.01);
}
.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(10%) contrast(1.1);
}
.open-map-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    background: var(--neutral);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.2s ease;
}
.open-map-btn:hover {
    background: #d1d5db;
    transform: scale(1.05);
}
.location-info {
    background: var(--panel);
    border: 1px solid rgba(156, 163, 175, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow);
}
.location-info h3 {
    color: var(--neutral);
    margin-bottom: 0.8rem;
    font-family: "Playfair Display", serif;
}
.location-info p {
    color: var(--muted);
    margin: 0.5rem 0;
}
.location-info a {
    color: var(--neutral);
    text-decoration: none;
    font-weight: 600;
}
.location-info a:hover {
    text-decoration: underline;
}
.direction-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--neutral);
    color: var(--neutral);
    border-radius: 50px;
    transition: all 0.3s ease;
}
.direction-btn:hover {
    background: var(--neutral);
    color: #000;
}
.gradient-text {
    background: linear-gradient(90deg, #00d4ff, #ff1493, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
h1, h2, h3 {
    background: linear-gradient(90deg, #00d4ff, #ff1493, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}
.btn-gradient {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    color: white;
    background: transparent;
    border: 2px solid;
    border-image: linear-gradient(90deg, #00d4ff, #ff0080) 1;
    transition: all 0.3s ease;
}
.btn-gradient:hover {
    background: linear-gradient( 90deg, #00d4ff, #ff0080 );
    color: black;
}
footer a, footer h4, footer p, footer span {
    background: linear-gradient(90deg, #0066ff, #ff1493, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}
header nav a {
    color: white;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}
header nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #ff1493, #8a2be2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}
header nav a:hover::after, header nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.floating-buttons a.call-btn, .floating-buttons a.whatsapp-btn {
    position: fixed;
    right: 22px;
    width: 64px;
    height: 64px;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    color: #fff;
    z-index: 2000;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    border: 2px solid transparent;
    background: linear-gradient(#000, #000) padding-box, var(--ring-gradient, linear-gradient(90deg, #9ca3af, #d1d5db)) border-box;
}
.floating-buttons a.call-btn {
    bottom: 100px;
}
.floating-buttons a.whatsapp-btn {
    bottom: 22px;
}
.floating-buttons a.call-btn {
    --ring-gradient: linear-gradient(90deg, #9ca3af, #d1d5db);
}
.floating-buttons a.whatsapp-btn {
    --ring-gradient: linear-gradient(90deg, #25d366, #128c7e);
}
.floating-buttons a.call-btn:hover {
    background: linear-gradient(#d1d5db, #d1d5db) padding-box, var(--ring-gradient) border-box;
    color: #000;
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}
.floating-buttons a.whatsapp-btn:hover {
    background: linear-gradient(#25d366, #25d366) padding-box, var(--ring-gradient) border-box;
    color: #000;
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}
a.call-btn, a.whatsapp-btn {
    background-clip: padding-box, border-box;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}
@media (min-width: 1200px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}
@media (min-width: 1200px) {
    .contact-details h2 {
        text-align: left;
    }
}
.contact-methods {
    display: grid;
    gap: 2rem;
}
.contact-method {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neutral), #d1d5db);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(156, 163, 175, 0.3);
}
.contact-method:hover::before {
    opacity: 1;
}
.contact-method i {
    font-size: 3rem;
    color: var(--neutral);
    margin-bottom: 1rem;
    display: block;
}
.contact-method h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--neutral);
}
.contact-method p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neutral);
}
.form-group {
    margin-bottom: 2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--neutral);
    letter-spacing: 1px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--neutral);
    box-shadow: 0 0 0 4px rgba(156, 163, 175, 0.1);
    background: rgba(0, 0, 0, 0.4);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: #888;
}
.form-messages {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
}
.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}
.map-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    height: fit-content;
}
.map-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--neutral);
}
.location-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    text-align: center;
}
.location-address i {
    color: var(--neutral);
    font-size: 1.2rem;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.map-container iframe:hover {
    border-color: rgba(156, 163, 175, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.parking-info, .payment-methods {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}
.parking-info h3, .payment-methods h3 {
    color: var(--neutral);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.parking-info p, .payment-methods p {
    color: #ccc;
    line-height: 1.7;
}
.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .booking-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.booking-info, .booking-process {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}
.booking-info h3, .booking-process h3 {
    color: var(--neutral);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
}
.feature-list li:last-child {
    border-bottom: none;
}
.feature-list i {
    color: var(--neutral);
    font-size: 1.1rem;
    width: 20px;
}
.process-list {
    counter-reset: process-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}
.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding: 1rem 0 1rem 3rem;
    color: #ccc;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}
.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: -12px;
    top: 1rem;
    width: 24px;
    height: 24px;
    background: var(--neutral);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.process-list li:last-child {
    border-left-color: transparent;
}
.table-responsive {
    overflow-x: auto;
    margin-top: 2rem;
}
.vip-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.vip-table th, .vip-table td {
    padding: 1.5rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vip-table th {
    background: rgba(156, 163, 175, 0.1);
    color: var(--neutral);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.vip-table td {
    color: #ccc;
}
.vip-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}
.vip-table tbody tr:last-child td {
    border-bottom: none;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(156, 163, 175, 0.3);
}
.info-card h3 {
    color: var(--neutral);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.info-card p {
    color: #ccc;
    line-height: 1.6;
}
.info-card a {
    color: var(--neutral);
    text-decoration: underline;
}
.info-card a:hover {
    color: #d1d5db;
}
.map-embed {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.map-embed iframe {
    transition: transform 0.3s ease;
}
.map-embed:hover iframe {
    transform: scale(1.05);
}
.map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
.map-overlay .btn-gradient {
    pointer-events: auto;
}
:root{
    --cta-a:#00d4ff;
    --cta-b:#ff0080;
}
a.btn, .btn, .btn-gradient, .btn.ghost, button[type="submit"], input[type="submit"]{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.5rem;
    padding:12px 22px;
    border-radius:12px;
    font-weight:800;
    letter-spacing:.3px;
    text-decoration:none;
    cursor:pointer;
    line-height:1;
    border:2px solid transparent;
    background: linear-gradient(#000,#000) padding-box, linear-gradient(90deg,var(--cta-a),var(--cta-b)) border-box !important;
    color:#fff !important;
    transition:transform .2s, box-shadow .2s, filter .2s, background .25s;
}
a.btn:hover, .btn:hover, .btn-gradient:hover, .btn.ghost:hover, button[type="submit"]:hover, input[type="submit"]:hover{
    background: linear-gradient(90deg,var(--cta-a),var(--cta-b)) padding-box, linear-gradient(90deg,var(--cta-a),var(--cta-b)) border-box !important;
    color:#000 !important;
    transform:translateY(-2px) scale(1.02);
    box-shadow:0 10px 24px rgba(0,0,0,.45);
}
a.btn:focus-visible, .btn:focus-visible, button[type="submit"]:focus-visible, input[type="submit"]:focus-visible{
    outline:0;
    box-shadow:0 0 0 4px rgba(255,255,255,.08), 0 0 0 2px var(--cta-a);
}
button[disabled], input[type="submit"][disabled]{
    opacity:.55;
    cursor:not-allowed;
    transform:none;
    box-shadow:none;
}
.floating-buttons a{
    all:unset;
}
.floating-buttons a{
    position:fixed;
    right:22px;
    width:64px;
    height:64px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:26px;
    color:#fff;
    z-index:2000;
    cursor:pointer;
    transition:transform .2s, box-shadow .2s, background-color .2s;
    border:2px solid transparent;
    background:linear-gradient(#000,#000) padding-box, var(--ring-gradient, linear-gradient(90deg,#9ca3af,#d1d5db)) border-box;
}