:root {
    --p: #6d8c6d; 
    --a: #d4af37; 
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.3);
}

* { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color: transparent; }
body { font-family: 'Cairo', sans-serif; background: #fdfdfd; overflow-x: hidden; scroll-behavior: smooth; }
.font-amiri { font-family: 'Amiri', serif; }
header { position: fixed; top: 20px; width: 100%; z-index: 2000; padding: 0 5%; transition: 0.5s; }
.glass-container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 40px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 30px; box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.logo-box { display: flex; align-items: center; gap: 15px; }
.logo-circle { width: 50px; height: 50px; background: #fff; border-radius: 50%; padding: 5px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.logo-circle img { width: 100%; object-fit: contain; }
.logo-names h1 { font-size: 1.4rem; line-height: 1; color: var(--p); }
.gold-text { font-size: 0.8rem; color: var(--a); font-weight: 900; letter-spacing: 1px; }

.desktop-menu { display: flex; gap: 10px; }
.nav-link {
    text-decoration: none; color: #444; font-weight: 700; font-size: 0.9rem;
    padding: 10px 20px; border-radius: 30px; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link.active { background: var(--p); color: #fff; box-shadow: 0 10px 20px rgba(109, 140, 109, 0.3); transform: translateY(-3px); }
.nav-link:hover:not(.active) { background: rgba(109, 140, 109, 0.1); transform: translateY(-2px); }

.btn-call-lux { background: var(--a); color: #fff; text-decoration: none; padding: 12px 25px; border-radius: 30px; font-weight: 900; transition: 0.3s; }
.btn-call-lux:hover { background: var(--p); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3); }
.burger-icon { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.burger-icon span { width: 30px; height: 3px; background: var(--p); border-radius: 5px; transition: 0.4s; }

.side-menu-wrapper {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(109, 140, 109, 0.1); backdrop-filter: blur(15px);
    z-index: 1500; display: flex; align-items: center; justify-content: center;
    clip-path: circle(0% at 90% 5%); transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.side-menu-wrapper.open { clip-path: circle(150% at 90% 5%); }

.menu-glass-card {
    background: rgba(255, 255, 255, 0.85); width: 85%; max-width: 350px;
    border-radius: 50px; padding: 50px 20px; border: 1px solid #fff;
    box-shadow: 0 50px 100px rgba(0,0,0,0.2); text-align: center;
}
.mobile-links { list-style: none; }
.mob-link {
    display: block; text-decoration: none; font-family: 'Amiri', serif;
    font-size: 1.8rem; color: #333; padding: 15px; margin: 10px 0;
    border-radius: 25px; transition: 0.4s; transform: translateY(30px); opacity: 0;
}
.side-menu-wrapper.open .mob-link { transform: translateY(0); opacity: 1; transition-delay: calc(var(--d) * 0.1s); }
.mob-link.active { background: var(--p); color: #fff; box-shadow: 0 15px 30px rgba(109,140,109,0.2); }
.hero-art { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 0 5%; }
.animated-bg { position: absolute; width: 100%; height: 100%; background: url('images/bg.png') center/cover; z-index: -2; filter: brightness(0.9) blur(3px); animation: zoomIn 20s infinite alternate; }
@keyframes zoomIn { 0% {transform: scale(1);} 100% {transform: scale(1.15);} }

.liquid-shape-container { position: relative; width: 100%; max-width: 900px; display: flex; align-items: center; justify-content: center; }
.liquid-shape {
    position: absolute; width: 110%; height: 110%; background: linear-gradient(45deg, var(--p), var(--a));
    opacity: 0.2; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1; animation: morphing 10s infinite ease-in-out;
}
@keyframes morphing { 0% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;} 50% {border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;} 100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;} }

.glass-content-card {
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5); padding: 60px;
    border-radius: 40px 100px 40px 100px; box-shadow: 30px 30px 80px rgba(0,0,0,0.1);
    text-align: center; transform: scale(0.9); opacity: 0; animation: reveal 1.2s forwards 0.3s;
}
@keyframes reveal { to {transform: scale(1); opacity: 1;} }

.glass-content-card h2 { font-size: clamp(2rem, 5vw, 4rem); color: var(--p); margin-bottom: 25px; text-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.hero-p { font-size: 1.1rem; line-height: 1.8; color: #444; margin-bottom: 40px; font-weight: 400; }

.hero-btns-stack { display: flex; gap: 20px; justify-content: center; }
.glow-btn { padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 900; transition: 0.4s; font-size: 1rem; }
.glow-btn.main { background: var(--p); color: #fff; box-shadow: 0 10px 30px rgba(109,140,109,0.4); }
.glow-btn.alt { border: 2px solid var(--p); color: var(--p); }
.glow-btn:hover { transform: scale(1.05) translateY(-5px); }
.smart-btn {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: var(--p); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); cursor: pointer; z-index: 2500;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.smart-btn:active { transform: scale(0.85); }
.smart-btn svg { width: 30px; transition: 0.4s; }
.smart-btn.up svg { transform: rotate(180deg); }
@media (max-width: 900px) {
    .desktop-menu { display: none; }
    .burger-icon { display: flex; }
    .glass-content-card { padding: 40px 20px; border-radius: 40px; }
    .hero-btns-stack { flex-direction: column; width: 100%; }
    .glow-btn { width: 100%; text-align: center; }
    .section-lux { height: 70vh; padding: 100px 20px; text-align: center; font-size: 2rem; color: var(--p); font-family: 'Amiri', serif; }
}
.burger-icon.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.burger-icon.open span:nth-child(2) { opacity: 0; }
.burger-icon.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
@media (max-width: 900px) {
    .btn-call-lux {
        display: none !important;
    }
}
.nav-link, .mob-link {
    font-family: 'Amiri', serif !important;
    font-size: 1.15rem; 
    font-weight: 700;
}
.exp-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f9fbf9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.exp-header { text-align: center; margin-bottom: 70px; }
.main-title { font-size: 3.5rem; color: var(--p); margin-bottom: 10px; }
.sub-text { font-size: 1.2rem; color: #777; font-weight: 600; }

.title-line {
    width: 150px; height: 3px; background: #ddd; margin: 20px auto; position: relative; border-radius: 10px;
}
.title-line span {
    position: absolute; top: 0; left: 0; width: 40px; height: 100%;
    background: var(--a); border-radius: 10px; animation: moveLine 3s infinite linear;
}
@keyframes moveLine { 0% {left:0;} 100% {left:110px;} }

.exp-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; margin-bottom: 80px;
}

.exp-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
}

.exp-card:hover {
    transform: translateY(-20px) scale(1.02);
    background: var(--white);
    box-shadow: 0 40px 80px rgba(109, 140, 109, 0.1);
    border-color: var(--clr);
}

.card-icon {
    font-size: 3.5rem; margin-bottom: 25px; display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    animation: bounce 3s infinite;
}

.exp-card h3 { font-size: 1.8rem; color: var(--p); margin-bottom: 15px; }
.exp-card p { line-height: 1.8; color: #666; font-size: 1rem; }
.stats-bar {
    display: flex; justify-content: space-around; flex-wrap: wrap;
    background: var(--p); padding: 50px; border-radius: 50px;
    box-shadow: 0 20px 50px rgba(109, 140, 109, 0.3);
}

.stat-item { text-align: center; color: white; padding: 20px; }
.stat-item h4 { font-size: 3rem; margin-bottom: 5px; color: var(--a); }
.stat-item span { font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@media (max-width: 768px) {
    .main-title { font-size: 2.2rem; }
    .stats-bar { padding: 30px 10px; border-radius: 30px; }
    .stat-item h4 { font-size: 2rem; }
    .exp-card { padding: 30px 20px; }
}
.services-lux {
    padding: 120px 5%;
    background: #f2f4f2; 
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 50px 30px;
    border-radius: 50px;
    text-align: center;
    cursor: pointer; 
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}
.service-card.selected {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--p); 
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(109, 140, 109, 0.2);
}

.service-card.selected h3 { color: var(--a); } 

.service-icon { font-size: 4rem; margin-bottom: 25px; transition: 0.5s; }
.service-card h3 { font-family: 'Amiri', serif; font-size: 1.9rem; color: var(--p); margin-bottom: 15px; }
.service-card p { font-size: 1rem; color: #555; line-height: 1.7; }
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; } 
}
.services-lux {
    padding: 150px 5%;
    background: #d4ddd4; 
    position: relative;
    overflow: hidden;
}
.bg-vibe .vibe-circle {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; z-index: 0;
}
.c1 { width: 500px; height: 500px; background: #6d8c6d; top: -10%; left: -10%; animation: float 10s infinite alternate; }
.c2 { width: 400px; height: 400px; background: #d4af37; bottom: -10%; right: -5%; animation: float 15s infinite alternate-reverse; }

@keyframes float { 0% { transform: translate(0,0); } 100% { transform: translate(50px, 50px); } }
.services-intro { text-align: center; margin-bottom: 80px; position: relative; z-index: 1; }
.gold-tag { color: #b08d1e; font-size: 1.5rem; letter-spacing: 3px; display: block; margin-bottom: 10px; }
.main-heading { font-size: 4rem; color: #3d4f3d; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.05); }
.heading-divider { width: 80px; height: 5px; background: #d4af37; margin: 0 auto; border-radius: 10px; box-shadow: 0 0 15px rgba(212,175,55,0.4); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}
.service-card {
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 60px 30px 40px;
    border-radius: 60px 20px 60px 20px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    position: relative;
}
.icon-box {
    width: 100px; height: 100px; background: #fff; margin: -100px auto 30px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: 0.5s; border: 3px solid #f9f9f9;
}
.icon-img { font-size: 3.5rem; transition: 0.5s; }
.card-title { font-size: 2.2rem; color: #2e3b2e; margin-bottom: 20px; }
.card-desc { font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 30px; min-height: 80px; }
.card-footer { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.price-tag { background: #6d8c6d; color: white; padding: 5px 20px; border-radius: 20px; font-weight: bold; font-size: 0.85rem; }
.book-now {
    background: transparent; border: 2px solid #6d8c6d; color: #6d8c6d;
    padding: 12px 40px; border-radius: 50px; font-weight: 900;
    transition: 0.4s; font-family: 'Cairo', sans-serif;
}

.service-card:hover .card-inner {
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.85);
    border-color: #6d8c6d;
}

.service-card:hover .icon-box {
    transform: rotate(15deg) scale(1.1);
    background: #6d8c6d; color: #fff;
}
.service-card.selected .card-inner {
    background: #6d8c6d;
    border-color: #d4af37;
    transform: scale(1.05) translateY(-25px);
    box-shadow: 0 40px 80px rgba(61, 79, 61, 0.3);
}

.service-card.selected .card-title,
.service-card.selected .card-desc { color: #fff; }
.service-card.selected .icon-box { background: #d4af37; box-shadow: 0 0 30px rgba(212,175,55,0.5); }
.service-card.selected .book-now { background: #fff; color: #6d8c6d; border-color: #fff; }
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; gap: 80px; }
    .main-heading { font-size: 2.8rem; }
}
.testimonials-lux {
    padding: 120px 5%;
    background: #c8d4c8; 
    position: relative;
    overflow: hidden;
}

.testi-header { text-align: center; margin-bottom: 70px; }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 40px;
    border-radius: 40px;
    position: relative;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.testi-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 30px 60px rgba(109, 140, 109, 0.15);
    border-color: #d4af37;
}

.quote-icon {
    position: absolute; top: 20px; right: 30px;
    font-size: 5rem; color: rgba(109, 140, 109, 0.1);
    font-family: serif;
}

.stars { margin-bottom: 20px; font-size: 0.9rem; letter-spacing: 2px; }

.testi-text {
    font-size: 1.1rem; line-height: 1.8; color: #444;
    margin-bottom: 30px; font-style: italic;
}

.user-info { display: flex; align-items: center; gap: 15px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 20px; }

.user-avatar {
    width: 50px; height: 50px; background: #6d8c6d; color: white;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: bold; font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(109, 140, 109, 0.3);
}

.user-details h5 { font-size: 1.3rem; color: #2e3b2e; }
.user-details span { font-size: 0.85rem; color: #6d8c6d; font-weight: bold; }
@media (max-width: 1000px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
    .testi-grid { grid-template-columns: 1fr; }
    .main-heading { font-size: 2.5rem; }
}
.why-lux {
    padding: 140px 5%;
    background: #b8c7b8; 
    position: relative;
    overflow: hidden;
}
.why-glow-bg .glow-orb {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.3; z-index: 0;
}
.g1 { width: 600px; height: 600px; background: #6d8c6d; top: -20%; right: -10%; }
.g2 { width: 500px; height: 500px; background: #d4af37; bottom: -20%; left: -10%; }

.why-intro { text-align: center; margin-bottom: 90px; position: relative; z-index: 1; }
.fancy-divider { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 20px 0; }
.fancy-divider .line { width: 100px; height: 2px; background: linear-gradient(to right, transparent, #d4af37, transparent); }
.fancy-divider .dot { width: 8px; height: 8px; background: #d4af37; border-radius: 50%; box-shadow: 0 0 10px #d4af37; }

.intro-text { max-width: 800px; margin: 0 auto; color: #444; font-size: 1.2rem; line-height: 1.8; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 60px 30px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-number {
    position: absolute; top: 20px; left: 30px;
    font-size: 3rem; color: rgba(109, 140, 109, 0.1);
    font-weight: 900;
}

.why-icon-wrap {
    font-size: 4.5rem; margin-bottom: 25px;
    display: inline-block; transition: 0.5s;
}

.why-card h3 { font-size: 1.8rem; color: #2e3b2e; margin-bottom: 20px; }
.why-card p { font-size: 1rem; color: #555; line-height: 1.7; }
.why-card:hover {
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.85);
    border-color: #d4af37;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.why-card:hover .why-icon-wrap {
    transform: scale(1.2) rotate(10deg);
}
.pulse-glow {
    border: 1.5px solid #d4af37;
    animation: cardPulse 3s infinite ease-in-out;
}

@keyframes cardPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2); }
    70% { box-shadow: 0 0 40px 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
@media (max-width: 1200px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-lux { padding: 100px 5%; }
    .main-heading { font-size: 2.4rem; }
}
.contact-lux {
    padding: 120px 5%;
    position: relative;
    min-height: 80vh;
    display: flex; align-items: center;
    overflow: hidden;
}

.contact-overlay-blur {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: url('images/bg.png');
    background-size: cover; background-position: center;
    filter: blur(8px) brightness(0.6); 
    z-index: 0; transform: scale(1.1);
}

.relative-z { position: relative; z-index: 1; width: 100%; }
.white { color: #fff !important; }

.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px; border-radius: 40px; text-align: center;
    text-decoration: none; transition: 0.5s; color: white;
}
.contact-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.25); border-color: var(--a); }

.card-icon { font-size: 4rem; margin-bottom: 15px; }
.contact-card h3 { font-size: 2rem; margin-bottom: 10px; }
.contact-card p { font-size: 1.5rem; font-weight: 900; color: var(--a); }
.tap-hint { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; }
.location-card-wide {
    background: rgba(109, 140, 109, 0.8);
    backdrop-filter: blur(20px);
    padding: 30px 50px; border-radius: 100px;
    display: flex; align-items: center; gap: 25px;
    color: white; border: 1px solid rgba(255,255,255,0.2);
    width: fit-content; margin: 0 auto;
}
.loc-icon { font-size: 2.5rem; }
.loc-info h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--a); }
.footer-lux {
    background: #1a241a; 
    padding: 100px 5% 30px; color: #fff;
}

.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px;
}

.footer-brand { font-size: 2.5rem; color: var(--a); margin-bottom: 20px; }
.footer-desc { line-height: 1.8; color: #aaa; font-size: 0.95rem; }

.col-title { font-size: 1.4rem; margin-bottom: 30px; position: relative; color: #fff; }
.col-title::after { content:''; position: absolute; bottom:-10px; right:0; width:40px; height:2px; background: var(--a); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #aaa; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--a); padding-right: 10px; }

.contact-info { margin-bottom: 15px; color: #ccc; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px; text-align: center;
}
.copyright { color: #888; font-size: 0.9rem; margin-bottom: 10px; }
.developer a { color: var(--a); text-decoration: none; font-weight: 900; transition: 0.3s; }
.developer a:hover { text-shadow: 0 0 10px var(--a); }
.floating-left-actions {
    position: fixed; left: 30px; bottom: 30px;
    display: flex; flex-direction: column; gap: 15px; z-index: 2500;
}
.f-btn {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; text-decoration: none; color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: 0.4s;
}
.wa-float { background: #25d366; }
.call-float { background: #d4af37; }
.f-btn:hover { transform: scale(1.1) rotate(15deg); }
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .location-card-wide { border-radius: 30px; padding: 20px; flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .col-title::after { right: 50%; transform: translateX(50%); }
    .floating-left-actions { left: 20px; bottom: 20px; }
}
.wa-float {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 100%) !important;
    border: 2px solid #d4af37; 
    box-shadow: 0 10px 30px rgba(18, 140, 126, 0.4) !important;
}
.wa-icon-lux {
    color: #128c7e;
    text-shadow: 0 0 20px rgba(18, 140, 126, 0.3);
}
.contact-action-btn {
    margin-top: 25px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    width: 100%;
}
.btn-gold {
    background: #d4af37;
    color: #fff;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}
.btn-emerald {
    background: #128c7e;
    color: #fff;
    box-shadow: 0 10px 20px rgba(18, 140, 126, 0.3);
}
.contact-card:hover .contact-action-btn {
    transform: scale(1.05);
    letter-spacing: 1px;
}

.btn-gold:hover { background: #b08d1e; box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5); }
.btn-emerald:hover { background: #075e54; box-shadow: 0 15px 30px rgba(18, 140, 126, 0.5); }
.wa-card {
    border-bottom: 5px solid #128c7e !important;
}
.call-card {
    border-bottom: 5px solid #d4af37 !important;
}
.f-btn {
    width: 70px !important;
    height: 70px !important;
    font-size: 2.2rem !important;
}
@media (max-width: 768px) {
    .contact-action-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
}
.official-wa-icon {
    color: #25D366; 
    font-size: 5rem; 
    filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.4)); 
    transition: 0.5s;
}

.contact-card:hover .official-wa-icon {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 0 25px rgba(37, 211, 102, 0.7));
}
.wa-float {
    background: #25D366 !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem !important; 
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5) !important;
}

.wa-float:hover {
    background: #128c7e !important; 
}
.call-float {
    background: #d4af37 !important;
    font-size: 2rem !important;
}
.contact-action-btn {
    margin-top: 25px;
    padding: 20px 40px; 
    border-radius: 50px;
    font-size: 1.2rem; 
    font-weight: 900;
    width: 100%;
    cursor: pointer;
}.contact-header {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.contact-header h4, 
.contact-header h2 {
    width: 100%;
    text-align: center; 
}

.heading-divider {
    margin: 20px auto 0; 
}
@media (max-width: 768px) {
        .logo-names h1 {
        font-size: 1.1rem !important; 
    }
    .gold-text {
        font-size: 0.65rem !important; 
        letter-spacing: 0.5px;
    }
    .glass-content-card h2 {
        font-size: 1.7rem !important; 
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-p {
        font-size: 0.85rem !important;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    .glow-btn {
        font-size: 0.9rem !important;
        padding: 12px 20px !important;
    }
}
.works-gallery {
    padding: 100px 5%;
    background: #ffffff;
    position: relative;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-mini {
    color: var(--sky-blue);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.gallery-title {
    font-family: 'Amiri', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
}

.gallery-title span { color: var(--main-blue); }

.gallery-desc {
    color: #555;
    font-size: 1.1rem;
    margin-top: 15px;
}
.video-interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.video-item {
    background: #f8f9fa;
    border-radius: 30px;
    padding: 10px;
    border: 1px solid var(--ice-blue);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.05);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 450px; 
    border-radius: 25px;
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    cursor: pointer;
}
.video-item:hover {
    transform: translateY(-10px);
    border-color: var(--main-blue);
    box-shadow: 0 20px 40px rgba(0, 119, 182, 0.15);
}
video::-webkit-media-controls-panel {
    background-image: linear-gradient(transparent, rgba(0,0,0,0.7));
}

@media (max-width: 768px) {
    .video-interactive-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
    }
    .video-wrapper { height: 400px; }
}
.location-card-wide {
    background: #ffffff;
    border-radius: 40px;
    border: 2px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 119, 182, 0.08);
    margin-top: 30px;
    width: 100%;
}

.loc-header-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: #ffffff;
    border-bottom: 1px solid var(--ice-blue);
}

.loc-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.loc-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: 'Amiri', serif;
    font-weight: 800;
}

.loc-info p {
    color: #444;
    font-weight: 700;
    font-size: 1.1rem;
}

.map-main-container {
    position: relative;
    width: 100%;
    line-height: 0;
}

.map-main-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.map-directions-link {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--main-blue);
    color: #ffffff !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.4);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    border: 2px solid #ffffff;
}

.map-directions-link:hover {
    transform: scale(1.05) translateY(-5px);
    background: var(--sky-blue);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.6);
}

@media (max-width: 768px) {
    .loc-header-box {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .loc-info h3 {
        font-size: 1.5rem;
    }

    .loc-info p {
        font-size: 0.95rem;
    }

    .map-directions-link {
        bottom: 20px;
        right: 15px;
        left: 15px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .location-card-wide {
        border-radius: 25px;
    }

    .map-main-container iframe {
        height: 350px;
    }
}