/* Variables */
:root {
    --primary-color: #6b7c57; /* Olive green from images */
    --secondary-color: #c8a45e; /* Gold accent color from images */
    --dark-gray: #343a40;
    --light-gray: #f3efe0; /* Light beige background from images */
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #c8a45e;
}

.section-title {
    margin-bottom: 2rem;
    position: relative;
    font-weight: 700;
    color: var(--dark-gray);
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto;
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #566345;
    border-color: #566345;
}

.btn-outline-secondary {
    color: var(--dark-gray);
    border-color: var(--dark-gray);
}

.btn-outline-secondary:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.btn-reserve {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-reserve:hover {
    background-color: #b08f47;
    border-color: #b08f47;
    color: white;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(197, 107, 42, 0.05);
}

/* Hero Section */
.hero-section {
    background-color: var(--light-gray);
    background-image: linear-gradient(to left, var(--light-gray), #f8f0d8);
    padding: 7rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    margin-top: 2rem;
}

/* Features Section */
.features-section {
    background-color: var(--white);
}

.feature-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Video Section */
.video-section {
    background-color: var(--light-gray);
}

.video-container {
    position: relative;
    padding-bottom: 80.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Use Cases Section */
.use-cases-section {
    background-color: var(--white);
}

.use-case-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: var(--light-gray);
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.use-case-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.use-case-card h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Download Section */
.download-section {
    background-color: var(--light-gray);
}

/* Footer */
footer {
    padding: 3rem 0;
}

footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 0.5rem;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* About Page */
.about-intro-section {
    padding-top: 7rem;
}

.problem-card, .solution-card {
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    margin-bottom: 1.5rem;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.problem-list, .solution-list {
    padding-left: 0;
    list-style-type: none;
}

.problem-list li, .solution-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.problem-list i, .solution-list i {
    margin-left: 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.use-case-detailed-card {
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.use-case-detailed-card .icon-wrapper {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 1.5rem;
    background-color: rgba(197, 107, 42, 0.1);
    border-radius: 50%;
    text-align: center;
}

.use-case-detailed-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.use-case-detailed-card h3 {
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.unique-feature {
    margin-bottom: 2.5rem;
}

.unique-feature img {
    margin-bottom: 1.2rem;
    width: 100%;
    height: 220px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.unique-feature h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.future-section {
    background-color: var(--white);
}

/* Specs Page */
.specs-intro-section {
    padding-top: 7rem;
}

.specs-overview {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specs-overview h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.specs-list {
    padding: 0;
    list-style-type: none;
}

.specs-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 1rem;
}

.specs-tabs {
    margin-top: 3rem;
}

.nav-tabs {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    margin-bottom: -2px;
    transition: var(--transition);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color);
    background-color: transparent;
}

.specs-detail-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 1.5rem;
}

.specs-detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.specs-detail-card ul {
    padding-right: 1.2rem;
}

.specs-detail-card li {
    margin-bottom: 0.8rem;
}

.specs-image-wrapper {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.specs-image-wrapper img {
    max-width: 100%;
    max-height: 500px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.comparison-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.comparison-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.chart-container {
    margin-top: 1.5rem;
}

.chart-bar {
    margin-bottom: 1.5rem;
}

.chart-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.chart-value {
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 15px;
    line-height: 30px;
    color: var(--white);
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}

.certifications-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.certifications-list {
    list-style-type: none;
    padding: 0;
    margin: 2rem 0;
    text-align: right;
}

.certifications-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.certifications-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-left: 1rem;
}

.certification-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.certification-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-gray);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.specs-download-section {
    background-color: var(--white);
}

/* Gallery Page */
.gallery-intro-section {
    padding-top: 7rem;
}

.gallery-grid {
    margin-top: 3rem;
}

.gallery-item {
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f3efe0;
    border-radius: 10px;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-video {
    position: relative;
    padding-bottom: 160.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.gallery-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.gallery-3d-section img {
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    background: #f3efe0;
    border-radius: 10px;
    padding: 8px;
}

/* Team Page */
.team-member-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: #f3efe0;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 5px solid rgba(197, 107, 42, 0.1);
}

.team-member-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.team-member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member-social {
    margin-top: 1.5rem;
}

.team-member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(197, 107, 42, 0.1);
    margin: 0 0.3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-member-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* FAQ Page */
.faq-section {
    padding-top: 7rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background-color: var(--white);
}

.accordion-button {
    padding: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    background-color: var(--white);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(197, 107, 42, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: var(--transition);
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--white);
}

/* Contact Page */
.contact-section {
    padding-top: 7rem;
}

.contact-info-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(197, 107, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-left: 1rem;
}

.contact-info-text h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-form-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.contact-form-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 5rem 0;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .feature-card, .use-case-card {
        margin-bottom: 2rem;
    }
    
    .specs-tabs .nav-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .about-intro-section, .specs-intro-section, .gallery-intro-section, .faq-section, .contact-section {
        padding-top: 5rem;
    }
}

/* RTL specific styles */
html[dir="rtl"] .navbar-nav {
    padding-right: 0;
}

html[dir="rtl"] .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .social-icon {
    margin-left: 0.5rem;
    margin-right: 0;
} 