:root {
    --gold: #00e5ff; 
    --dark: #121826; 
    --glass: rgba(255, 255, 255, 0.05);
    --text-light: #f8fafc;
    --transition-fast: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 1s cubic-bezier(0.23, 1, 0.32, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    outline: none;
}

body, html {
    overflow-x: hidden;
    width: 100%;
    background-color: var(--dark);
    scroll-behavior: smooth;
    color: var(--text-light);
}
.main-nav {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-slow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 30px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.main-logo {
    height: 55px;
    width: 65px;
    filter: drop-shadow(0 0 5px var(--gold));
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-menu a:hover { color: var(--gold); }
.main-nav.scrolled {
    top: 0;
    width: 100%;
    transition: var(--transition-slow);
}

.main-nav.scrolled .nav-container {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: rgba(18, 24, 38, 0.98);
    border: none;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    padding: 10px 50px;
}

.call-action-btn {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(223, 178, 63, 0.3);
    transition: var(--transition-fast);
}

.call-action-btn:hover {
    transform: scale(1.05);
    background: white;
}
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--dark); 
    z-index: 1;
}
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.5) blur(2px); 
    animation: masterZoom 20s infinite alternate ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--dark));
    z-index: 0; 
}

.hero-wrapper {
    position: relative;
    z-index: 10; 
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, var(--dark));
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-content {
    max-width: 800px;
}

.pre-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.gradient-text {
    background: linear-gradient(to left, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #ccc;
}

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

.primary-btn, .secondary-btn {
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    z-index: 1;
}

.primary-btn { background: var(--gold); color: var(--dark); }
.secondary-btn { border: 1px solid var(--gold); color: var(--gold); }

.primary-btn:hover { background: white; transform: translateY(-5px); }
.secondary-btn:hover { background: var(--gold); color: var(--dark); transform: translateY(-5px); }
.mobile-toggler {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggler span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 10px;
    transition: 0.3s;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(25px);
    z-index: 2000;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
}

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

.drawer-header { margin-bottom: 50px; }
.drawer-header button { background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }
.drawer-links { list-style: none; }
.drawer-links li { margin-bottom: 30px; }
.drawer-links a { color: white; text-decoration: none; font-size: 1.8rem; font-weight: 800; transition: 0.3s; }
.drawer-links a:hover { color: var(--gold); padding-right: 15px; }
@media (max-width: 992px) {
    .nav-menu, .call-action-btn { display: none; }
    .mobile-toggler { display: flex; }
    .main-nav { top: 10px; }
    .nav-container { width: 95%; border-radius: 20px; }
    .main-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.scroll-box {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: pulseWaves 2s linear infinite;
}

.scroll-circle:nth-child(2) {
    animation-delay: 1s;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold);
    animation: floatingDot 2s ease-in-out infinite;
}

.scroll-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    animation: arrowDown 1.5s infinite;
}

@keyframes pulseWaves {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes floatingDot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes arrowDown {
    0% { transform: translateY(-5px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}
.about-section {
    padding: 120px 0;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.sub-title {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}

.about-text-area .main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 30px;
    line-height: 1.3;
}

.rich-text p {
    color: #aeb9cc;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: var(--transition-fast);
    text-align: center;
}

.feature-item:hover {
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.f-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-item h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #8892b0;
    font-size: 0.9rem;
}
.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
    padding: 40px;
}

.main-img-box {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: rotate(3deg);
    transition: var(--transition-slow);
}

.main-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-stack:hover .main-img-box {
    transform: rotate(0deg) scale(1.05);
}

.floating-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--dark);
    padding: 20px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.3);
    animation: floatVertical 3s ease-in-out infinite;
    z-index: 5;
}

.floating-badge .number {
    font-size: 2.5rem;
    font-weight: 900;
}

.floating-badge .label {
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.glass-card-info {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: rgba(18, 24, 38, 0.8);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 15px;
    border-right: 4px solid var(--gold);
    max-width: 250px;
    z-index: 6;
    animation: floatVertical 4s ease-in-out infinite reverse;
}

.glass-card-info p {
    font-size: 0.9rem;
    color: white;
    line-height: 1.5;
}

@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .rich-text p { text-align: center; }
    .image-stack { margin-top: 50px; }
    .glass-card-info { left: 50%; transform: translateX(-50%); width: 80%; }
}
.services-modern {
    padding: 120px 0;
    background: radial-gradient(circle at top right, #1a2235, var(--dark));
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.badge {
    background: rgba(0, 229, 255, 0.1);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(0, 229, 255, 0.3);
    margin-bottom: 20px;
    display: inline-block;
}

.services-intro {
    color: #aeb9cc;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-top: 25px;
}

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

.service-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 50px 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-slow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 229, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: 0.5s opacity;
}

.service-card-modern:hover .card-bg-glow {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #0099ff);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
    transition: var(--transition-fast);
}

.service-card-modern:hover .icon-box {
    transform: rotateY(360deg);
}

.service-card-modern h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-card-modern p {
    color: #aeb9cc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-top: auto;
}

.features-list li {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.features-list li i {
    color: var(--gold);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(1, minmax(300px, 1fr));

    }
    .service-card-modern {
        padding: 40px 25px;
    }
}
@media (max-width: 992px) {
    .main-nav {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        transform: none !important;
        position: fixed !important;
    }
    .nav-container {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        border: none !important;
        border-bottom: 1px solid rgba(0, 229, 255, 0.2) !important;
        padding: 15px 20px !important;
        background: rgba(18, 24, 38, 0.95) !important; 
        backdrop-filter: blur(15px) !important;
    }
    .main-logo {
        height: 40px !important;
    }
    .nav-cta .call-action-btn {
        display: none !important;
    }
    .mobile-toggler {
        display: flex !important;
    }
}
.gallery-section {
    padding: 100px 0;
    background: var(--dark);
    overflow: hidden;
}

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

.slider-wrapper {
    position: relative;
    padding: 40px 0;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0 10%; 
}

.slide-card {
    min-width: 400px;
    height: 500px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transform: scale(0.9);
    filter: grayscale(0.5);
    transition: var(--transition-slow);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.slide-card.active {
    transform: scale(1.05);
    filter: grayscale(0);
    border: 2px solid var(--gold);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.3);
}

.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: 0.5s;
}

.slide-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(18, 24, 38, 0.9), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s;
}

.slide-card.active .card-overlay, 
.slide-card:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.card-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.slider-controls button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-controls button:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 20px var(--gold);
}
@media (max-width: 768px) {
    .slide-card {
        min-width: 280px;
        height: 400px;
    }
    .slider-track {
        padding: 0 5%;
    }
}
.why-us-modern {
    padding: 120px 0;
    background: #ffffff; 
    position: relative;
    overflow: hidden;
}
.why-us-modern::before {
    content: 'SCRAP';
    position: absolute;
    top: 50%;
    left: -5%;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0, 229, 255, 0.03);
    transform: translateY(-50%) rotate(-90deg);
    z-index: 0;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mini-title {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.main-title-dark {
    font-size: 2.8rem;
    color: #1e293b;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.feature-card-light {
    display: flex;
    gap: 20px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-light:hover {
    transform: translateX(-15px);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.1);
    border-color: var(--gold);
}

.f-icon-box {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.f-info h4 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.f-info p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}
.why-visual-box {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-master-card {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-stat {
    position: absolute;
    background: white;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    z-index: 2;
    transition: 0.5s;
    animation: floatAnim 4s infinite ease-in-out;
}

.s-1 { top: 10%; right: 0; }
.s-2 { bottom: 10%; right: 10%; animation-delay: 2s; }

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.s-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1e293b;
}

.s-text {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
}

.floating-stat i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.experience-badge-large {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.4);
    z-index: 1;
}

.badge-inner {
    text-align: center;
}

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

.b-label {
    font-size: 0.9rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .why-wrapper { grid-template-columns: 1fr; }
    .why-visual-box { height: 400px; }
    .main-title-dark { font-size: 2.2rem; }
}
.main-title-dark .gradient-text {
    background: linear-gradient(to left, #007a8c, #00acc1); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.contact-ultra {
    padding: 100px 0;
    background-color: #f0f4f8; 
    position: relative;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.modern-card {
    background: white;
    padding: 40px 30px;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.modern-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 229, 255, 0.15);
    border-color: var(--gold);
}

.card-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    transition: 0.5s;
}

.call-bg { background: rgba(0, 229, 255, 0.1); color: var(--gold); }
.wa-bg { background: rgba(37, 211, 102, 0.1); color: #25d366; }

.modern-card:hover .card-icon-wrap {
    transform: rotateY(360deg);
}

.card-info span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-info h3 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 900;
    margin: 10px 0 25px;
    letter-spacing: 1px;
}

.action-link {
    text-decoration: none;
    color: white;
    background: #1e293b;
    padding: 12px 35px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 0.95rem;
    width: 100%;
    transition: 0.3s;
}

.wa-btn { background: #25d366 !important; }

.action-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.map-island {
    background: white;
    padding: 20px;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.07);
    border: 1px solid white;
    overflow: hidden;
}

.map-tag {
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    color: #1e293b;
}

.map-tag i {
    color: #ef4444; 
    font-size: 1.6rem;
}

.map-island iframe {
    border-radius: 30px;
}

.final-footer {
    padding: 40px;
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    font-weight: 500;
}

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

@media (max-width: 600px) {
    .contact-cards-grid { grid-template-columns: 1fr; }
    .modern-card { padding: 30px 20px; }
}
.site-footer.dark-footer {
    padding: 80px 0 30px;
    background: #0f172a; 
    color: #cbd5e1;
    border-top: 2px solid var(--gold);
}

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

.white-text {
    color: #ffffff !important;
}

.light-gray {
    color: #94a3b8;
}

.footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-desc {
    margin-top: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

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

.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(-8px); 
}

.contact-info-list .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-info-list i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
}

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

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.developer-credit {
    font-size: 0.8rem;
    color: #475569;
}

.developer-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.developer-credit a:hover {
    text-decoration: underline;
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    .footer-links a:hover {
        transform: translateY(-3px);
    }
    .contact-info-list .info-item {
        justify-content: center;
    }
}
.nav-menu a.active {
    color: var(--gold) !important; 
    font-weight: 900;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 10px;
    box-shadow: 0 0 12px var(--gold); 
    animation: slideInActive 0.3s ease-out;
}
.drawer-links a.active {
    color: var(--gold) !important;
    background: rgba(0, 229, 255, 0.05); 
    padding-right: 20px !important;
    border-right: 4px solid var(--gold);
}
@keyframes slideInActive {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn {
    background: #25d366;
    animation: pulseWhatsapp 2s infinite;
}
.call-btn-float {
    background: var(--gold); 
    animation: pulseCall 2s infinite;
    animation-delay: 1s;
}

.btn-text {
    position: absolute;
    right: 70px;
    background: #1e293b;
    color: white;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

.floating-btn:hover .btn-text {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.floating-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

@keyframes pulseWhatsapp {
    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 pulseCall {
    0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 229, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .btn-text { display: none; } 
}