/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Colors - Monochrome with Subtle Warmth */
    --primary-color: #2C2C2C;        /* Charcoal black - Main brand color */
    --primary-dark: #1A1A1A;         /* Deep black - Hover states */
    --primary-light: #F5F5F5;        /* Light gray - Backgrounds */
    
    /* Secondary Colors - Gray Scale */
    --secondary-color: #6B6B6B;      /* Medium gray - Accents */
    --secondary-light: #A8A8A8;      /* Light gray - Borders */
    --secondary-dark: #404040;       /* Dark gray - Footer */
    
    /* Accent Colors - Burgundy Theme */
    --burgundy: #800020;             /* Primary burgundy accent */
    --burgundy-light: #a03050;       /* Lighter burgundy for hover */
    --burgundy-dark: #600018;        /* Darker burgundy for active */
    --accent-gold: #8B8680;          /* Subtle warm gray accent */
    --accent-warm: #B5ACA3;          /* Very subtle beige-gray */
    
    /* Text Colors */
    --text-dark: #1A1A1A;            /* Near black - Headings */
    --text-medium: #4A4A4A;          /* Dark gray - Body text */
    --text-light: #757575;           /* Medium gray - Secondary text */
    
    /* Background Colors */
    --bg-light: #FAFAFA;             /* Off-white */
    --bg-cream: #F0F0F0;             /* Light gray */
    --white: #ffffff;
    
    /* Shadows & Effects */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-warm: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Legacy Logo Colors (for backward compatibility) */
    --logo-beige: #E8DFD8;
    --logo-gray: #B5ACA3;
    --logo-dark-gray: #8B8680;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-lg);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Fallback text logo styles (if image not available) */
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--burgundy);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1519167758481-83f29da8c6b6?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== QUICK INTRO ===== */
.quick-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.intro-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.intro-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.intro-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.intro-item p {
    color: var(--text-light);
}

/* ===== SECTION STYLING ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--bg-light);
}

.about-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-card i {
    margin-right: 10px;
}

.founders-section {
    margin-bottom: 60px;
}

.founders-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.founder-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.founder-image {
    width: 100%;
    height: 300px;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    padding: 30px;
}

.founder-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.founder-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-bio {
    color: var(--text-light);
    margin-bottom: 20px;
}

.founder-social {
    display: flex;
    gap: 15px;
}

.founder-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.founder-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.regions-coverage {
    margin-bottom: 60px;
}

.regions-coverage h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.regions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.region-item {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.region-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.region-item i {
    color: var(--primary-color);
}

.region-item:hover i {
    color: var(--white);
}

.what-makes-unique h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.unique-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.unique-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.unique-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.unique-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.unique-item p {
    color: var(--text-light);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid var(--bg-cream);
    box-shadow: var(--shadow);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.service-features i {
    color: var(--primary-color);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    background: var(--bg-light);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: var(--bg-light);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: var(--primary-color);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--white);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 2px;
    height: calc(100% + 20px);
    background: var(--primary-color);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.step-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.step-checklist i {
    color: var(--primary-color);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--bg-cream);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-dark);
}

.testimonial-stars {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--bg-light);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--burgundy);
}

.contact-form button {
    grid-column: 1 / -1;
    border: none;
    cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--burgundy);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--burgundy-light);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .logo-image {
        height: 55px;
        max-width: 180px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ===== IMAGE SLIDER SECTION ===== */
.slider-section {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 42.5%; /* 16:9 aspect ratio (9/16 * 100 = 56.25%, adjusted to 42.5% for wider look) */
    overflow: hidden;
    background: var(--logo-beige);
    min-height: 400px;
    max-height: 700px;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ensure images scale properly on different screens */
@media (min-width: 1920px) {
    .slider-slide {
        background-size: contain;
        background-color: var(--logo-beige);
    }
}

.slider-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.slider-content {
    position: absolute;
    z-index: 2;
    bottom: 80px;
    left: 120px;
    max-width: 600px;
    text-align: left;
    color: var(--white);
}

.slider-label {
    display: inline-block;
    background: var(--burgundy);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
}

.slider-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slider-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--white);
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.slider-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 550px;
    color: var(--white);
    opacity: 0.85;
    white-space: pre-line;
}

.slider-button {
    display: inline-block;
    padding: 16px 36px;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-button:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 25px;
}

.slider-arrow-right {
    right: 25px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--burgundy);
    transform: scale(1.3);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Responsive Slider */
@media (max-width: 1200px) {
    .slider-section {
        padding-bottom: 55%;
        min-height: 500px;
        max-height: 650px;
    }
    
    .slider-content {
        bottom: 60px;
        left: 100px;
        max-width: 550px;
    }
    
    .slider-title {
        font-size: 3.2rem;
    }
    
    .slider-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .slider-section {
        padding-bottom: 60%;
        min-height: 450px;
        max-height: 550px;
    }
    
    .slider-content {
        bottom: 50px;
        left: 90px;
        max-width: 500px;
    }
    
    .slider-title {
        font-size: 2.8rem;
    }
    
    .slider-subtitle {
        font-size: 1.2rem;
    }
    
    .slider-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .slider-section {
        padding-bottom: 80%;
        min-height: 400px;
        max-height: 550px;
    }
    
    .slider-content {
        bottom: 40px;
        left: 80px;
        right: 80px;
        max-width: none;
    }
    
    .slider-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .slider-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .slider-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .slider-label {
        font-size: 0.7rem;
        padding: 8px 16px;
        margin-bottom: 12px;
    }
    
    .slider-button {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .slider-arrow-left {
        left: 15px;
    }
    
    .slider-arrow-right {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 25px;
        right: 25px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 576px) {
    .slider-section {
        padding-bottom: 110%;
        min-height: 350px;
        max-height: 500px;
    }
    
    .slider-content {
        bottom: 30px;
        left: 70px;
        right: 70px;
    }
    
    .slider-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .slider-subtitle {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .slider-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.5;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .slider-label {
        font-size: 0.65rem;
        padding: 6px 14px;
        margin-bottom: 10px;
    }
    
    .slider-button {
        padding: 10px 24px;
        font-size: 0.8rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slider-arrow-left {
        left: 10px;
    }
    
    .slider-arrow-right {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
        right: 20px;
        gap: 6px;
    }
    
    .slider-dot {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 400px) {
    .slider-section {
        padding-bottom: 130%;
        min-height: 320px;
        max-height: 450px;
    }
    
    .slider-content {
        bottom: 25px;
        left: 20px;
        right: 20px;
    }
    
    .slider-title {
        font-size: 1.5rem;
    }
    
    .slider-subtitle {
        font-size: 0.85rem;
    }
    
    .slider-description {
        display: none;
    }
    
    .slider-button {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .slider-arrow {
        display: none;
    }
}

/* Landscape orientation optimization for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .slider-section {
        padding-bottom: 50%;
        min-height: 280px;
        max-height: 380px;
    }
    
    .slider-content {
        bottom: 30px;
        left: 30px;
        max-width: 60%;
    }
    
    .slider-title {
        font-size: 1.8rem;
    }
    
    .slider-description {
        display: none;
    }
    
    .slider-subtitle {
        font-size: 1.1rem;
    }
    
    .slider-dots {
        bottom: 15px;
        right: 30px;
    }
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 20px;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid var(--burgundy);
    background: transparent;
    color: var(--burgundy);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--burgundy);
    color: white;
}

@media (max-width: 768px) {
    .language-switcher {
        margin: 20px 0 0 0;
        justify-content: center;
    }
}

/* ===== RTL SUPPORT ===== */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .navbar .container {
    direction: rtl;
}

html[dir="rtl"] .nav-wrapper {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links {
    direction: rtl;
}

html[dir="rtl"] .nav-links li {
    direction: rtl;
}

html[dir="rtl"] .logo {
    order: 3;
}

html[dir="rtl"] .nav-menu {
    order: 2;
}

html[dir="rtl"] .hamburger {
    order: 1;
}

html[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 20px;
    order: -1;
}

html[dir="rtl"] .nav-links {
    margin-right: 0;
    margin-left: 0;
}

html[dir="rtl"] .hero-about-content {
    direction: rtl;
}

html[dir="rtl"] .content-left,
html[dir="rtl"] .content-right {
    text-align: right;
}

html[dir="rtl"] .section-label-modern::before {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .feature-item {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .feature-icon {
    margin-right: 0;
    margin-left: 15px;
}

html[dir="rtl"] .service-card,
html[dir="rtl"] .value-card {
    text-align: right;
}

html[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .contact-icon {
    margin-right: 0;
    margin-left: 15px;
}

html[dir="rtl"] .footer-section {
    text-align: right;
}

html[dir="rtl"] .slider-wrapper {
    direction: ltr; /* Keep slider direction LTR to prevent transform issues */
}

html[dir="rtl"] .slider-content {
    text-align: right;
    left: auto;
    right: 60px;
    direction: rtl; /* Restore RTL for content */
}

html[dir="rtl"] .slider-dots {
    left: 60px;
    right: auto;
}

html[dir="rtl"] .stats-grid {
    direction: rtl;
}

html[dir="rtl"] .btn-group {
    flex-direction: row-reverse;
}

html[dir="rtl"] .portfolio-overlay {
    text-align: right;
}

html[dir="rtl"] .portfolio-location i {
    margin-right: 0;
    margin-left: 5px;
}

/* Arabic Font Support */
html[dir="rtl"] body,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] p,
html[dir="rtl"] a,
html[dir="rtl"] span,
html[dir="rtl"] button {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Arial, sans-serif;
}
