:root {
    --primary: #0D530E;
    --secondary: #306D29;
    --bg: #FBF5DD;
    --accent: #E7E1B1;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: var(--bg);
    color: var(--primary);
    overflow-x: hidden;
}

.master-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.4s;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-symbol {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.foundation-name {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
}

.foundation-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary);
}

.main-nav .nav-list {
    display: flex;
    gap: 10px;
}

.nav-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(13, 83, 14, 0.25);
    transform: translateY(-2px);
}

.btn-call-header {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(48, 109, 41, 0.2);
    transition: 0.3s;
}

.btn-call-header:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.mobile-trigger {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
}

.mobile-trigger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

.hero-master {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #FBF5DD 0%, #E7E1B1 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
}

.moving-shape {
    position: absolute;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    opacity: 0.4;
    filter: drop-shadow(0 0 20px rgba(13, 83, 14, 0.2));
    animation: moveShapes 20s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.shape-1 { width: 300px; height: 300px; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; top: -50px; left: -50px; }
.shape-2 { width: 200px; height: 200px; border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%; bottom: 10%; right: -50px; animation-duration: 25s; }
.shape-3 { width: 150px; height: 150px; border-radius: 50%; top: 20%; right: 10%; background: var(--accent); opacity: 0.6; }
.shape-4 { width: 100px; height: 100px; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); bottom: 20%; left: 10%; opacity: 0.3; }
.shape-5 { width: 250px; height: 250px; border-radius: 30% 70% 50% 50%; top: 40%; left: 30%; animation-duration: 15s; }

@keyframes moveShapes {
    from { transform: translate(0, 0) rotate(0deg) scale(1); }
    to { transform: translate(100px, 50px) rotate(360deg) scale(1.2); }
}

.hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary);
}

.accent-text {
    color: var(--secondary);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--primary);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-inline: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-main {
    background: var(--primary);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(13, 83, 14, 0.3);
    transition: 0.4s;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    border: 2px solid var(--primary);
    transition: 0.4s;
}

.btn-main:hover, .btn-outline:hover {
    transform: translateY(-5px);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 0;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

.side-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 40px 20px;
    transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.side-panel.open { right: 0; }

.panel-close {
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

.panel-nav {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.panel-link {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    padding: 15px;
    border-radius: 12px;
}

.panel-link.active {
    background: var(--primary);
    color: var(--white);
}

.panel-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1500;
    display: none;
    backdrop-filter: blur(5px);
}

@media (max-width: 1100px) {
    .main-nav { display: none; }
    .mobile-trigger { display: flex; }
    .btn-call-header { display: none; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .nav-wrapper { padding: 0 20px; }
    .foundation-name { font-size: 1.2rem; }
}
.foundation-name {
    font-size: 1.3rem;
}

.foundation-tag {
    font-size: 0.65rem;
}

.nav-link {
    font-size: 0.85rem;
}

.hero-title {
    font-size: clamp(1.8rem, 5.5vw, 3.6rem);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.7vw, 1.15rem);
}

.btn-main, .btn-outline {
    font-size: 1rem;
    padding: 15px 35px;
}

.btn-call-header {
    font-size: 0.85rem;
    padding: 10px 20px;
}

.panel-link {
    font-size: 1.05rem;
}

@media (max-width: 480px) {
    .foundation-name {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-main, .btn-outline {
        display: block;
        width: 100%;
        text-align: center;
    }
}
.about-lux {
    padding: 120px 20px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.lux-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.lux-visual-part {
    flex: 1;
    position: relative;
    padding-bottom: 50px;
}

.main-frame {
    position: relative;
    z-index: 5;
    border-radius: 40px 100px 40px 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(13, 83, 14, 0.15);
}

.main-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: 0.8s;
}

.main-frame:hover img {
    transform: scale(1.1);
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.exp-year {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 700;
}

.floating-glass-box {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white);
    padding: 25px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.floating-glass-box strong {
    color: var(--secondary);
    display: block;
    margin-top: 5px;
}

.decorative-blob {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}

.lux-text-part {
    flex: 1;
}

.upper-tag {
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.lux-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary);
}

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

.lux-p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: justify;
}

.lux-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.l-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--primary);
}

.l-icon {
    color: var(--secondary);
    font-size: 1.2rem;
}

.lux-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(13, 83, 14, 0.2);
    transition: 0.4s;
}

.lux-btn:hover {
    transform: translateY(-5px);
    background: var(--secondary);
}

@media (max-width: 1100px) {
    .lux-container {
        flex-direction: column;
        gap: 100px;
    }
    .lux-visual-part {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .main-frame {
        border-radius: 30px;
    }
    .main-frame img {
        height: 400px;
    }
    .floating-glass-box {
        right: 0;
        bottom: -20px;
        width: 90%;
        padding: 15px;
    }
    .lux-features {
        grid-template-columns: 1fr;
    }
}
.premium-services {
    position: relative;
    padding: 120px 20px;
    background-color: #f6fcf5;
    overflow: hidden;
}

.blueprint-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: linear-gradient(#306d29 1.5px, transparent 1.5px), linear-gradient(90deg, #306d29 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    z-index: 1;
}

.services-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

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

.floating-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid var(--accent);
}

.services-main-h {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 25px;
}

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

.services-sub-p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--primary);
    line-height: 1.8;
    opacity: 0.85;
}

.services-lux-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-lux-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 45px;
    padding: 50px;
    display: flex;
    gap: 35px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(13, 83, 14, 0.03);
}

.service-lux-card:hover {
    transform: translateY(-12px);
    background: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 40px 70px rgba(13, 83, 14, 0.12);
}

.lux-icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--bg), var(--white));
    color: var(--primary);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.5s;
}

.lux-icon-box svg {
    width: 45px;
    height: 45px;
    stroke: var(--primary);
}

.service-lux-card:hover .lux-icon-box {
    background: var(--primary);
    transform: rotateY(180deg);
}

.service-lux-card:hover .lux-icon-box svg {
    stroke: var(--white);
}

.lux-card-content h3 {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
}

.lux-card-content p {
    font-size: 1.05rem;
    color: var(--primary);
    line-height: 1.9;
    margin-bottom: 30px;
    opacity: 0.9;
}

.lux-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lux-tags span {
    background: rgba(48, 109, 41, 0.08);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    border: 1px solid rgba(48, 109, 41, 0.1);
}

@media (max-width: 1200px) {
    .services-lux-grid { gap: 25px; }
    .service-lux-card { padding: 35px; }
}

@media (max-width: 1024px) {
    .services-lux-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .service-lux-card { flex-direction: column; text-align: center; border-radius: 35px; }
    .lux-icon-box { margin: 0 auto; }
    .lux-tags { justify-content: center; }
    .premium-services { padding: 80px 15px; }
}
.blog-section { padding: 100px 20px; background: var(--bg); position: relative; }
.blog-header { text-align: center; margin-bottom: 60px; }
.blog-badge { background: var(--secondary); color: #fff; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 800; }
.blog-title { font-size: 3rem; margin-top: 15px; color: var(--primary); font-weight: 900; }
.accent-line { color: var(--secondary); border-bottom: 5px solid var(--accent); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; max-width: 1300px; margin: 0 auto; }
.blog-card { background: rgba(255,255,255,0.5); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); border-radius: 30px; overflow: hidden; transition: 0.4s; }
.blog-card:hover { transform: translateY(-15px); background: #fff; box-shadow: 0 30px 60px rgba(13, 83, 14, 0.1); }
.blog-img { position: relative; height: 250px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag { position: absolute; top: 20px; right: 20px; background: var(--primary); color: #fff; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; }
.blog-info { padding: 30px; }
.blog-info h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 15px; font-weight: 800; line-height: 1.4; }
.blog-info p { color: #666; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.read-more { font-weight: 900; color: var(--secondary); transition: 0.3s; }
.read-more:hover { letter-spacing: 1px; color: var(--primary); }
@media (max-width: 480px) { .blog-grid { grid-template-columns: 1fr; } .blog-title { font-size: 2rem; } }
.why-zenith {
    position: relative;
    padding: 120px 20px;
    background: #062106;
    overflow: hidden;
    color: var(--white);
}

.zenith-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.light-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}

.lb-1 { width: 400px; height: 400px; background: var(--secondary); top: -100px; left: -100px; }
.lb-2 { width: 300px; height: 300px; background: var(--accent); bottom: -50px; right: -50px; }

.zenith-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.zenith-header {
    text-align: center;
    margin-bottom: 100px;
}

.zenith-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 0.9rem;
}

.zenith-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-top: 15px;
    line-height: 1.2;
}

.glow-text {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.zenith-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.zenith-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.zenith-center {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.zenith-orb {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-core {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 50px var(--accent);
}

.orb-ring {
    position: absolute;
    border: 1px solid rgba(231, 225, 177, 0.3);
    border-radius: 50%;
    animation: rotateOrb 10s linear infinite;
}

.orb-ring:nth-child(2) { width: 100%; height: 100%; }
.orb-ring:nth-child(3) { width: 150%; height: 150%; border-style: dashed; animation-duration: 20s; }

@keyframes rotateOrb { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.zenith-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.zenith-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    opacity: 0.5;
    font-family: serif;
}

.zenith-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--accent);
}

.zenith-info p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
}

@media (max-width: 1100px) {
    .zenith-content { flex-direction: column; }
    .zenith-center { order: -1; margin-bottom: 50px; }
    .zenith-side { width: 100%; gap: 40px; }
    .zenith-item { text-align: center; flex-direction: column; align-items: center; }
}
.lux-contact {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-blur-layer {
    position: absolute;
    inset: 0;
    background: rgba(13, 83, 14, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    width: 100%;
}

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

.c-tag {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.c-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    font-weight: 900;
    margin-top: 10px;
}

.c-highlight {
    color: var(--accent);
}

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

.contact-glass-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 50px 30px;
    text-align: center;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-glass-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
}

.c-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.c-icon-circle svg { width: 35px; }

.contact-glass-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-glass-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 20px;
}

.c-number {
    display: inline-block;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.3rem;
}

.location-glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 40px;
}

.loc-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.loc-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 15px var(--accent));
}

.loc-text-box h3 {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.loc-text-box p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 20px;
}

.city-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.city-tags span {
    background: var(--primary);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid var(--accent);
}

@media (max-width: 992px) {
    .contact-main-grid { grid-template-columns: 1fr; }
    .loc-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .lux-contact { padding: 80px 15px; }
    .contact-glass-card { padding: 30px 15px; }
    .c-number { font-size: 1.1rem; }
    .city-tags { justify-content: center; }
}
.main-footer {
    background: #061806;
    color: var(--white);
    padding: 80px 20px 20px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-right: 10px;
}

.footer-info {
    list-style: none;
}

.footer-info li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 10px;
}

.developer-credit {
    font-size: 0.9rem;
    font-weight: 700;
}

.developer-credit a {
    color: var(--accent);
    text-decoration: none;
}

.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.float-whatsapp { background-color: #25d366; }
.float-call { background-color: var(--primary); }

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.float-btn svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    .floating-actions {
        bottom: 20px;
        left: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
    }
}
.gallery-section {
    padding: 100px 20px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

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

.g-badge {
    background: #FBF5DD;
    color: #306D29;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
}

.g-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #0D530E;
    font-weight: 900;
    margin: 20px 0 35px;
}

.g-highlight {
    color: #306D29;
}

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

.filter-btn {
    padding: 12px 30px;
    border: 2px solid #E7E1B1;
    background: transparent;
    color: #0D530E;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: #0D530E;
    color: #ffffff;
    border-color: #0D530E;
    box-shadow: 0 10px 20px rgba(13, 83, 14, 0.2);
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    aspect-ratio: 1 / 1;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    z-index: 10;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item video {
    background: #000;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
        gap: 10px;
    }
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    .gallery-item {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .filter-controls {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .nav-wrapper {
        padding: 0 15px;
    }

    .master-header {
        height: 70px;
        border-radius: 0 0 20px 20px;
        width: 100%;
        top: 0;
    }

    .hero-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 30px;
        gap: 12px;
    }

    .btn-main, .btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 0 10px;
    }

    .gallery-item {
        aspect-ratio: 16 / 9; 
        border-radius: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-info li {
        justify-content: center;
    }

    .side-panel {
        width: 250px; 
    }

    .about-lux {
        padding: 60px 15px;
    }

    .lux-container {
        gap: 40px;
    }

    .main-frame img {
        height: 300px;
    }

    .floating-glass-box {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: -30px;
        width: 95%;
        margin-inline: auto;
    }

    .service-lux-card {
        padding: 25px 15px;
    }

    .lux-icon-box {
        width: 70px;
        height: 70px;
    }

    .lux-card-content h3 {
        font-size: 1.3rem;
    }

    .zenith-content {
        gap: 30px;
    }

    .zenith-orb {
        width: 180px;
        height: 180px;
    }

    .zenith-item {
        gap: 15px;
    }

    .floating-actions {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 400px) {
    .foundation-name {
        font-size: 1rem;
    }
    .foundation-tag {
        font-size: 0.55rem;
    }
}
.side-anchor {
    font-size: 1.0rem !important;
}