:root {
    --main-color: #eab308; 
    --dark-bg: #121212;
    --light-bg: #1e1e1e;
    --text-color: #f8f9fa;
    --gray-color: #a0aec0;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95); 
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 2px solid var(--main-color); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}
.navbar .container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar.scrolled {
    padding: 10px 0;
    background: #000000e4; 
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--main-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links li a i {
    color: var(--main-color);
}

.nav-links li a:hover, .nav-links li a.active {
    background: rgba(234, 179, 8, 0.1);
    color: var(--main-color);
}

.menu-btn {
    display: none;
    font-size: 28px;
    color: var(--main-color);
    cursor: pointer;
}
.side-menu {
    position: fixed;
    top: -110%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.7s ease-in-out;
}

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

.side-menu ul {
    list-style: none;
    text-align: center;
}

.side-menu ul li {
    margin: 25px 0;
}

.side-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 20px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: var(--main-color);
    cursor: pointer;
}
.logo i {
    font-size: 30px;
    filter: drop-shadow(0 0 5px var(--main-color));
}

.logo span {
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pexels-tr-ng-nguy-n-thanh-2150411289-34884352.jpg') no-repeat center center/cover;
    z-index: -1;
    animation: zoomBackground 10s infinite alternate ease-in-out;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 0;
}
@keyframes zoomBackground {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 1000px;
    z-index: 10;
}

.hero-content h4 {
    color: var(--main-color);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: clamp(32px, 6vw, 65px); 
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 45px;
}

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

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--main-color);
    color: #000;
}

.btn-secondary {
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(234, 179, 8, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: black;
}
@media (max-width: 992px) {
    .nav-links { display: none; }
    .menu-btn { display: block; }
    .hero-content { text-align: center; }
}
.animate-text {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
}
.animate-text:nth-child(2) { animation-delay: 0.3s; }
.animate-text:nth-child(3) { animation-delay: 0.6s; }
.animate-text:nth-child(4) { animation-delay: 0.9s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #222222 0%, #2d2d2d 100%);
    color: #fff;
    overflow: hidden;
}

.about .container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; 
    gap: 70px;
    align-items: center;
}
.about-media {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.image-wrapper img {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.section-tag {
    color: var(--main-color);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-title span {
    color: var(--main-color);
    font-weight: 400;
}

.intro-p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}
.features-mosaic {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.f-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.f-card:hover {
    background: rgba(234, 179, 8, 0.1);
    transform: translateX(-10px);
    border-color: var(--main-color);
}

.f-card i {
    font-size: 30px;
    color: var(--main-color);
    background: rgba(234, 179, 8, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.f-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.f-info p {
    font-size: 14px;
    color: #aaa;
}

.vision-box {
    border-right: 3px solid var(--main-color);
    padding-right: 20px;
    font-style: italic;
    color: #bbb;
}
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .f-card {
        flex-direction: column;
        text-align: center;
    }
    .vision-box {
        border-right: none;
        border-top: 3px solid var(--main-color);
        padding: 20px 0 0 0;
    }

}
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #2d2d2d41 0%, #252525 100%);
    perspective: 1000px;
}

.services .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

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

.services-header .top-title {
    color: var(--main-color);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.services-header .main-title {
    font-size: clamp(30px, 5vw, 45px);
    color: #fff;
    margin-top: 15px;
}

.services-header .main-title .gold {
    color: var(--main-color);
}

.services-header .sub-desc {
    color: #aaa;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 18px;
}

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

.service-box {
    height: 400px;
    cursor: pointer;
    perspective: 1000px;
}

.box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.service-box:hover .box-inner {
    transform: rotateY(180deg);
}

.box-front, .box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.box-front {
    z-index: 2;
}

.box-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    text-align: center;
}

.box-content i {
    font-size: 45px;
    color: var(--main-color);
    margin-bottom: 15px;
}

.box-content h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}
.box-back {
    background: #1a1a1a;
    transform: rotateY(180deg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--main-color);
}

.box-back h3 {
    color: var(--main-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.box-back p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.box-list {
    list-style: none;
}

.box-list li {
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-list li i {
    color: var(--main-color);
    font-size: 12px;
}
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s all ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1024px) {
    .services-wrapper { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-wrapper { grid-template-columns: 1fr; }
    .service-box { height: 350px; }
}
.gallery {
    padding: 100px 0;
    background: #2e2e2e; 
}

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

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

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

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    color: #fff;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.4s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--main-color);
    color: #000;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-item.image:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}
.gallery-item.video {
    background: #000;
}

.video-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(234, 179, 8, 0.9);
    color: #000;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gallery-item.hide {
    display: none;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.why-us {
    padding: 120px 0;
    background: #252525;
    background-image: radial-gradient(rgba(234, 178, 8, 0.195) 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
}

.why-us .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

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

.why-header .tag {
    color: var(--main-color);
    font-weight: 700;
    letter-spacing: 2px;
}

.why-header .main-title {
    font-size: clamp(28px, 4vw, 45px);
    color: #fff;
    margin: 15px 0;
}

.why-header .desc {
    color: #999;
    max-width: 700px;
    margin: auto;
    font-size: 18px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    text-align: center;
}

.why-card:hover {
    background: #1e1e1e;
    border-color: var(--main-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(234, 179, 8, 0.1);
    color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.why-card:hover .why-icon {
    background: var(--main-color);
    color: #000;
}

.why-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card p {
    color: #aaa;
    line-height: 1.7;
    font-size: 15px;
}
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-us { padding: 80px 0; }
}
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.info-card:hover {
    border-color: var(--main-color);
    background: rgba(234, 179, 8, 0.05);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--main-color);
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-text h4 {
    color: #fff;
    margin-bottom: 5px;
}

.info-text a, .info-text p {
    color: #ccc;
    text-decoration: none;
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}

.whatsapp-card .info-icon {
    background: #25d366;
    color: #fff;
}
.modern-form {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    border-color: var(--main-color);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--main-color);
    border: none;
    border-radius: 10px;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-5px);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
}
.wa-link {
    color: #25d366 !important;
    font-weight: 700;
    margin-top: 5px;
}

.wa-link:hover {
    color: #fff !important;
}
.footer {
    background-color: #111111;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

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

.footer-col h3 {
    color: var(--main-color);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--main-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-desc {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a i {
    font-size: 10px;
    color: var(--main-color);
}

.footer-col ul li a:hover {
    color: var(--main-color);
    padding-right: 8px;
}
.footer-contact-link {
    color: #ccc; 
    text-decoration: none; 
    transition: 0.3s ease;
    font-size: 16px;
}

.footer-contact-link:hover {
    color: var(--main-color); 
    padding-right: 5px; 
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #888;
    font-size: 14px;
}

.dev-credit {
    color: #888;
    font-size: 14px;
}

.dev-credit a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.dev-credit a:hover {
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.5);
    color: #fff;
}
@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 {
        right: 50%;
        transform: translateX(50%);
    }
    .footer-logo, .social-icons, .contact-item {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.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;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
}
.whatsapp-btn {
    background-color: #25d366;
}
.phone-btn {
    background-color: var(--main-color);
    color: #000; 
}
.btn-text {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: #fff;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

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

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}
@keyframes pulse-phone {
    0% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(234, 179, 8, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
}
.phone-btn {
    animation: pulse-phone 2s infinite;
}
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .btn-text {
        display: none; 
    }
}