* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #373737;
    --light-blue: #3d5a80;
    --gold: #e5a93c;
    --light-gold: #ffdd9d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #373737;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-blue);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary-blue);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: #252525;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.logo-img {
    width: 30px;
}

.logo span {
    color: var(--gold);
    font-size: 12px;
    margin: 0 8px;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    opacity: 1; 
    transform: translateY(0);
}

.hero-subtitle {
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
}

.section-title p {
    color: var(--light-blue);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: start;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-item p {
    margin: 0;
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--gold);
    font-size: 20px;
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 28px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}


/* Contact Section */
.contact-section {
    background-color: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 15px;
    color: var(--gold);
    font-size: 20px;
    width: 20px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-blue);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(#373737e2, #373737e2), url('assets/ready.webp') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-desc {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* projects Section */
.projects-section {
    padding: 100px 0;
    background-color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 0;
}

.projects-item {
    position: relative;
    overflow: hidden;
}

.projects-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projects-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #373737a0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.projects-icon {
    display: none;
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

/* Hover Effects */
.projects-item:hover img {
    transform: scale(1.05) rotate(4deg);
}

.projects-item:hover .projects-overlay {
    opacity: 1;
}

.projects-item:hover .projects-icon {
    transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: 200px;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }
}

/* Footer */
footer {
    background: #252525;
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-cta .btn {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }

    .step {
        text-align: left;
        display: flex;
        align-items: flex-start;
    }

    .step-number {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }

    section {
        padding: 70px 0;
    }

    /* Booking Section */
    .booking-container {
        padding: 25px;
    }

    /* Our Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .services-cta {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 15px;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary-blue);
    z-index: 1001;
    padding: 50px 30px;
    transition: right 0.4s ease;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
}

.mobile-nav-links a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

.whatsapp-float i {
    margin-top: 2px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: fixed;
    bottom: 110px;
    right: 40px;
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    width: 200px;
    text-align: center;
}

.whatsapp-tooltip:after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: var(--primary-blue) transparent transparent;
}

.whatsapp-float:hover + .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 30px;
        font-size: 25px;
    }
    
    .whatsapp-tooltip {
        bottom: 90px;
        right: 30px;
        width: 180px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 22px;
    }
    
    .whatsapp-tooltip {
        bottom: 75px;
        right: 20px;
        width: 160px;
        font-size: 12px;
    }
}

/* RTL Support */
body.rtl {
    direction: rtl;
    text-align: right;
    font-family: 'Tajawal', 'Montserrat', sans-serif;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-right: 15px;
}

.language-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 120px;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    padding: 10px 15px;
    cursor: pointer;
    color: var(--dark-gray);
    transition: background 0.3s ease;
}

.language-option:hover {
    background: var(--light-gray);
}

/* RTL specific adjustments */
body.rtl .nav-links {
    direction: rtl;
}

body.rtl .feature-item,
body.rtl .service-card,
body.rtl .step {
    text-align: right;
}

body.rtl .feature-icon {
    margin-right: 0;
    margin-left: 15px;
}

body.rtl .process-steps::before {
    right: 0;
    left: auto;
}

body.rtl .footer-col h3:after {
    left: auto;
    right: 0;
}

body.rtl .contact-details i {
    margin-right: 0;
    margin-left: 15px;
}

body.rtl .form-group input,
body.rtl .form-group select,
body.rtl .contact-form input,
body.rtl .contact-form textarea {
    text-align: right;
}

body.rtl .hero-cta,
body.rtl .video-cta {
    direction: ltr; /* Keep buttons LTR even in RTL */
}

body.rtl .language-btn {
    direction: ltr; /* Keep language button LTR */
}

body.rtl .whatsapp-tooltip:after {
    right: auto;
    left: 20px;
}

/* Responsive adjustments for RTL */
@media (max-width: 992px) {
    body.rtl .step {
        text-align: right;
        flex-direction: row-reverse;
    }
    
    body.rtl .step-number {
        margin: 0 0 0 20px;
    }
}

@media (max-width: 576px) {
    body.rtl .step {
        flex-direction: column;
        text-align: center;
    }
    
    body.rtl .step-number {
        margin: 0 auto 15px;
    }
}


/* Top Header */
.top-header {
    background: #252525;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 20px;
}

.top-contact a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact a:hover {
    color: var(--gold);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: #fff;
    transition: 0.3s;
}

.top-social a:hover {
    color: var(--gold);
}

/* Move main header down */
header {
    top: 36px;
}

/* Hero spacing */
.hero {
    padding-top: 120px;
}

.top-header {
    background: #2b2b2b;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: all 0.4s ease;
}

.top-header.hide {
    transform: translateY(-100%);
    opacity: 0;
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }

    header {
        top: 0;
    }

    .hero {
        padding-top: 80px;
    }
}