/* Root Variables */
:root {
    /* Light Mode - Desert Colors */
    --sand-light: #F5E6D3;
    --sand-medium: #E8D5B7;
    --sand-dark: #D4C4A8;
    --desert-tan: #C9A961;
    --desert-brown: #A67C52;
    --desert-dark: #8B6F47;
    --pyramid-gold: #D4AF37;
    --text-primary: #3E2723;
    --text-secondary: #5D4037;
    --bg-primary: #FFF8F0;
    --bg-secondary: #F5E6D3;
    --card-bg: #FFFFFF;
    --border-color: #E8D5B7;
    --shadow: rgba(166, 124, 82, 0.2);
}

[data-theme="dark"] {
    /* Dark Mode - Desert Night Colors */
    --sand-light: #2C2416;
    --sand-medium: #3D2F1F;
    --sand-dark: #4A3A28;
    --desert-tan: #5D4A35;
    --desert-brown: #6B5A47;
    --desert-dark: #4A3A28;
    --pyramid-gold: #B8941F;
    --text-primary: #F5E6D3;
    --text-secondary: #E8D5B7;
    --bg-primary: #1A1610;
    --bg-secondary: #2C2416;
    --card-bg: #3D2F1F;
    --border-color: #4A3A28;
    --shadow: rgba(0, 0, 0, 0.5);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}

html[dir="ltr"] {
    direction: ltr;
}

html[dir="rtl"] {
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header & Navigation */
.header {
    background: var(--card-bg);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--desert-brown);
}

.pyramid-icon {
    font-size: 2rem;
    color: var(--pyramid-gold);
    filter: drop-shadow(2px 2px 4px var(--shadow));
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--desert-brown);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: all 0.3s ease;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--desert-brown);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--pyramid-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-toggle,
.theme-toggle {
    background: var(--sand-medium);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-toggle:hover,
.theme-toggle:hover {
    background: var(--desert-tan);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow);
}

.theme-icon {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomIn 20s ease-in-out infinite;
}

@keyframes zoomIn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.85) 0%, rgba(232, 213, 183, 0.75) 50%, rgba(201, 169, 97, 0.7) 100%);
    z-index: 1;
}

[data-theme="dark"] .hero-slide-overlay {
    background: linear-gradient(135deg, rgba(44, 36, 22, 0.85) 0%, rgba(61, 47, 31, 0.75) 50%, rgba(93, 74, 53, 0.7) 100%);
}

.pyramid-decoration {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 50px;
    opacity: 0.3;
    z-index: 5;
    pointer-events: none;
}

.pyramid {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid var(--desert-dark);
    position: relative;
    filter: drop-shadow(0 5px 10px var(--shadow));
}

.pyramid-1 {
    border-bottom-width: 120px;
    border-left-width: 60px;
    border-right-width: 60px;
    animation: float 3s ease-in-out infinite;
}

.pyramid-2 {
    border-bottom-width: 100px;
    border-left-width: 50px;
    border-right-width: 50px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.pyramid-3 {
    border-bottom-width: 80px;
    border-left-width: 40px;
    border-right-width: 40px;
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px var(--shadow);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    background: var(--desert-brown);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: var(--desert-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider Controls */
.hero-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 20;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 169, 97, 0.5);
    color: var(--desert-brown);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(166, 124, 82, 0.3);
}

.slider-btn:hover {
    background: rgba(201, 169, 97, 0.3);
    border-color: var(--desert-brown);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(166, 124, 82, 0.4);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--desert-brown);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(166, 124, 82, 0.3);
}

.slider-dot:hover {
    background: rgba(201, 169, 97, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--desert-brown);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(166, 124, 82, 0.5);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .products {
        padding: 3rem 0;
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--desert-brown);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--pyramid-gold);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.product-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-placeholder {
    font-size: 5rem;
    opacity: 0.6;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--pyramid-gold);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px var(--shadow);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--desert-brown);
}

.product-desc {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--desert-dark);
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    background: var(--desert-tan);
    color: var(--text-primary);
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.add-to-cart:hover {
    background: var(--desert-brown);
    color: white;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-primary);
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--desert-brown);
    box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--desert-brown);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--desert-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-primary);
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: var(--pyramid-gold);
    opacity: 0.3;
    font-family: serif;
}

html[dir="ltr"] .testimonial-card::before {
    right: auto;
    left: 20px;
}

.testimonial-rating {
    margin-bottom: 1rem;
    display: flex;
    gap: 3px;
}

.star {
    font-size: 1.2rem;
    color: var(--pyramid-gold);
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sand-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--desert-brown);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-location {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: var(--desert-dark);
    color: var(--sand-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    color: var(--pyramid-gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-title::before {
    content: '▲';
    font-size: 1.2rem;
}

.footer-description {
    color: var(--sand-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--desert-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: var(--sand-light);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--pyramid-gold);
    transform: translateY(-3px);
    border-color: var(--sand-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-heading {
    font-size: 1.2rem;
    color: var(--pyramid-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li {
    color: var(--sand-medium);
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-links li:hover {
    color: var(--pyramid-gold);
}

.footer-links a {
    color: var(--sand-medium);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--pyramid-gold);
    padding-right: 5px;
}

html[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--sand-medium);
    line-height: 1.6;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--desert-brown);
    color: var(--sand-medium);
    font-size: 0.9rem;
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand-medium) 50%, var(--desert-tan) 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--shadow);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* About Page Styles */
.about-page {
    padding: 5rem 0;
    background: var(--bg-primary);
}

@media (max-width: 768px) {
    .about-page {
        padding: 3rem 0;
    }
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text-section {
    line-height: 1.8;
}

.about-text-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px var(--shadow);
    overflow: hidden;
    position: relative;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.mission-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-choose-us {
    margin-top: 4rem;
}

.section-heading {
    font-size: 2.5rem;
    color: var(--desert-brown);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--pyramid-gold);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Page Styles */
.services-page {
    padding: 5rem 0;
    background: var(--bg-primary);
}

@media (max-width: 768px) {
    .services-page {
        padding: 3rem 0;
    }
}

.services-main {
    margin-bottom: 4rem;
}

.service-card-large {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--border-color);
    text-align: center;
}

.service-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.service-card-large h2 {
    color: var(--desert-brown);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card-large p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    text-align: right;
    max-width: 600px;
    margin: 0 auto;
}

html[dir="ltr"] .service-features {
    text-align: left;
}

.service-features li {
    color: var(--text-secondary);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-right: 2rem;
}

html[dir="ltr"] .service-features li {
    padding-right: 0;
    padding-left: 2rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--pyramid-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

html[dir="ltr"] .service-features li::before {
    right: auto;
    left: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    color: var(--desert-dark);
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1rem;
}

.additional-services {
    margin-top: 4rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.additional-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 10px var(--shadow);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease;
}

.additional-item:hover {
    transform: translateY(-3px);
}

.additional-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.additional-item span:last-child {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Page Styles */
.contact-page {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .contact-page {
        padding: 3rem 0;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-section {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--border-color);
}

.contact-form-full {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--desert-brown);
    box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.1);
}

.submit-button-full {
    background: var(--desert-brown);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button-full:hover {
    background: var(--desert-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--border-color);
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand-medium);
    border-radius: 50%;
}

.contact-info-content h4 {
    color: var(--desert-brown);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-info-content p {
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    line-height: 1.6;
}

.social-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--border-color);
}

.social-section h3 {
    color: var(--desert-brown);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--sand-medium);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link-contact:hover {
    background: var(--desert-tan);
    border-color: var(--pyramid-gold);
    transform: translateX(-5px);
}

html[dir="ltr"] .social-link-contact:hover {
    transform: translateX(5px);
}

.social-link-contact svg {
    width: 24px;
    height: 24px;
    color: var(--desert-brown);
}

.social-link-contact span {
    font-weight: 600;
}

.map-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--border-color);
}

.map-section h3 {
    color: var(--desert-brown);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.map-placeholder p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .pyramid-icon {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--card-bg);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 20px var(--shadow);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        border-top: 2px solid var(--border-color);
    }

    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        text-align: right;
    }

    html[dir="ltr"] .nav-menu a {
        text-align: left;
    }

    .nav-controls {
        gap: 0.5rem;
    }

    .lang-toggle,
    .theme-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .pyramid-decoration {
        gap: 20px;
    }

    .pyramid {
        border-left-width: 30px;
        border-right-width: 30px;
        border-bottom-width: 60px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .page-hero {
        padding: 3rem 0;
    }

    .hero {
        min-height: 70vh;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .hero-slider-controls {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-slider-dots {
        bottom: 20px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid,
    .testimonials-grid,
    .services-grid {
        gap: 1.5rem;
    }

    .product-card,
    .testimonial-card,
    .service-item {
        padding: 1.5rem;
    }

    .about-content-grid {
        gap: 2rem;
    }

    .mission-vision,
    .features-grid {
        gap: 1.5rem;
    }

    .mission-card,
    .feature-item {
        padding: 1.5rem;
    }

    .contact-wrapper {
        gap: 2rem;
    }

    .contact-form-section,
    .contact-info-card {
        padding: 2rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .pyramid-decoration {
        gap: 15px;
        height: 150px;
        z-index: 5;
    }

    .pyramid {
        border-left-width: 25px;
        border-right-width: 25px;
        border-bottom-width: 50px;
    }

    .pyramid-1 {
        border-left-width: 30px;
        border-right-width: 30px;
        border-bottom-width: 60px;
    }

    .pyramid-3 {
        border-left-width: 20px;
        border-right-width: 20px;
        border-bottom-width: 40px;
    }
    
    .hero-slider-controls {
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 25px;
    }

    .service-card-large {
        padding: 2rem;
    }

    .service-icon-large {
        font-size: 4rem;
    }

    .service-card-large h2 {
        font-size: 1.5rem;
    }

    .about-image-placeholder {
        height: 300px;
    }

    .map-placeholder {
        height: 250px;
    }

    .social-links-contact {
        gap: 0.8rem;
    }

    .social-link-contact {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow: auto;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal-content {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: auto;
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 32px;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.booking-modal-close:hover {
    color: var(--desert-brown);
}

.booking-modal-content h2 {
    margin-bottom: 20px;
    color: var(--desert-brown);
    font-size: 1.8rem;
    text-align: center;
}

.booking-modal-content .form-group {
    margin-bottom: 20px;
}

.booking-modal-content .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.booking-modal-content .form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.booking-modal-content .form-control:focus {
    outline: none;
    border-color: var(--desert-brown);
}

.booking-modal-content .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.booking-modal-content .form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.booking-modal-content .form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.booking-modal-content .btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-modal-content .btn-primary {
    background: var(--desert-brown);
    color: white;
}

.booking-modal-content .btn-primary:hover {
    background: var(--desert-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.booking-modal-content .btn-secondary {
    background: var(--border-color);
    color: var(--text-primary);
}

.booking-modal-content .btn-secondary:hover {
    background: var(--sand-dark);
}

@media (max-width: 768px) {
    .booking-modal-content {
        padding: 20px;
        max-height: 95vh;
    }
    
    .booking-modal-content .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-modal-content .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .navbar {
        padding: 0.8rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-text {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .product-name,
    .service-item h3,
    .mission-card h3,
    .feature-item h4 {
        font-size: 1.2rem;
    }

    .product-price,
    .service-price {
        font-size: 1.5rem;
    }

    .cta-button,
    .add-to-cart,
    .submit-button,
    .submit-button-full {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-form-section,
    .contact-info-card,
    .service-card-large {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-input,
    .form-textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-description,
    .footer-links li,
    .footer-contact li {
        font-size: 0.85rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .mission-icon,
    .feature-icon,
    .service-icon {
        font-size: 2.5rem;
    }

    .service-icon-large {
        font-size: 3.5rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .products-grid,
    .testimonials-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

