:root {
    --primary-color: #2d5a27; 
    --accent-color: #d4af37; 
    --text-dark: #0a0a0a;
    --text-light: #f9f9f9;
    --glass-bg: rgba(255, 255, 255, 0.078);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #fcfcfc;
    overflow-x: hidden;
    color: var(--text-dark);
}
#navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 30px;
    transition: var(--transition);
}
#navbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: none;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 45px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.1));
}
.brand-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}
.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 10px;
    transition: var(--transition);
}
.nav-item.active {
    color: var(--primary-color);
}
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 10px;
}
.call-btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/bg.png'); 
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    animation: zoomAnimation 20s infinite alternate;
    z-index: -1;
}

@keyframes zoomAnimation {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.btn {
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn:hover {
    transform: scale(1.05);
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    z-index: 2000;
    padding: 50px 30px;
    transition: 0.5s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.side-menu.active {
    right: 0;
}

.side-links {
    list-style: none;
    margin-top: 50px;
}

.side-links li {
    margin-bottom: 25px;
}

.side-links a {
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 700;
}

.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
}
@media (max-width: 992px) {
    .nav-links, .nav-cta {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    #navbar {
        width: 95%;
        top: 10px;
    }
}
.animate-text {
    animation: fadeInUp 1s ease forwards;
}
.animate-text-delay {
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.container-luxury {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px; 
}
.about-premium {
    position: relative;
    padding: 150px 0;
    background: #0a0e12; 
    overflow: hidden;
    color: #fff;
}
.floating-shape {
    position: absolute;
    filter: blur(80px);
    z-index: 1;
    border-radius: 50%;
    opacity: 0.4;
    animation: moveShapes 20s infinite alternate;
}
.shape-1 { width: 400px; height: 400px; background: var(--primary-color); top: -100px; left: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--accent-color); bottom: -50px; right: -50px; }
@keyframes moveShapes {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.2); }
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
}
.ultra-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}
.glow-text {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}
.highlight-p {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    border-right: 4px solid var(--accent-color);
    padding-right: 20px;
}
.main-p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
}
.features-interactive {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    transition: 0.3s;
    cursor: pointer;
}

.feat-box:hover {
    background: rgba(255,255,255,0.08);
    transform: scale(1.02);
}
.feat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.modern-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}
.modern-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    transition: 0.4s;
}
.modern-cta:hover::after {
    width: 100%;
}
@media (max-width: 992px) {
    .container-luxury { padding: 0 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .ultra-title { font-size: 2.2rem; }
    .about-visual { order: 2; }
    .experience-badge { left: 50%; transform: translateX(-50%); top: -20px; }
    .feat-box { text-align: right; }
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}
.iphone-arrow {
    position: relative;
    width: 30px;
    height: 30px;
}
.chevron {
    position: absolute;
    width: 28px;
    height: 4px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move-chevron 3s ease-out infinite;
}
.chevron:first-child {
    animation: move-chevron 3s ease-out 1s infinite;
}
.chevron:nth-child(2) {
    animation: move-chevron 3s ease-out 2s infinite;
}
.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--accent-color); 
    border-radius: 2px;
}
.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}
.chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}
@keyframes move-chevron {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}
.scroll-text {
    margin-top: 50px;
    display: block;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 2px;
    opacity: 0.8;
    font-weight: 600;
}
.scroll-indicator:hover .chevron:before,
.scroll-indicator:hover .chevron:after {
    background: #fff; 
}
.about-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.magical-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%; 
    animation: morphBorder 8s linear infinite;
    opacity: 0.3;
    z-index: 1;
}
@keyframes morphBorder {
    0% { border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%; transform: rotate(0deg); }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 40%; }
    100% { border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%; transform: rotate(360deg); }
}
.reveal-container {
    position: relative;
    width: 90%;
    height: 90%;
    overflow: hidden;
    border-radius: 40px;
    z-index: 2;
    clip-path: inset(0 100% 0 0); 
    transition: clip-path 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.reveal-container.active {
    clip-path: inset(0 0 0 0);
}
.image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform: scale(1.3); 
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.reveal-container.active .image-wrapper {
    transform: scale(1);
}
.ultimate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2);
}
.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.floating-info-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: rgb(1, 95, 21);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 5;
    animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}
.icon-pulse {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(45, 90, 39, 0.4);
    animation: pulseIcon 2s infinite;
}
@keyframes pulseIcon {
    70% { box-shadow: 0 0 0 15px rgba(45, 90, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 90, 39, 0); }
}
.services-light-glass {
    position: relative;
    padding: 150px 0;
    background: #f8eddc; 
    overflow: hidden;
}
.liquid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #d4af3722, #2d5a2711);
    filter: blur(100px);
    border-radius: 50%;
    animation: moveBlobs 20s infinite alternate;
}
.blob:nth-child(1) { top: -10%; left: -10%; }
.blob:nth-child(2) { bottom: -10%; right: -10%; animation-delay: -5s; }
.blob:nth-child(3) { top: 40%; left: 30%; background: #d4af3711; }
@keyframes moveBlobs {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.2); }
}
.container-full {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 5;
}
.header-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}
.main-title-glass {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 900;
}
.gold-text { color: #d4af37; }
.seo-lead {
    font-size: 1.2rem;
    line-height: 2;
    color: #666;
}
.services-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}
.service-mega-card {
    perspective: 1000px;
}
.glass-body {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
    position: relative;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}
.service-mega-card:hover .glass-body {
    transform: translateY(-20px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
    border: 1px solid #d4af37;
}
.number-tag {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    transition: 0.5s;
}
.service-mega-card:hover .number-tag {
    color: rgba(212, 175, 55, 0.3);
    transform: scale(1.2);
}
.icon-wrap {
    font-size: 3rem;
    color: #2d5a27;
    margin-bottom: 25px;
    transition: 0.5s;
}
.service-mega-card:hover .icon-wrap {
    transform: translateZ(50px);
    color: #d4af37;
}
.glass-body h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}
.service-p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
}
.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.features-list li {
    font-weight: 700;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}
.features-list li i {
    color: #d4af37;
}
@media (max-width: 768px) {
    .main-title-glass { font-size: 2.2rem; }
    .container-full { padding: 0 20px; }
    .services-dynamic-grid { grid-template-columns: 1fr; }
}
.portfolio-section {
    padding: 100px 0;
    background-color: #f7f2ea;
    overflow: hidden;
}
.portfolio-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.portfolio-section .main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin-top: 15px;
}
.portfolio-section .gold-text {
    color: #d4af37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
.portfolio-section .section-desc {
    font-size: 1.2rem;
    color: #777;
    line-height: 1.8;
    margin-top: 20px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 60px;
}
.gallery-item {
    position: relative;
    height: 350px; 
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    cursor: pointer;
    transform: translateY(50px); 
    opacity: 0; 
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.gallery-item:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.25);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: 2;
}

.gallery-item:hover::before {
    left: 125%;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.9);
    transition: 0.5s;
    z-index: 3;
}
.gallery-item:hover::after {
    opacity: 1;
    transform: scale(1);
}
.gallery-item.active {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
    }
    .portfolio-section .main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .gallery-item {
        height: 300px;
    }
}
.why-choose-us {
    position: relative;
    padding: 150px 0;
    background: radial-gradient(circle at center, #0a1a0a 0%, #050505 100%);
    overflow: hidden;
    color: #fff;
}
.bg-glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    top: -200px;
    right: -100px;
    filter: blur(80px);
    z-index: 1;
    animation: moveOrb 15s infinite alternate;
}
@keyframes moveOrb {
    from { transform: translate(0,0); }
    to { transform: translate(-300px, 200px); }
}
.section-header-dark {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 5;
}
.title-dark {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 20px 0;
}
.accent-glow {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}
.gold-badge {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 8px 25px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.9rem;
    font-weight: 700;
}
.innovative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 0 50px;
    position: relative;
    z-index: 5;
}
.feature-hex-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 40px 0 40px 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.feature-hex-card:hover {
    transform: translateY(-20px) scale(1.02);
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
}
.hex-border-glow {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37);
    transition: 0.5s;
}
.feature-hex-card:hover .hex-border-glow {
    left: 100%;
}
.hex-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: 0.5s;
}
.feature-hex-card:hover .hex-icon {
    transform: scale(1.2) rotate(-10deg);
}
.hex-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f9f9f9;
}
.hex-content p {
    color: #aaa;
    line-height: 1.8;
    font-size: 1.05rem;
}
.feature-hex-card {
    opacity: 0;
    transform: translateX(50px);
}
.feature-hex-card.active {
    opacity: 1;
    transform: translateX(0);
}
.ultra-contact {
    position: relative;
    padding: 100px 0;
    background: #050805; 
    overflow: hidden;
}
.contact-parallax-bg {
    position: absolute;
    inset: 0;
    background: url('images/about2.png') center/cover;
    filter: blur(5px) brightness(0.2); 
    z-index: 1;
}
.container-contact {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.modern-header {
    text-align: center;
    margin-bottom: 80px;
}
.badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}
.gold-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37);
}
.badge-text {
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.hero-title {
    font-size: 4rem;
    color: #fff;
    font-weight: 900;
    line-height: 1.2;
}
.glow-text {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px #d4af37;
}
.separator-dots {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.separator-dots span {
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    animation: dotsPulse 1.5s infinite alternate;
}
@keyframes dotsPulse {
    from { opacity: 0.3; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1.2); }
}
.contact-grid-duo {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 25px;
}
.glass-card-duo {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-card-duo:hover {
    transform: scale(1.05) translateX(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.icon-circle {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: 0.4s;
}
.glass-card-duo:hover .icon-circle {
    background: #d4af37;
    color: #fff;
    box-shadow: 0 0 20px #d4af37;
}
.card-info h3 {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.card-info .num {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
    direction: ltr;
}
.address-full {
    grid-column: span 2;
    margin-top: 10px;
    justify-content: center;
}
.glass-card-duo {
    opacity: 0;
    transform: translateY(30px);
}

.glass-card-duo.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
@media (max-width: 768px) {
    .contact-grid-duo { grid-template-columns: 1fr; }
    .address-full { grid-column: span 1; }
    .hero-title { font-size: 2.5rem; }
}
.main-footer {
    background: #050805;
    padding: 80px 0 30px;
    color: #fff;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 10;
}

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

.footer-logo {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-desc {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px; right: 0;
    width: 30px; height: 2px;
    background: #d4af37;
}

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

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #d4af37;
    padding-right: 10px;
}

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

.contact-info-list li {
    display: flex;
    gap: 15px;
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-info-list i {
    color: #d4af37;
}

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

.developer-credit {
    margin-top: 10px;
    font-weight: 600;
}

.developer-credit a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 900;
}
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatPulse 2s infinite;
}
.call-float {
    background: #d4af37;
}
.whatsapp-float {
    background: #25d366;
    animation-delay: 0.5s;
}
.float-btn:hover {
    transform: scale(1.1) rotate(10deg);
}
@keyframes floatPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.whatsapp-float {
    animation: floatPulseGreen 2s infinite;
}
@keyframes floatPulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .floating-cta { bottom: 20px; right: 20px; }
    .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}
@media (max-width: 768px) {
    .section-header-dark {
        text-align: center;
        padding: 0 20px;
    }
    .innovative-grid {
        display: flex;
        flex-direction: column;
        align-items: center; 
        justify-content: center;
        padding: 0 20px;
        gap: 30px;
    }
    .feature-hex-card {
        width: 100%;
        max-width: 380px; 
        text-align: center; 
        margin: 0 auto; 
        transform: translateY(50px); 
        opacity: 0;
    }
    .feature-hex-card.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    .hex-icon {
        margin: 0 auto 20px auto;
    }
}
.reviews-section {
    padding: 100px 0;
    background-color: #fdfaf5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.reviews-section .container-luxury {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header-center {
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.add-review-btn {
    background: #d4af37;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    margin-top: 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.add-review-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    padding: 0 20px;
}

.review-card-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 40px 30px;
    border-radius: 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-card-glass:hover {
    transform: translateY(-15px);
    border-color: #d4af37;
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

.stars-display {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-card-glass p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-style: italic;
}

.review-card-glass h4 {
    color: #2d5a27;
    font-size: 1.2rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    .reviews-grid {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }
    .review-card-glass {
        width: 100% !important;
        max-width: 340px;
        margin: 0 auto !important;
    }
}

.review-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-content-glass {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 50px 30px;
    border-radius: 40px;
    position: relative;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    animation: modalScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #eee;
}

.close-modal:hover {
    background: #ff4d4d;
    color: #fff;
    transform: rotate(90deg);
    border-color: #ff4d4d;
}

.star-rating-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.star-item {
    font-size: 40px;
    color: #e0e0e0;
    cursor: pointer;
    transition: 0.3s;
}

.star-item.selected {
    color: #d4af37;
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.modal-content-glass input, 
.modal-content-glass textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    font-family: 'Cairo', sans-serif;
    outline: none;
}

.modal-content-glass input:focus, 
.modal-content-glass textarea:focus {
    border-color: #d4af37;
}

.whatsapp-send-btn {
    background: #25d366;
    color: #fff;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}

.whatsapp-send-btn:hover {
    background: #1da851;
    transform: translateY(-3px);
}