:root {
    --dark-moss-green: #606C38;
    --pakistan-green: #283618;
    --cornsilk: #FEFAE0;
    --earth-yellow: #DDA15E;
    --tigers-eye: #BC6C25;
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    --overlay: rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-top: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-logo a {
    color: var(--pakistan-green);
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--pakistan-green);
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-link::after {
    background-color: var(--pakistan-green);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex !important;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo {
        flex-shrink: 0;
    }
    
    .nav-logo a {
        font-size: 1.4rem;
    }
}

.nav-hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .nav-hamburger .bar {
    background-color: var(--pakistan-green);
}

.nav-hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
    height: 100vh;
    background-image: url('./img/IMG_1101.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    text-shadow: var(--text-shadow);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    font-weight: bold;
    text-shadow: var(--text-shadow);
    margin-bottom: 1rem;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 1rem 2rem;
    border: 2px solid;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--pakistan-green);
    color: var(--cornsilk);
    border-color: var(--pakistan-green);
}

.btn-primary:hover {
    background-color: var(--cornsilk);
    color: var(--pakistan-green);
    border-color: var(--pakistan-green);
}

.btn-secondary {
    background-color: var(--cornsilk);
    color: var(--pakistan-green);
    border-color: var(--pakistan-green);
}

.btn-secondary:hover {
    background-color: var(--pakistan-green);
    color: var(--cornsilk);
    border-color: var(--pakistan-green);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        width: 80%;
        max-width: 200px;
    }
}

/* Content sections */
.content-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.content-section:nth-child(odd) {
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
}

.content-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
    max-width: 50%;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-text {
    flex: 1;
    max-width: 50%;
}

.content-text h2 {
    font-size: 2.5rem;
    color: var(--pakistan-green);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.content-text .btn {
    margin-top: 1.5rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .content-row,
    .content-row.reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .content-image,
    .content-text {
        max-width: 100%;
        flex: none;
    }
    
    .content-image {
        order: -1;
    }
    
    .content-image img {
        height: 250px;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
}

/* Services Grid Section */
.services-section {
    padding: 5rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--pakistan-green);
    margin-bottom: 1rem;
    font-weight: bold;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--pakistan-green);
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Parallax Section */
.parallax-section {
    height: 60vh;
    background-image: url('./img/IMG_1101.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
}

.parallax-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.parallax-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: var(--text-shadow);
}

.parallax-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: var(--text-shadow);
}

/* Split Screen Section */
.split-screen-section {
    display: flex;
    height: 60vh;
}

.split-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.split-side.indoor {
    background-image: linear-gradient(rgba(0, 102, 83, 0.8), rgba(0, 102, 83, 0.8)), url('./img/IMG_1101.jpg');
}

.split-side.outdoor {
    background-image: linear-gradient(rgba(255, 248, 220, 0.8), rgba(255, 248, 220, 0.8)), url('./img/IMG_1101.jpg');
}

.split-content {
    text-align: center;
    z-index: 2;
}

.split-side.indoor .split-content h3 {
    color: var(--cornsilk);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.split-side.indoor .split-content p {
    color: var(--cornsilk);
    font-size: 1.2rem;
}

.split-side.outdoor .split-content h3 {
    color: var(--pakistan-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.split-side.outdoor .split-content p {
    color: var(--pakistan-green);
    font-size: 1.2rem;
}

/* Prestations Section */
.prestations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.prestation-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.prestation-card h3 {
    color: var(--pakistan-green);
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--earth-yellow);
}

.prestation-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.tarif-item:last-child {
    border-bottom: none;
}

.tarif-item.featured {
    justify-content: center;
    border-bottom: none;
    padding: 1rem 0;
}

.tarif-label {
    color: #555;
    font-size: 1rem;
}

.tarif-price {
    color: var(--tigers-eye);
    font-weight: bold;
    font-size: 1.1rem;
}

.tarif-item.featured .tarif-price {
    font-size: 2rem;
    color: var(--pakistan-green);
}

.prestation-description {
    color: #666;
    line-height: 1.6;
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
}

.prestations-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.prestations-contact p {
    font-size: 1.2rem;
    color: var(--pakistan-green);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .prestations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prestation-card {
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    color: var(--pakistan-green);
    font-size: 1.2rem;
    margin: 0;
    font-weight: bold;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--pakistan-green);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Additional mobile styles for navigation */
@media (max-width: 768px) {
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding-top: 2rem;
        gap: 3rem;
        z-index: 999;
        display: flex;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    /* Force green color for mobile menu links since menu has white background */
    .nav-menu.active .nav-link {
        color: var(--pakistan-green);
    }

    .nav-menu.active .nav-link::after {
        background-color: var(--pakistan-green);
    }

/* Mobile responsive for other sections */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .parallax-section {
        height: 40vh;
        background-attachment: scroll;
    }
    
    .parallax-content h2 {
        font-size: 2rem;
    }
    
    .parallax-content p {
        font-size: 1.2rem;
    }
    
    .split-screen-section {
        flex-direction: column;
        height: auto;
    }
    
    .split-side {
        min-height: 40vh;
    }
    
    .split-content h3 {
        font-size: 1.5rem !important;
    }
    
    .split-content p {
        font-size: 1rem !important;
    }
}

/* Footer */
footer {
    background-color: var(--pakistan-green);
    color: white;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        justify-content: center;
    }
}