/* Services Modal Styles */
.services-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.services-modal.active {
    opacity: 1;
    visibility: visible;
}

.services-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.services-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.services-modal.active .services-modal-content {
    transform: scale(1) translateY(0);
}

.services-modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.services-modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.services-modal-close {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
}

.services-modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.services-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

/* Service Selection Step */
.service-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}

.service-category-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-category-card:hover::before {
    opacity: 0.05;
}

.service-category-card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.category-card-icon {
    color: #3b82f6;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.service-category-card:hover .category-card-icon {
    color: #1d4ed8;
    transform: scale(1.1);
}

.category-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.category-card-content p {
    color: #6b7280;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.category-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.category-stats .stat {
    font-size: 14px;
    color: #6b7280;
}

.category-stats .stat strong {
    color: #1f2937;
    font-weight: 600;
}

.category-card-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.service-category-card:hover .category-card-arrow {
    color: #3b82f6;
    transform: translateX(4px);
}

/* Service Content Step */
.service-content-header {
    margin-bottom: 30px;
}

.back-to-selection {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.back-to-selection:hover {
    color: #1d4ed8;
    transform: translateX(-4px);
}

.service-content-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.service-content-title p {
    color: #6b7280;
    margin: 0;
    font-size: 16px;
}

.service-items-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-details {
    padding: 20px;
}

.service-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.service-details p {
    color: #6b7280;
    margin: 0 0 16px 0;
    line-height: 1.5;
    font-size: 14px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.service-meta .duration {
    color: #6b7280;
    font-weight: 500;
}

.service-meta .price {
    color: #059669;
    font-weight: 600;
}

.services-modal-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}

.services-modal-footer p {
    text-align: center;
    color: #6b7280;
    margin: 0;
    font-size: 14px;
}

.services-modal-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.services-modal-footer a:hover {
    color: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .services-modal-header {
        padding: 20px 20px 15px;
    }
    
    .services-modal-header h2 {
        font-size: 24px;
    }
    
    .services-modal-body {
        padding: 20px;
    }
    
    .service-categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-category-card {
        padding: 20px;
    }
    
    .service-items-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .services-modal-footer {
        padding: 15px 20px 20px;
    }
}

/* Animation for smooth transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-category-card,
.service-item {
    animation: fadeInUp 0.5s ease forwards;
}

.service-category-card:nth-child(1) { animation-delay: 0.1s; }
.service-category-card:nth-child(2) { animation-delay: 0.2s; }
.service-category-card:nth-child(3) { animation-delay: 0.3s; }

/* Section Description and Subtitle Centering Styles */
.section-description,
p.section-description,
.about .section-description,
section .section-description,
.mission-section .section-description,
.values-section .section-description,
.team-section .section-description {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 40px !important;
    color: rgba(45, 42, 50, 0.7) !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    display: block !important;
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* Very specific targeting for About page section descriptions */
body .section .section-description,
body .mission-section p.section-description,
body .values-section p.section-description,
body .team-section p.section-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

/* Subtitle elements centering */
.subtitle,
.feature-text p,
.activity-description,
.excursion-description,
.team-member-bio,
.value-description,
.mission-text,
.timeline-content p,
.testimonial-text,
.cta-description,
.cta-subtitle {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
}

/* Specific centering for feature cards */
.feature-text p {
    text-align: center;
    margin: 0 auto;
    max-width: 200px;
}

/* Center activity and excursion descriptions */
.activity-description,
.excursion-description {
    text-align: center;
    margin: 0 auto 20px;
    max-width: 600px;
}

/* Center team member bios */
.team-member-bio {
    text-align: center;
    margin: 0 auto 20px;
    max-width: 400px;
}

/* Center value descriptions */
.value-description {
    text-align: center;
    margin: 0 auto 20px;
    max-width: 500px;
}

/* Center mission text */
.mission-text {
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
}

/* Center timeline content */
.timeline-content p {
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
}

/* Center testimonial text */
.testimonial-text {
    text-align: center;
    margin: 0 auto 20px;
    max-width: 600px;
}

/* Center CTA descriptions */
.cta-description,
.cta-subtitle {
    text-align: center;
    margin: 0 auto 30px;
    max-width: 700px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-description {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .subtitle,
    .feature-text p,
    .activity-description,
    .excursion-description,
    .team-member-bio,
    .value-description,
    .mission-text,
    .timeline-content p,
    .testimonial-text,
    .cta-description,
    .cta-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Loading state */
.loading-state {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    text-align: center;
}

.loading-state p {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
}

/* Base Styles */
:root {
    --primary: #c97c5d;
    --primary-dark: #b06e52;
    --secondary: #2d3142;
    --accent: #e8a87c;
    --light: #fff8f0;
    --dark: #2d2a32;
    --sand: #e8c39e;
    --terracotta: #c97c5d;
    --blue-oasis: #4a9bd1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 124, 93, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin: 15px auto 30px;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 60px;
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: block;
    }
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    position: relative;
}

#languageToggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px;
    min-width: 120px;
    z-index: 100;
    display: none;
}

.language-dropdown.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.language-option {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.language-option:hover {
    background-color: #f3f4f6;
}

.language-option.active {
    background-color: #f3f4f6;
    font-weight: 500;
}

.language-flag {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 50%;
    object-fit: cover;
}

/* Currency Switcher Styles */
.currency-switcher {
    position: relative;
}

#currencyToggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

#currencyToggle:hover {
    background-color: rgba(201, 124, 93, 0.1);
}

#currencyToggle svg {
    transition: transform 0.2s;
}

.currency-switcher.active #currencyToggle svg {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px;
    min-width: 150px;
    z-index: 100;
    display: none;
    margin-top: 5px;
}

.currency-dropdown.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

.currency-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
    margin-bottom: 2px;
}

.currency-option:hover {
    background-color: #f3f4f6;
}

.currency-option.active {
    background-color: rgba(201, 124, 93, 0.1);
    font-weight: 500;
}

.currency-option:last-child {
    margin-bottom: 0;
}

.currency-symbol {
    font-weight: 600;
    color: var(--primary);
    min-width: 30px;
}

.currency-refresh {
    border-top: 1px solid #e5e7eb;
    padding-top: 8px;
    margin-top: 8px;
}

.refresh-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 6px 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    border-radius: 4px;
    transition: background-color 0.2s;
    font-size: 12px;
    gap: 5px;
}

.refresh-btn:hover {
    background-color: #f3f4f6;
}

.refresh-btn svg {
    width: 12px;
    height: 12px;
}

/* Responsive styles for currency dropdown */
@media (max-width: 767px) {
    .currency-dropdown {
        right: -10px;
        min-width: 140px;
    }
    
    .currency-option {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    #currencyToggle {
        padding: 6px 8px;
        font-size: 14px;
    }
    
    .header-actions {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .currency-dropdown {
        right: -20px;
        min-width: 130px;
    }
    
    .currency-option span:last-child {
        font-size: 12px;
    }
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    padding: 20px;
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: var(--dark);
    font-weight: 500;
}

.mobile-menu a.active {
    color: var(--primary);
}

.mobile-currency-switcher {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-currency-switcher .currency-switcher {
    width: 100%;
}

.mobile-currency-switcher #mobileCurrencyToggle {
    width: 100%;
    justify-content: space-between;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
}

.mobile-currency-switcher .currency-dropdown {
    position: static;
    box-shadow: none;
    border: 1px solid #e5e7eb;
    margin-top: 10px;
    border-radius: 6px;
}

.mobile-currency-switcher .currency-option {
    padding: 12px 16px;
    border-radius: 0;
    margin-bottom: 0;
}

.mobile-currency-switcher .currency-option:first-child {
    border-radius: 6px 6px 0 0;
}

.mobile-currency-switcher .currency-option:last-child {
    border-radius: 0 0 6px 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Footer Styles */
.site-footer {
    background-color: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-5px) rotate(10deg);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border-radius: 4px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright, .footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* 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 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@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);
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(45, 42, 50, 0.8), rgba(13, 59, 102, 0.6));
    z-index: -1;
}

.hero-content {
    color: white;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 576px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { transform: translate(-50%, 0); opacity: 0.8; }
    50% { transform: translate(-50%, 10px); opacity: 1; }
    100% { transform: translate(-50%, 0); opacity: 0.8; }
}

/* Add these styles to the end of your existing style.css file */

/* About Page Specific Styles */
.about-hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.about-hero-content {
    color: white;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.about-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumbs a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
    opacity: 1;
}

.separator {
    color: white;
    opacity: 0.5;
}

.current {
    color: var(--accent);
}

/* Story Section */
.story-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 992px) {
    .story-container {
        flex-direction: row;
        align-items: center;
    }
}

.story-content {
    flex: 1;
}

.story-text {
    margin-bottom: 20px;
    color: rgba(45, 42, 50, 0.8);
    line-height: 1.8;
}

.story-signature {
    margin-top: 30px;
}

.story-signature img {
    height: 60px;
    margin-bottom: 10px;
}

.signature-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.signature-title {
    color: rgba(45, 42, 50, 0.7);
    font-size: 0.9rem;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(201, 124, 93, 0.3);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
}

/* Mission Section */
.mission-section {
    background-color: #f8f8f8;
}

.mission-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .mission-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(201, 124, 93, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.mission-icon svg {
    color: var(--primary);
}

.mission-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-text {
    color: rgba(45, 42, 50, 0.7);
    line-height: 1.6;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: -30px;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 55%;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.timeline-content p {
    color: rgba(45, 42, 50, 0.7);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-date {
        left: 20px;
        transform: none;
    }

    .timeline-content {
        width: calc(100% - 60px);
        left: 60px !important;
    }
}

/* Team Section */
.team-section {
    background-color: #f8f8f8;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-member-image {
    height: 300px;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 20px;
}

.team-member-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-member-position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member-bio {
    color: rgba(45, 42, 50, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social-links {
    display: flex;
    gap: 15px;
}

.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(201, 124, 93, 0.1);
    color: var(--primary);
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.team-social-link svg {
    width: 20px;
    height: 20px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 576px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(201, 124, 93, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.value-icon svg {
    color: var(--primary);
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-description {
    color: rgba(45, 42, 50, 0.7);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f8f8;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 30px;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-text {
    color: rgba(45, 42, 50, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author-location {
    color: rgba(45, 42, 50, 0.7);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background-color: #f8f8f8;
}

.cta-container {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    padding: 60px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.cta-title, .cta-description, .cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-title {
    color: white !important;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    color: white !important;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Additional CTA text styling to ensure visibility */
.cta-container h2,
.cta-container p,
.cta-container .cta-title,
.cta-container .cta-description {
    color: white !important;
    opacity: 1 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}



.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Excursion Details Styles */
.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark);
    position: relative;
}

.content-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin-top: 10px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(201, 124, 93, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

/* Includes List */
.includes-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .includes-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: rgba(74, 155, 209, 0.05);
    border-radius: 6px;
    border-left: 3px solid var(--blue-oasis);
}

.include-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--blue-oasis);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.include-icon svg {
    width: 16px;
    height: 16px;
}

.transport-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: rgba(232, 168, 124, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(232, 168, 124, 0.3);
    margin-top: 15px;
}

.transport-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--accent);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.transport-icon svg {
    width: 18px;
    height: 18px;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 30px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -22px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(201, 124, 93, 0.2);
}

.timeline-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
}

.timeline-content h4 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: rgba(45, 42, 50, 0.7);
    margin-bottom: 10px;
    line-height: 1.6;
}

.timeline-time {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item.large {
    grid-column: span 2;
}

@media (max-width: 767px) {
    .gallery-item.large {
        grid-column: span 1;
    }
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .content-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.content-main {
    order: 2;
}

.content-sidebar {
    order: 1;
}

@media (min-width: 992px) {
    .content-main {
        order: 1;
    }
    
    .content-sidebar {
        order: 2;
    }
}

/* Info Cards */
.info-card, .contact-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.info-card h3, .contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-weight: 500;
    color: var(--dark);
}

.info-value {
    color: rgba(45, 42, 50, 0.7);
}

.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    background-color: var(--primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Card */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-container {
    position: relative;
    background-color: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h3 {
    margin: 0;
    color: var(--dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(45, 42, 50, 0.7);
}

.modal-body {
    padding: 25px;
}

.booking-form-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Price Display */
.price-display {
    background-color: rgba(201, 124, 93, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.price-per-person {
    color: rgba(45, 42, 50, 0.7);
    font-size: 0.9rem;
}

/* Group Discount Info */
.group-discount {
    background-color: rgba(74, 155, 209, 0.1);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid var(--blue-oasis);
}

.group-discount h4 {
    color: var(--blue-oasis);
    margin-bottom: 8px;
    font-size: 1rem;
}

.group-discount ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.group-discount li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.9rem;
}

.group-discount .discount {
    font-weight: 600;
    color: var(--blue-oasis);
}

/* Services Modal Styles */
.services-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-modal.active {
    display: flex;
    opacity: 1;
}

.services-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.services-modal-content {
    position: relative;
    background: white;
    margin: auto;
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.services-modal.active .services-modal-content {
    transform: scale(1) translateY(0);
}

.services-modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.services-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.services-modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.services-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.services-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.services-modal-body {
    padding: 40px;
    max-height: 60vh;
    overflow-y: auto;
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-category {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(201, 124, 93, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 124, 93, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(201, 124, 93, 0.1);
}

.category-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(201, 124, 93, 0.3);
}

.category-info h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.category-info p {
    color: rgba(45, 50, 66, 0.7);
    margin: 0;
    font-size: 1rem;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 124, 93, 0.2);
    border-color: var(--primary);
}

.service-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-details {
    padding: 20px;
}

.service-details h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin: 0 0 10px 0;
    font-weight: 600;
}

.service-details p {
    color: rgba(45, 50, 66, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.service-meta .duration {
    background: rgba(201, 124, 93, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-meta .price {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.services-modal-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px 40px;
    text-align: center;
    border-top: 1px solid rgba(201, 124, 93, 0.1);
}

.services-modal-footer p {
    margin: 0;
    color: rgba(45, 50, 66, 0.7);
    font-size: 1rem;
}

.services-modal-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-modal-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .services-modal-content {
        width: 98%;
        max-height: 95vh;
        margin: 10px auto;
        border-radius: 15px;
    }
    
    .services-modal-header {
        padding: 20px;
    }
    
    .services-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .services-modal-body {
        padding: 20px;
        max-height: 70vh;
    }
    
    .service-category {
        padding: 20px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-details {
        padding: 15px;
    }
    
    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .services-modal-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .services-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .services-modal-body {
        padding: 15px;
    }
    
    .service-category {
        padding: 15px;
    }
    
    .service-details h4 {
        font-size: 1.1rem;
    }
    
    .service-details p {
        font-size: 0.85rem;
    }
}