:root {
    --gold: linear-gradient(135deg, #D4AF37 0%, #F1D36E 50%, #B8860B 100%);
    --gold-solid: #D4AF37;
    --dark: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
    --transition-slow: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html[lang="ar"] { direction: rtl; font-family: 'Cairo', sans-serif; }
html[lang="en"] { direction: ltr; font-family: 'Poppins', sans-serif; }

body {
    background: var(--dark);
    color: white;
    overflow-x: hidden;
}
.brand-wrapper {
    display: flex;
    align-items: center; 
    gap: 15px;
}

.logo {
    height: 70px; 
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: var(--transition-fast);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.navbar-container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    transition: var(--transition-slow);
}

.floating-nav {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 1s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.nav-links li a.active, .nav-links li a:hover {
    background: var(--gold);
    color: black;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg-animate {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('images/bg.jpg') center/cover;
    z-index: -2;
    animation: zoomShake 8s infinite alternate linear;
}

@keyframes zoomShake {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.15) rotate(1deg); }
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
    z-index: -1;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gold-gradient-text {
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ccc;
}
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-main {
    background: var(--gold);
    color: black;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.2);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.mobile-side-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-side-menu.open {
    top: 0;
}

.side-nav-links a {
    color: white;
    font-size: 2.5rem;
    text-decoration: none;
    margin: 15px 0;
    display: block;
    font-weight: 900;
}

.side-nav-links a:hover { color: var(--gold-solid); }

.fade-up { animation: fadeInUp 1s forwards; opacity: 0; }
.reveal-text { animation: reveal 1.2s cubic-bezier(0.77, 0, 0.175, 1); }

@keyframes fadeInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-100px); }
    to { transform: translateY(0); }
}
@media (max-width: 992px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.8rem; }
    .logo { height: 55px; }
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
    perspective: 1000px; 
}

.btn-main {
    position: relative;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #000 !important; 
    background: var(--gold); 
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-main:hover {
    transform: translateY(-7px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.6);
}
.btn-outline {
    position: relative;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05); 
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.btn-outline:hover {
    background: #fff;
    color: #000 !important;
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}
.btn-main::before, .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.6s;
}

.btn-main:hover::before, .btn-outline:hover::before {
    left: 150%;
}
.pulse-effect {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
.btn-main i {
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-main:hover i {
    transform: rotate(20deg) scale(1.2);
}
.lang-toggle {
    position: relative;
    background: rgba(255, 255, 255, 0.08); 
    border: 1.5px solid var(--gold-solid);
    color: var(--gold-solid);
    padding: 8px 15px;
    border-radius: 12px; 
    cursor: pointer;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    z-index: 10;
    backdrop-filter: blur(5px);
}
.lang-toggle:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: scale(1.1) rotate(5deg);
}
.lang-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--gold-solid);
    opacity: 0;
    animation: langPulse 2.5s infinite;
}

@keyframes langPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}
.lang-toggle.rotate-anim {
    animation: flipRotate 0.6s ease-in-out;
}

@keyframes flipRotate {
    0% { transform: rotateY(0); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #050505 100%);
    position: relative;
    overflow: hidden;
}

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

.main-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: visible;
}

.main-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.7);
    transition: transform 0.5s ease;
}

.main-image-wrapper:hover img {
    transform: scale(1.02);
}

.deco-rect {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold-solid);
    border-radius: 10px;
    z-index: -1;
    animation: decoMove 5s infinite alternate ease-in-out;
}

@keyframes decoMove {
    from { transform: translate(0, 0); }
    to { transform: translate(-20px, 20px); }
}
.section-tag {
    color: var(--gold-solid);
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-heading {
    font-size: 3.2rem;
    margin-bottom: 40px;
    color: white;
}

.content-block {
    margin-bottom: 35px;
}

.content-block h3 {
    color: var(--gold-solid);
    font-size: 1.4rem;
    margin-bottom: 12px;
    position: relative;
    padding-right: 15px;
}

.content-block h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: translateY(-50%);
}

.main-p {
    color: #bbb;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
}
.quality-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.q-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 600;
}

.q-item i {
    color: var(--gold-solid);
    font-size: 1.2rem;
}
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .main-image-wrapper img { height: 400px; }
    .content-block h3 { padding-right: 0; }
    .content-block h3::before { display: none; }
    .q-item { justify-content: center; }
    .section-heading { font-size: 2.2rem; }
}
.reveal-right { opacity: 0; transform: translateX(100px); transition: 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67); }
.reveal-left { opacity: 0; transform: translateX(-100px); transition: 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67); }

.active-reveal {
    opacity: 1;
    transform: translateX(0);
}
.services-section {
    padding: 100px 5%;
    background-color: #fcfcfc; 
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h4 {
    color: var(--gold-solid);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 3rem;
    color: #222;
    margin-bottom: 20px;
}

.section-header p {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.service-info {
    padding: 30px;
    text-align: right;
}

html[lang="en"] .service-info { text-align: left; }

.service-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.service-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    height: 50px; 
}
.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-solid);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-details i {
    font-size: 0.8rem;
    transition: 0.3s;
}
html[lang="ar"] .btn-details:hover i { transform: translateX(-5px); }
html[lang="en"] .btn-details:hover i { transform: translateX(5px); }
html[lang="en"] .btn-details i { transform: rotate(180deg); }

.btn-details:hover {
    color: #222;
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2.2rem; }
}
.portfolio-section {
    padding: 100px 5%;
    background-color: #e3e0e0;
    text-align: center;
}

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

.filter-btn {
    padding: 12px 30px;
    border: 2px solid #eee;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s ease;
    color: #555;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: black;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    position: relative;
    transition: transform 0.5s ease;
}
.portfolio-item.hide {
    display: none;
}

.portfolio-item.show {
    animation: fadeInScale 0.6s ease forwards;
}

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

.item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.overlay i {
    color: black;
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: 0.5s;
}

.portfolio-item:hover .overlay { opacity: 1; }
.portfolio-item:hover .overlay i { transform: translateY(0); }
.portfolio-item:hover img { transform: scale(1.15); }
.video-wrapper {
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-label {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gold);
    color: black;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-item { height: 200px; }
}
.why-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, #0f172a 0%, #000000 100%); 
    position: relative;
    overflow: hidden;
    color: white;
}

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

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.1);
    filter: blur(100px);
    border-radius: 50%;
    animation: blobMove 10s infinite alternate;
}

.blob:nth-child(2) {
    right: 0;
    bottom: 0;
    background: rgba(30, 64, 175, 0.1);
    animation-delay: -5s;
}

@keyframes blobMove {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-section .section-header h2 {
    color: white;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transition: 0.5s;
}

.why-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
}

.why-card:hover::before {
    left: 0;
}
.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.icon-box i {
    font-size: 2rem;
    color: var(--gold);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); text-shadow: 0 0 20px var(--gold); }
    100% { transform: scale(1); }
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.why-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-card { padding: 30px 20px; }
}
.contact-section {
    position: relative;
    padding: 120px 5%;
    overflow: hidden;
    background: #000; 
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.contact-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pexels-photo-5997994.jpeg') center/cover fixed;
    filter: blur(15px) brightness(0.4); 
    z-index: 1;
    transform: scale(1.1); 
}

.contact-section .container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
}
.contact-container {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: stretch; 
    gap: 40px; 
    margin-top: 50px;
}
.contact-card {
    flex: 1; 
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 40px;
    color: white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-solid);
}

.contact-card h3 {
    font-size: 1.8rem;
    color: var(--gold-solid);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    border-color: var(--gold-solid);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form select option {
    background: #1a1a1a; 
    color: white;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}
.info-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--gold-solid);
    color: black;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.info-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--gold-solid);
    font-weight: 700;
    margin-bottom: 5px;
}

.info-item a, .info-item p {
    color: #eee;
    text-decoration: none;
    font-size: 1.1rem;
    margin: 0;
    transition: 0.3s;
}

.info-item a:hover {
    color: var(--gold-solid);
}
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column; 
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 500px;
        padding: 30px;
    }

    .contact-section {
        padding-top: 80px;
    }
}
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10000;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.4s;
    animation: floatAnim 3s infinite ease-in-out;
}

.float-btn.wa { background: #25d366; }
.float-btn.call { background: var(--gold-solid); color: black; }

.float-btn:hover {
    transform: scale(1.15) rotate(10deg);
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.main-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 80px 5% 30px;
    border-top: 3px solid var(--gold-solid);
    position: relative;
    z-index: 10;
}

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

.footer-col h3 {
    color: var(--gold-solid);
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-solid);
}

html[lang="en"] .footer-col h3::after { right: auto; left: 0; }

.footer-desc {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
    color: #bbb;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links li a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover, .footer-links li:hover {
    color: var(--gold-solid);
    transform: translateX(-5px);
}

html[lang="en"] .footer-links li a:hover { transform: translateX(5px); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--gold-solid);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-links a:hover {
    background: var(--gold-solid);
    color: black;
    transform: translateY(-5px);
}
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyrights p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.developer-credit {
    display: block; 
    font-size: 0.85rem;
    color: #666;
}

.gmt-link {
    color: var(--gold-solid);
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.gmt-link:hover {
    text-decoration: underline;
    letter-spacing: 1px;
}

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

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); right: auto; }
    .footer-contact li { justify-content: center; }
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
.mobile-dropdown-menu {
    position: fixed;
    top: -110%; 
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1); 
}

.mobile-dropdown-menu.open {
    top: 0; 
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 25px;
}

.dropdown-content a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s;
}
.mobile-dropdown-menu.open .dropdown-content a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-dropdown-menu.open .dropdown-content a:nth-child(1) { transition-delay: 0.2s; }
.mobile-dropdown-menu.open .dropdown-content a:nth-child(2) { transition-delay: 0.3s; }
.mobile-dropdown-menu.open .dropdown-content a:nth-child(3) { transition-delay: 0.4s; }
.mobile-dropdown-menu.open .dropdown-content a:nth-child(4) { transition-delay: 0.5s; }
.mobile-dropdown-menu.open .dropdown-content a:nth-child(5) { transition-delay: 0.6s; }
.mobile-dropdown-menu.open .dropdown-content a:nth-child(6) { transition-delay: 0.7s; }

.dropdown-content a:hover {
    color: var(--gold-solid);
    letter-spacing: 2px;
}

.close-dropdown-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--gold-solid);
    cursor: pointer;
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem !important; 
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.9rem !important;
        line-height: 1.6;
        padding: 0 10px;
    }

    .floating-nav {
        padding: 10px 20px;
        width: 92%;
    }

    .brand-name { font-size: 1.2rem; }
    .menu-toggle {
        display: block !important;
        font-size: 1.6rem;
        color: var(--gold-solid);
        cursor: pointer;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-main, .btn-outline {
        width: 100% !important;
        max-width: 300px;
        padding: 14px;
        font-size: 1rem;
    }
}
@media (min-width: 992px) {
    .mobile-dropdown-menu, 
    .mobile-side-menu, 
    .menu-toggle {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .menu-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 10001;
    }
    .mobile-dropdown-menu {
        display: flex; 
        position: fixed;
        top: -110%; 
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        z-index: 10000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    }

    .mobile-dropdown-menu.open {
        top: 0; 
    }
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
@media (max-width: 768px) {
        .navbar-container {
        left: 0;
        right: 0;
        display: flex;
        justify-content: center; 
        padding: 0 15px;
    }
    .floating-nav {
        width: 100%;
        max-width: 450px; 
        display: flex;
        justify-content: space-between; 
        align-items: center;
        padding: 10px 20px;
        margin: 0 auto; 
    }
    .logo-section {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .hero-section {
        text-align: center; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }
    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; 
    }
    .hero-content h1 {
        width: 100%;
        text-align: center;
        font-size: 2rem !important;
    }

    .hero-content p {
        width: 100%;
        text-align: center;
        margin: 0 auto 30px;
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center; 
        gap: 15px;
        width: 100%;
    }

    .btn-main, .btn-outline {
        width: 90% !important; 
        max-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto; 
    }
    .section-header {
        text-align: center !important;
        margin-bottom: 40px;
    }

    .section-header h2, .section-header h4, .section-header p {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .service-card {
        margin: 0 auto;
        max-width: 350px;
    }
    .contact-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }
    .contact-card {
        width: 100%;
        max-width: 100%; 
        text-align: center;
    }
    .info-item {
        justify-content: center; 
        text-align: center;
    }
    .footer-grid {
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%); 
    }
    
    .social-links {
        justify-content: center; 
    }
}
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}