
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* TRAVEL WITH US Journey Path Section */
.travel-section {
    background: linear-gradient(180deg, #2f5d50 80%, #eaa466 100%);
    padding: 60px 0 40px 0;
    position: relative;
    overflow: visible;
}
.travel-header {
    text-align: center;
    margin-bottom: 60px;
}
.travel-signpost {
    display: inline-block;
    background: #eaa466;
    color: #2f5d50;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 0.5em 2em;
    border-radius: 30px 30px 10px 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}
.travel-journey {
    position: relative;
    width: 100%;
    min-height: 180px;
    margin-top: 0;
}
.travel-path {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}
.travel-cards {
    position: relative;
    width: 100%;
    height: 120px;
    display: block;
}
.travel-card {
    position: absolute;
    top: 0;
    width: 28%;
    min-width: 220px;
    max-width: 320px;
    background: #fff;
    color: #2f5d50;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    transform: translateY(0) scale(1);
    transition: box-shadow 0.2s, transform 0.2s;
    z-index: 2;
    cursor: pointer;
}
.travel-card:hover {
    box-shadow: 0 12px 40px rgba(234,164,102,0.25);
    transform: translateY(-18px) scale(1.04);
}
.travel-icon {
    font-size: 2.2rem;
    color: #eaa466;
    margin-bottom: 0.5rem;
}
.travel-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2f5d50;
    font-weight: 700;
}
.travel-card p {
    font-size: 1rem;
    color: #2f5d50;
}
@media (max-width: 900px) {
    .travel-card { min-width: 180px; width: 30%; }
}
@media (max-width: 700px) {
    .travel-section {
        padding: 60px 0 40px 0;
    }
    .travel-journey { 
        min-height: auto; 
        margin-bottom: 0;
    }
    .travel-cards { 
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
    }
    .travel-card {
        position: static;
        display: block;
        margin: 0 auto;
        width: 90%;
        max-width: 340px;
        transform: none;
    }
    .travel-path { display: none; }
}

/* Center the arrows below the founders slider */
.founders-arrows-below {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 18px;
}
.founders-arrows-below .founders-arrow {
    position: static;
    transform: none;
    margin: 0;
}

/* Make FOUNDERS and FOCUS SECTORS headers bigger */
.founders-section .section-header h2,
.about .section-header h2,
.contact .section-header h2,
.sectors .section-header h2 {
    font-size: 3.1rem !important;
    letter-spacing: 1px;
}

/* Make slider sub-headers smaller */
.founders-slide .section-header h2 {
    font-size: 2rem !important;
}
/* Reduce gap below Founders section header */
.founders-section .section-header {
    margin-bottom: 16px !important;
}
/* Reduce gap below Founders section header */
.founders-section .section-header {
    margin-bottom: 16px !important;
}

/* Founders Section Slider */
.founders-section {
    margin: 60px 0 4px 0;
}
.founders-slider {
    display: block;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    max-width: none;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    margin-bottom: 0;
}
.founders-arrow {
    background: var(--color-bg);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.founders-arrow:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}
.founders-arrow-left {
            margin-right: 0;
            position: absolute;
            left: 24px;
            top: 50%;
            transform: translateY(-50%);
}
.founders-arrow-right {
            margin-left: 0;
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
}
.founders-slides {
        width: 100%;
        max-width: 1100px;
        min-height: 320px;
        position: relative;
        overflow: hidden;
        margin: 0 auto;
}
.founders-slide {
    display: none;
    animation: fadeInFounders 0.5s;
}
.founders-slide.active {
    display: block;
}
@keyframes fadeInFounders {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}
.founders-slide .services-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.founders-slide .service-card {
    background: var(--color-bg);
    border: 2px solid var(--color-primary);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    min-width: 220px;
        max-width: 340px;
    flex: 1 1 220px;
    text-align: center;
    margin: 0.5rem 0;
    transition: box-shadow 0.2s;
}
.founders-slide .service-card i {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    color: var(--yellow);
}
.founders-slide .service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}
.founders-slide .service-card p {
    color: var(--color-text-light);
}
@media (max-width: 600px) {
    .hero-content {
        transform: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .hero::before {
        background: var(--green) !important;
        background-image: url('images/tahr2_phone.png') !important;
        background-size: cover !important;
        background-position: center !important;
    }
}
@media (max-width: 600px) {
    .hero-content {
        transform: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

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

:root {
    --color-bg: #2f5d50;
    --color-surface: #2f5d50;
    --color-primary: #eaa466;
    --color-accent: #2f5d50;
    --color-text: #eaa466;
    --color-text-light: #eaa466;
    --color-text-dark: #eaa466;
    --color-white: #2f5d50;
    --color-gray: #2f5d50;
    --yellow: #eaa466;
    --green: #2f5d50;
    --white: #ffffff;


}

body {
    /* font-family: 'Goudy Old Style', serif, sans-serif; */
    font-family: 'Cinzel', serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

/* Apply Montserrat font to content inside boxes/cards */
.travel-card p,
.about-content p,
.objective-item p,
.sector-content p,
.sector-content li,
.service-card p,
.founders-slide .service-card p,
.faq-content p,
.faq-content li,
.faq-desc,
.faq-note,
.package-content p,
.package-content li,
.contact-item p,
.footer-section p,
.footer-section li,
.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
}

/* Keep headers with Cinzel font - this ensures headers remain unchanged */
.travel-card h3,
.about-content h3,
.objective-item h3,
.sector-content h3,
.service-card h3,
.founders-slide .service-card h3,
h1, h2, h3, h4, h5, h6,
.section-header h2,
.hero-title,
.hero-subtitle,
.hero-location {
    font-family: 'Cinzel', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--green);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--green);
    box-shadow: 0 2px 20px rgba(23, 77, 56, 0.3);
}

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

.nav-logo h2 {
    color: var(--color-text-light);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.nav-logo span {
    color: var(--yellow);
    font-size: 0.9rem;
    font-weight: 400;
}

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

.nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

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

.nav-link:hover {
    color: var(--yellow);
    background: rgba(203, 203, 203, 0.15);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--color-text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-left: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: var(--green); */
    background: url('images/tahr2.png') center/cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(18vw);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-surface);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-location {
    font-size: 1.1rem;
    color: var(--yellow);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text-light);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 23, 23, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--yellow);
    border-color: var(--yellow);
}

.btn-secondary:hover {
    background: var(--yellow);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 242, 242, 0.3);
}

.btn-secondary2 {
    background: rgba(255,255,255,0.18);
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary2:hover {
    background: var(--yellow);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 242, 242, 0.3);
}

/* Section Styles */
section {
    padding: 40px 0 32px;
    background: var(--green) !important;
}

section#home {
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid transparent;
}

.section-header:hover {
    background: rgba(203, 203, 203, 0.1);
    transform: translateY(-2px);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.section-header:hover h2 {
    color: var(--yellow);
    transform: scale(1.02);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-primary);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* About Section */
.about {
    background: var(--green) !important;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(23, 77, 56, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-color: var(--color-primary);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(23, 77, 56, 0.2);
    /* background: linear-gradient(135deg, var(--color-white) 0%, var(--color-surface) 100%); */
    border-color: var(--color-primary);
}

.about-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-content {
    padding: 2rem;
    transition: all 0.3s ease;
}

.about-content:hover {
    background: rgba(23, 77, 56, 0.02);
}

.about-content h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.about-card:hover .about-content h3 {
    color: var(--yellow);
}

.about-content i {
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.about-card:hover .about-content i {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* New About Layout */
.about-new-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-image-left {
    flex: 1;
    max-width: 400px;
}

.about-image-left img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(23, 77, 56, 0.1);
    transition: all 0.3s ease;
}

.about-image-left img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(23, 77, 56, 0.2);
}

.about-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card-new {
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(23, 77, 56, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-color: var(--color-primary);
}

.about-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(23, 77, 56, 0.2);
    border-color: var(--color-primary);
}

.about-card-new .about-content {
    padding: 1.5rem;
}

.about-card-new:hover .about-content {
    background: rgba(23, 77, 56, 0.02);
}

.about-card-new .about-content h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.about-card-new:hover .about-content h3 {
    color: var(--yellow);
}

.about-card-new .about-content i {
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.about-card-new:hover .about-content i {
    color: var(--color-primary);
    transform: scale(1.1);
}

.objectives {
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 15px;
}

.objectives:hover {
    background: rgba(203, 203, 203, 0.2);
    transform: translateY(-2px);
}

.objectives h3 {
    font-size: 2rem;
    color: var(--yellow);
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.objectives:hover h3 {
    color: var(--yellow);
}

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

.objective-item {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(23, 77, 56, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-color: var(--color-primary);
}

.objective-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(23, 77, 56, 0.2);
    background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow) 100%);
    border-color: var(--green);
}

.objective-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.objective-item:hover i {
    color: var(--color-accent);
    transform: scale(1.1);
}

.objective-item p {
    color: var(--color-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.objective-item:hover p {
    color: var(--green);
    transform: translateY(-2px);
    opacity: 1;
}

/* Sectors Section */
.sectors {
    background: var(--green) !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.sectors .container {
    width: 100%;
}

.sectors-grid {
    display: flex;
    gap: 2rem;
    width: 100%;
    align-items: stretch;
}

.sector-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(23, 77, 56, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    flex: 1;
    min-width: 250px;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.sector-card:hover {
    flex: 1.5;
    box-shadow: 0 20px 40px rgba(23, 77, 56, 0.3);
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-white) 100%);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    z-index: 2;
}

.sectors-grid:hover .sector-card:not(:hover) {
    flex: 0.75;
    opacity: 0.8;
    transform: scale(0.98);
}

.sector-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sector-content {
    padding: 2rem;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.sector-card:hover .sector-content {
    background: rgba(23, 77, 56, 0.02);
}

.sector-content h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.sector-card:hover .sector-content h3 {
    color: var(--yellow);
    transform: scale(1.1);
}

.sector-content i {
    color: var(--yellow);
    transition: all 0.3s ease;
}

.sector-card:hover .sector-content i {
    color: var(--color-primary);
    transform: scale(1.1);
}

.sector-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sector-default-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card:hover .sector-default-description {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 1.5rem;
}

.sector-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.sector-content li:hover {
    background: rgba(23, 77, 56, 0.1);
    padding-left: 2rem;
    transform: translateX(5px);
}

.sector-content li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
    transition: all 0.3s ease;
}

.sector-extra-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    transform: translateY(-10px);
    border-top: 1px solid transparent;
    padding-top: 0;
}

.sector-card:hover .sector-extra-content {
    opacity: 1;
    max-height: 300px;
    margin-top: 0;
    transform: translateY(0);
    transition-delay: 0.2s;
    border-top: 1px solid rgba(23, 77, 56, 0.1);
    padding-top: 1rem;
}

/* Services Section */
.services {
    background: var(--green) !important;
}

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

.service-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(23, 77, 56, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-color: var(--color-primary);

}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(23, 77, 56, 0.2);
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-white) 100%);
    border-color: var(--color-primary);
}

.service-card i {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    color: var(--yellow);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--yellow);
    transform: scale(1.1);
}

.service-card p {
    color: var(--color-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.service-card:hover p {
    color: var(--color-primary);
    opacity: 1;
}

.price {
    font-weight: 600;
    color: var(--color-accent);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.service-card:hover .price {
    color: var(--color-primary);
    transform: scale(1.05);
}

/* Packages */
.packages {
    margin-top: 4rem;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.packages:hover {
    background: rgba(203, 203, 203, 0.2);
    transform: translateY(-2px);
}

.packages h3 {
    font-size: 2rem;
    color: var(--yellow);
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.packages:hover h3 {
    color: var(--yellow);
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(23, 77, 56, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(23, 77, 56, 0.2);
    border-color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-white) 100%);
}

.faq-item.featured {
    border-color: var(--color-primary);
    transform: scale(1.02);
}

.faq-item.featured:hover {
    border-color: var(--color-accent);
}

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

.faq-item.featured .faq-question {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
}

.faq-question:hover {
    background: var(--green);
}

.faq-item.featured .faq-question:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question:hover h4{
    color: var(--yellow);
}

.faq-item.featured .faq-question h4 {
    color: white;
}

.equity-badge {
    background: var(--color-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.equity-badge.featured {
    background: rgba(203, 203, 203, 0.3);
    color: white;
}

.equity-badge.no-equity {
    background: var(--color-surface);
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--green);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question:hover .faq-icon {
    color: var(--yellow);
}


.faq-item.featured .faq-icon {
    color: white;
}

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

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

.faq-answer.active {
    max-height: 2000px;
}

.faq-content {
    padding: 1.5rem;
    border-top: 1px solid var(--color-surface);
}

.faq-content h5 {
    color: var(--color-primary);
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.faq-content ul {
    list-style: none;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    /* background: #f8f8f8; */
    border-radius: 8px;
    /* border: 1px solid #e0e0e0; */
    box-shadow: 0 2px 8px rgba(23,77,56,0.04);
}

.faq-content li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-content li i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.faq-note {
    background: var(--color-surface);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-style: italic;
    color: var(--color-primary);
    border-left: 4px solid var(--color-accent);
    opacity: 0.9;
}

.package-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(23, 77, 56, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(23, 77, 56, 0.2);
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-white) 100%);
    border-color: var(--color-primary);
}

.package-card.featured {
    border-color: var(--color-surface);
    transform: none;
}

.package-header {
    background: var(--color-surface);
    color: var(--color-primary);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.package-card.featured .package-header {
    background: var(--color-surface);
    color: var(--color-primary);
}

.package-card:hover .package-header {
    background: var(--color-primary);
    color: var(--color-white);
}

.package-header h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.package-card:hover .package-header h4 {
    transform: scale(1.05);
}

.package-price {
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-card:hover .package-price {
    transform: scale(1.05);
}

.package-content {
    padding: 2rem;
    transition: all 0.3s ease;
}

.package-card:hover .package-content {
    background: rgba(23, 77, 56, 0.02);
}

.package-content ul {
    list-style: none;
    margin-top: 1rem;
}

.package-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.package-content li:hover {
    background: rgba(23, 77, 56, 0.1);
    padding-left: 2rem;
    transform: translateX(5px);
}

.package-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: var(--green) !important;
}

.contact-info {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
}

.contact-info:hover {
    background: rgba(203, 203, 203, 0.15);
    transform: translateY(-2px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;

    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(23, 77, 56, 0.05);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: var(--color-accent);
    transform: scale(1.1);
}

.contact-item h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--color-primary);
    line-height: 1.6;
    opacity: 0.8;
}

.contact-form {
    background: var(--green);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(23, 77, 56, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-color: var(--yellow);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(23, 77, 56, 0.2);
    background: linear-gradient(135deg, var(--green) 0%, var(--color-white) 100%);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-surface);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--yellow);
    color: var(--green);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    color: var(--green);
}

/* Footer */
.footer {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.footer-section:hover {
    background: rgba(203, 203, 203, 0.1);
    transform: translateY(-3px);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--yellow);
    transition: all 0.3s ease;
}

.footer-section:hover h3,
.footer-section:hover h4 {
    color: var(--color-text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
    border-radius: 5px;
}

.footer-section li:hover {
    background: rgba(203, 203, 203, 0.1);
    padding-left: 0.5rem;
    transform: translateX(5px);
}

.footer-section a {
    color: var(--yellow);
    text-decoration: none;
    position: relative;
    display: block;
}

.footer-section a:hover {
    color: var(--color-text-light);
}

/* Right-aligned '>' for Quick Links */
.footer-section ul li a::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--yellow);
    font-size: 1.1em;
    font-weight: bold;
    transition: color 0.3s;
}
.footer-section ul li a:hover::after {
    color: var(--color-text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-accent);
    color: var(--yellow);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: var(--green);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    /* Mobile founders slider arrows positioning */
    .founders-arrows-below {
        position: absolute !important;
        top: 50% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin: 0 !important;
        gap: 0 !important;
        transform: translateY(-50%) !important;
        z-index: 15 !important;
        pointer-events: none !important;
    }
    
    .founders-slider {
        position: relative;
    }
    
    .founders-arrow {
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        width: auto !important;
        height: auto !important;
        font-size: 2.5rem !important;
        color: var(--color-primary) !important;
        position: static !important;
        transform: none !important;
        z-index: 16 !important;
        padding: 15px !important;
        pointer-events: auto !important;
        margin: 0 !important;
    }
    
    .founders-arrow i {
        display: none !important; /* Hide Font Awesome icons on mobile */
    }
    
    .founders-arrow-left::before {
        content: "<";
        font-family: Arial, sans-serif;
        font-weight: bold;
        font-size: 2rem;
    }
    
    .founders-arrow-right::before {
        content: ">";
        font-family: Arial, sans-serif;
        font-weight: bold;
        font-size: 2rem;
    }
    
    .founders-arrow:hover {
        background: transparent !important;
        color: var(--yellow) !important;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-new-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image-left {
        max-width: 100%;
        order: 1;
    }

    .about-content-right {
        order: 2;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .sectors {
        min-height: auto;
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .sectors-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .sector-card {
        min-width: unset;
        flex: none;
        min-height: 250px;
    }

    .sector-card:hover {
        flex: none;
    }

    .sectors-grid:hover .sector-card:not(:hover) {
        flex: none;
        opacity: 1;
        transform: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .faq-content {
        padding: 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

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

    .section-header h2 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        margin-bottom: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    /* Travel section mobile adjustments */
    .travel-section {
        padding: 40px 0 30px 0;
    }

    .travel-cards {
        gap: 25px;
        padding: 15px 0;
    }

    .travel-card {
        padding: 1.2rem 1rem;
        width: 95%;
    }

    .travel-signpost {
        font-size: 1.8rem;
        padding: 0.4em 1.5em;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
