:root {
    --primary: #0f172a;    
    --gold: #c5a059;       
    --gold-dark: #a68545;
    --text-main: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-silk: #f8fafc;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; 
}

body {
    background-color: var(--white);
    color: var(--text-main);
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}
.main-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.header-content {
    display: flex; justify-content: space-between; align-items: center;
}
.brand-area {
    display: flex; align-items: center; gap: 15px;
}

.logo-circle {
    width: 50px; height: 50px;
    background: var(--primary);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    border-radius: 15px; font-size: 24px;
    transition: var(--transition);
}

.brand-text h1 {
    font-size: 1.2rem; font-weight: 800; color: var(--primary);
    line-height: 1;
}

.brand-text small {
    color: var(--gold); font-weight: 600; letter-spacing: 1px;
}
.desktop-nav ul {
    display: flex; list-style: none; gap: 30px;
}

.n-link {
    text-decoration: none; color: var(--text-main);
    font-weight: 600; font-size: 0.95rem;
    padding: 10px 0; position: relative;
}
.n-link::after {
    content: ''; position: absolute; bottom: 0; right: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: var(--transition);
}

.n-link.active { color: var(--gold); }
.n-link.active::after { width: 100%; }
.cta-call {
    display: flex; align-items: center; gap: 10px;
    background: var(--primary); color: white;
    padding: 12px 25px; border-radius: 10px;
    text-decoration: none; font-weight: 700;
    transition: var(--transition);
}

.cta-call:hover {
    background: var(--gold); transform: translateY(-3px);
}
.menu-burger {
    display: none; cursor: pointer;
    flex-direction: column; gap: 8px;
}

.line { width: 30px; height: 2px; background: var(--primary); transition: 0.3s; }
.hero-section {
    height: 100vh; position: relative;
    display: flex; align-items: center; overflow: hidden;
}

.hero-bg-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
}

.hero-image {
    width: 100%; height: 100%;
    background: url('images/bg.jpg') center/cover;
    animation: zoomInOut 20s infinite alternate;
    filter: blur(2px);
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
}

.hero-info {
    max-width: 700px; color: var(--white);
}

.top-label {
    display: inline-block; padding: 8px 20px;
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold); border-radius: 50px;
    font-weight: 700; margin-bottom: 25px;
    animation: fadeInDown 1s forwards;
    font-size:1.0rem ;
}

.hero-title {
    font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 30px;
    animation: fadeInUp 1s forwards 0.3s; opacity: 0;
}

.gold-text { color: var(--gold); }

.hero-desc {
    font-size: 1.15rem; color: #cbd5e1; margin-bottom: 40px;
    line-height: 1.8; animation: fadeInUp 1s forwards 0.6s; opacity: 0;
}

.hero-btns {
    display: flex; gap: 20px; animation: fadeInUp 1s forwards 0.9s; opacity: 0;
}

.btn-main {
    padding: 18px 40px; background: var(--gold); color: white;
    text-decoration: none; font-weight: 800; border-radius: 10px;
    transition: var(--transition);
}

.btn-outline {
    padding: 18px 40px; border: 2px solid var(--white); color: white;
    text-decoration: none; font-weight: 800; border-radius: 10px;
    transition: var(--transition);
}

.btn-main:hover { background: var(--white); color: var(--primary); }
.luxury-sidebar {
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 450px;
    height: 100vh; background: var(--primary); z-index: 2000;
    transition: var(--transition); padding: 60px;
    display: flex; flex-direction: column;
}

.luxury-sidebar.active { right: 0; }

.side-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(5px);
    z-index: 1500; display: none;
}

.close-btn {
    display: flex; align-items: center; gap: 10px; color: var(--gold);
    cursor: pointer; font-weight: 700; text-transform: uppercase;
}

.sidebar-links {
    list-style: none; margin-top: 80px;
}

.sidebar-links li { margin-bottom: 30px; }

.sidebar-links a {
    text-decoration: none; color: white; font-size: 2.2rem;
    font-weight: 800; transition: 0.3s;
}

.sidebar-links a:hover { color: var(--gold); padding-right: 20px; }
@media (max-width: 992px) {
    .desktop-nav, .cta-call { display: none; }
    .menu-burger { display: flex; }
    .hero-title { font-size: 1.8rem; }
    .hero-wrapper { text-align: center; }
    .hero-btns { justify-content: center; flex-direction: column; }
    .hero-overlay { background: rgba(15, 23, 42, 0.8); }
    .top-label{font-size: 0.75rem;}
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.about-ultra {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visuals {
    position: relative;
}

.main-img-wrapper {
    position: relative;
    border-radius: 40px;
    padding: 20px;
    background: linear-gradient(45deg, var(--gold), #f3e5f5);
    z-index: 5;
}

.floating-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: 0.5s;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
    border: 2px solid var(--gold);
}

.experience-badge .num {
    display: block; font-size: 3rem; font-weight: 900; color: var(--gold);
}
.mini-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 10px;
    z-index: 10;
    animation: floatAnim 4s infinite ease-in-out;
}

.c1 { top: 10%; left: -50px; color: #e91e63; }
.c2 { top: 50%; left: -80px; animation-delay: 1s; color: #ff9800; }
.c3 { bottom: 10%; left: -30px; animation-delay: 2s; color: #4caf50; }

@keyframes floatAnim {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -20px) rotate(3deg); }
}
.section-tagline {
    display: flex; align-items: center; gap: 15px; margin-bottom: 20px;
}

.section-tagline .line {
    width: 50px; height: 3px; background: var(--gold); border-radius: 2px;
}

.tag-text {
    font-weight: 900; color: var(--gold); text-transform: uppercase; letter-spacing: 2px;
}

.reveal-title {
    font-size: 3.2rem; font-weight: 900; line-height: 1.2; margin-bottom: 25px;
    color: var(--primary);
}

.gradient-text {
    background: linear-gradient(45deg, var(--gold), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-box p {
    font-size: 1.1rem; color: var(--text-light); margin-bottom: 20px; text-align: justify;
}

.features-list {
    margin: 40px 0;
}

.feat-item {
    display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px;
    background: #f8fafc; padding: 20px; border-radius: 20px;
    transition: 0.4s; border: 1px solid transparent;
}

.feat-item:hover {
    background: #fff; border-color: var(--gold); transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feat-icon {
    width: 60px; height: 60px; background: var(--primary); color: var(--gold);
    border-radius: 15px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}

.feat-txt h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 5px; }
.feat-txt p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.explore-btn {
    display: inline-flex; align-items: center; gap: 15px;
    background: var(--primary); color: white; padding: 20px 40px;
    border-radius: 50px; text-decoration: none; font-weight: 800;
    position: relative; overflow: hidden; transition: 0.4s;
}
.explore-btn:hover { background: var(--gold); transform: scale(1.05); }
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visuals { order: 2; }
    .reveal-title { font-size: 2.2rem; }
    .mini-card { display: none; }
}
.about-content > * { opacity: 0; transform: translateY(30px); transition: 0.8s; }
.about-content.active > * { opacity: 1; transform: translateY(0); }
.about-content.active .item-animate:nth-child(1) { transition-delay: 0.3s; }
.about-content.active .item-animate:nth-child(2) { transition-delay: 0.5s; }
.services-glass-section {
    position: relative;
    padding: 100px 0;
    background: #0a0f1d; 
    overflow: hidden;
}
.bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulseGlow 10s infinite alternate;
}

@keyframes pulseGlow {
    from { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    to { transform: translate(-50%, -50%) scale(1.5); opacity: 0.8; }
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.badge-gold {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.services-title {
    font-size: 3rem;
    color: white;
    margin-top: 20px;
    font-weight: 900;
}

.services-subtitle {
    color: #a2a2ba;
    max-width: 600px;
    margin: 20px auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}
.service-card {
    position: relative;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    cursor: pointer;
}

.card-glass {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    z-index: 1;
    transition: 0.5s;
}

.service-card:hover .card-glass {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--clr);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 20px var(--clr);
}

.service-card .content {
    position: relative;
    z-index: 2;
    padding: 40px;
    text-align: center;
    transition: 0.5s;
}

.service-card:hover .content {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px; height: 80px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover .icon-box {
    background: var(--clr);
    color: white;
    transform: rotateY(360deg);
    box-shadow: 0 0 25px var(--clr);
}

.service-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.card-list li {
    color: var(--clr);
    font-size: 0.8rem;
    font-weight: 700;
}
.service-card {
    opacity: 0;
    transform: scale(0.8);
}

.service-card.show {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-ultra {
    padding: 100px 0;
    background: #fdfdfd;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--gold);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    transition: 0.5s;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    animation: scaleUp 0.5s forwards;
}

@keyframes scaleUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.media-box {
    width: 100%;
    height: 100%;
    background: #000;
}

.media-box img, .media-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
.v-box {
    border: 3px solid var(--gold);
}

@media (max-width: 768px) {
    .filter-controls {
        flex-wrap: wrap;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}
.why-exclusive {
    position: relative;
    padding: 120px 0;
    background: #050505; 
    overflow: hidden;
}
.energy-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.why-wrapper { position: relative; z-index: 2; }

.why-header { text-align: center; margin-bottom: 80px; }

.exclusive-badge {
    display: inline-block;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    padding: 10px 30px;
    color: white;
    font-weight: 900;
    font-size: 0.9rem;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    margin-bottom: 20px;
}

.why-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
}

.shimmer-text {
    background: linear-gradient(90deg, #fff, var(--gold), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 40px;
}

.why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px 30px;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    perspective: 1000px;
    overflow: hidden;
}

.card-inner {
    position: relative;
    z-index: 3;
    transition: 0.5s;
}

.icon-wrap {
    width: 70px; height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 30px;
    border: 1px solid var(--accent);
    box-shadow: 0 0 15px rgba(var(--accent), 0.2);
}

.why-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-number {
    position: absolute;
    top: -20px; left: -20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
}
.glow-effect {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), var(--accent) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.why-card:hover .glow-effect {
    opacity: 0.15;
}
.floating-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 80px;
}

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

.s-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
}

.s-lab {
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .why-title { font-size: 2.2rem; }
    .floating-stats { flex-direction: column; gap: 40px; }
    .why-card { padding: 30px 20px; }
    .why-grid {
    grid-template-columns: repeat(1, minmax(280px, 1fr));
}
}
.contact-ultra {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 50px auto 0;
}

.glass-contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.glass-contact-card:hover {
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.icon-circle {
    width: 60px; height: 60px;
    background: var(--primary);
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    border: 1px solid var(--gold);
}

.info-text span {
    display: block; color: var(--gold); font-weight: 700; font-size: 0.9rem;
}

.info-text h3 {
    color: white; font-size: 1.5rem; font-weight: 800; margin-top: 5px;
}

.arrow-icon {
    color: var(--gold); font-size: 1.2rem; transition: 0.3s;
}

.glass-contact-card:hover .arrow-icon { transform: translateX(-10px); }
.luxury-footer {
    background: #070b14;
    padding: 80px 0 30px;
    color: #e2e8f0;
    border-top: 2px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex; align-items: center; gap: 15px; margin-bottom: 20px;
}

.footer-logo i { font-size: 2rem; color: var(--gold); }
.footer-logo h2 { font-size: 1.2rem; font-weight: 900; color: white; }

.about-col p { line-height: 1.8; color: #94a3b8; font-size: 0.95rem; }

.col-title {
    color: white; font-size: 1.2rem; font-weight: 800;
    margin-bottom: 25px; position: relative;
}

.col-title::after {
    content: ''; position: absolute; bottom: -8px; right: 0;
    width: 40px; height: 2px; background: var(--gold);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    text-decoration: none; color: #94a3b8; transition: 0.3s;
    font-weight: 600; display: block;
}
.footer-links a:hover { color: var(--gold); transform: translateX(-5px); }

.contact-info p { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: #94a3b8; }
.contact-info i { color: var(--gold); }

.footer-bottom {
    margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center; font-size: 0.9rem; color: #64748b;
}

.gmt-credit { margin-top: 10px; font-weight: 700; color: #94a3b8; }
.gmt-credit a { color: var(--gold); text-decoration: none; transition: 0.3s; }
.gmt-credit a:hover { text-shadow: 0 0 10px var(--gold); }
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col { text-align: center; }
    .col-title::after { right: 50%; transform: translateX(50%); }
    .contact-info p { justify-content: center; }
}
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.whatsapp-float {
    background: #25d366;
    animation: pulse-green 2s infinite;
}
.call-float {
    background: var(--gold); 
    animation: pulse-gold 2s infinite;
}
.float-btn:hover {
    width: 160px; 
    border-radius: 50px;
}

.btn-text {
    position: absolute;
    right: 60px;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 800;
    opacity: 0;
    transition: 0.3s;
}

.float-btn:hover .btn-text {
    opacity: 1;
    right: 55px; 
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    .float-btn:hover {
        width: 55px;
    }
    .btn-text {
        display: none;
    }
}
@media (max-width: 768px) {
        .brand-text h1, .main-title, .glow-text {
        font-size: 0.95rem !important; 
        white-space: nowrap; 
    }
    
    .location-tag, .sub-location {
        font-size: 0.7rem !important; 
    }
    .hero-title, .reveal-text, .title-main {
        font-size: 1.7rem !important; 
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .hero-desc, .fade-in-text, .desc-main {
        font-size: 0.9rem !important; 
        line-height: 1.6 !important;
        padding: 0 10px;
    }
    .badge, .top-label, .exclusive-badge {
        font-size: 0.75rem !important;
        padding: 5px 15px !important;
    }
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
    margin-top: 50px;
}
.glass-contact-card.full-width {
    grid-column: span 2;
    justify-content: center; 
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr; 
    }
    
    .glass-contact-card.full-width {
        grid-column: span 1;
    }
        .info-text h3 {
        font-size: 1.1rem !important;
    }
}
.glass-contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}