/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2A9D8F;
    --primary-dark: #21867A;
    --secondary-color: #E9C46A;
    --dark-color: #264653;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --text-color: #333333;
    --text-light: #6C757D;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== UTILITY CLASSES ===== */
.highlight {
    color: var(--primary-color);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
}

.form-submit-btn{
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 22px 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: var(--transition);
    overflow: visible;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    margin-top: -4px
}

.logo:hover .logo-img {
    transform: rotate(-5deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none !important;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    font-size: 1.05rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 1.5px;
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
    transition: var(--transition);
    background: none;
    border: none;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://travoravoyagers.in/wp-content/uploads/2026/01/Nandi-Hills.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 86px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.8rem;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.scroll-indicator:hover i {
    opacity: 1;
}

/* ===== CAROUSEL ===== */
.featured-section {
    padding: 120px 0;
    background-color: var(--white);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 1000px;
    height: 500px;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    padding: 40px 60px;
    color: var(--white);
    z-index: 2;
}

.slide-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--white);
}

/* ===== HOME PAGE CAROUSEL MOBILE FIX ===== */

@media (max-width: 768px) {
    .featured-section .carousel-container {
        height: 450px;
    }
    
    .featured-section .slide-content {
        bottom: 100px;
        padding: 30px 25px;
    }
    
    .featured-section .slide-content h3 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px; 
    }
    
    .featured-section .slide-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
        opacity: 0.9;
        display: block !important; 
        -webkit-line-clamp: 2; 
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: 3em; 
    }
    
    .featured-section .slide-content .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        margin-top: 10px;
    }
    
    .featured-section .carousel-nav {
        bottom: 25px;
        padding: 0 25px;
    }
    
    .featured-section .carousel-btn {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .featured-section .carousel-container {
        height: 400px;
    }
    
    .featured-section .slide-content {
        bottom: 100px; 
        padding: 25px 20px;
    }
    
    .featured-section .slide-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .featured-section .slide-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
        -webkit-line-clamp: 2; 
        max-height: 2.8em;
    }
    
    .featured-section .slide-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .featured-section .carousel-nav {
        bottom: 20px;
        padding: 0 20px;
    }
    
    .featured-section .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .featured-section .carousel-container {
        height: 380px;
    }
    
    .featured-section .slide-content {
        bottom: 90px; 
        padding: 20px 15px;
    }
    
    .featured-section .slide-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .featured-section .slide-content p {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        max-height: 2.6em;
        margin-bottom: 12px;
    }
    
    .featured-section .slide-content .btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .featured-section .carousel-dots {
        gap: 8px;
    }
    
    .featured-section .dot {
        width: 12px;
        height: 12px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .featured-section .slide-content p {
        -webkit-line-clamp: 3;
        max-height: 4.5em;
    }
}
/* ===== REASONS SECTION ===== */
.why-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0f7f6 100%);
}

.reasons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.reason-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(233, 196, 106, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.reason-card:hover .reason-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.reason-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.reason-card:hover .reason-icon i {
    color: var(--white);
}

.reason-card h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.4rem;
}

.reason-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0f7f6 100%);
    text-align: center;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 15px auto 50px;
    line-height: 1.6;
}

.team-carousel {
    max-width: 900px;
    height: 350px;
    position: relative;
    margin: 0 auto 40px;
    perspective: 1000px;
}

.team-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card {
    position: absolute;
    width: 220px;
    height: 220px;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 1;
}

.team-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.team-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.3) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card.center .team-img::after {
    opacity: 1;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
    border-radius: 50%;
}

.team-card.center {
    z-index: 10;
    transform: scale(1.2);
    box-shadow: 0 20px 40px rgba(42, 157, 143, 0.3);
}

.team-card.center .team-img img {
    transform: scale(1.05);
}

.team-card.left-1 {
    transform: translateX(-200px) scale(0.8);
    opacity: 0.7;
    filter: grayscale(30%) brightness(0.9);
}

.team-card.left-2 {
    transform: translateX(-400px) scale(0.6);
    opacity: 0.5;
    filter: grayscale(50%) brightness(0.8);
}

.team-card.right-1 {
    transform: translateX(200px) scale(0.8);
    opacity: 0.7;
    filter: grayscale(30%) brightness(0.9);
}

.team-card.right-2 {
    transform: translateX(400px) scale(0.6);
    opacity: 0.5;
    filter: grayscale(50%) brightness(0.8);
}

.team-card.hidden {
    opacity: 0;
    pointer-events: none;
}

.team-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.team-left {
    left: -25px;
}

.team-right {
    right: -25px;
}

.team-info {
    text-align: center;
    margin: 30px 0 20px;
    min-height: 110px;
    transition: opacity 0.5s ease;
}

.team-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 5px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.team-position {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.team-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.team-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.team-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-dot:hover {
    background: rgba(42, 157, 143, 0.4);
}

.team-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .team-carousel {
        max-width: 700px;
        height: 300px;
    }
    
    .team-card {
        width: 180px;
        height: 180px;
    }
    
    .team-card.left-1,
    .team-card.right-1 {
        transform: translateX(-160px) scale(0.8);
    }
    
    .team-card.left-2,
    .team-card.right-2 {
        transform: translateX(-320px) scale(0.6);
    }
    
    .team-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }
    
    .team-carousel {
        max-width: 500px;
        height: 250px;
    }
    
    .team-card {
        width: 150px;
        height: 150px;
    }
    
    .team-card.center {
        transform: scale(1.1);
    }
    
    .team-card.left-1,
    .team-card.right-1 {
        transform: translateX(-120px) scale(0.75);
    }
    
    .team-card.left-2,
    .team-card.right-2 {
        transform: translateX(-240px) scale(0.5);
        opacity: 0.3;
    }
    
    .team-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .team-left {
        left: 10px;
    }
    
    .team-right {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .team-carousel {
        max-width: 320px;
        height: 200px;
    }
    
    .team-card {
        width: 120px;
        height: 120px;
    }
    
    .team-card.left-1,
    .team-card.right-1 {
        transform: translateX(-80px) scale(0.7);
    }
    
    .team-card.left-2,
    .team-card.right-2 {
        display: none;
    }
    
    .team-arrow {
        width: 35px;
        height: 35px;
    }
    
    .team-left {
        left: 5px;
    }
    
    .team-right {
        right: 5px;
    }
    
    .team-name {
        font-size: 1.6rem;
    }
    
    .team-position {
        font-size: 1rem;
    }
    
    .team-desc {
        font-size: 0.9rem;
    }
}

/* ===== TEAM CAROUSEL ON MOBILE ===== */

@media (max-width: 768px) {
    .team-carousel {
        max-width: 400px;
        height: 220px;
    }
    
    .team-card {
        width: 140px;
        height: 140px;
    }
    
    .team-card.center {
        transform: scale(1.1);
    }
    
    .team-card.left-1 {
        transform: translateX(-110px) scale(0.8);
        opacity: 0.7;
    }
    
    .team-card.right-1 {
        transform: translateX(110px) scale(0.8);
        opacity: 0.7;
    }
    
    .team-card.left-2,
    .team-card.right-2 {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .team-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .team-left {
        left: 0;
    }
    
    .team-right {
        right: 0;
    }
}

@media (max-width: 480px) {
    .team-carousel {
        max-width: 320px;
        height: 200px;
    }
    
    .team-card {
        width: 120px;
        height: 120px;
    }
    
    .team-card.left-1 {
        transform: translateX(-90px) scale(0.8);
    }
    
    .team-card.right-1 {
        transform: translateX(90px) scale(0.8);
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    background: var(--light-color);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--primary-color);
    font-weight: 500;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://travoravoyagers.in/wp-content/uploads/2026/01/Ooty.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://travoravoyagers.in/wp-content/uploads/2026/01/Nandi-Hills.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
    margin-top: 86px;
    position: relative;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE STYLES ===== */
.story-section {
    padding: 120px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.story-text p {
    margin-bottom: 25px;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.mission-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0f7f6 100%);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(233, 196, 106, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.mission-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.mission-card:hover .mission-icon i {
    color: var(--white);
}

.mission-card h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BLOGS PAGE STYLES ===== */
.categories-section {
    padding: 60px 0;
    background: var(--white);
}

.categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 28px;
    background: var(--light-color);
    border: 2px solid transparent;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.blogs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0f7f6 100%);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 15px;
    color: var(--primary-dark);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.page-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.page-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.page-link.next {
    width: auto;
    padding: 0 25px;
}
.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn-primary {
    padding: 18px 35px;
    font-size: 1.1rem;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius); 
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); 
    color: var(--white);
    font-weight: 600;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2); 
}

.newsletter-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1d7a6e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form .btn-primary {
        width: 100%;
        padding: 16px 20px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .newsletter-form {
        gap: 12px;
    }
    
    .newsletter-form input,
    .newsletter-form .btn-primary {
        padding: 14px 18px;
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}
/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: 120px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(233, 196, 106, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-item:hover .contact-icon i {
    color: var(--white);
}

.contact-item h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.social-contact h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.4rem;
}

.social-contact .social-links {
    display: flex;
    gap: 20px;
}

.social-contact .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-contact .social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form-container {
    background: var(--light-color);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.checkbox-group input {
    width: auto;
    transform: scale(1.2);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: var(--text-color);
}

.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0f7f6 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 30px;
    color: var(--text-light);
    line-height: 1.8;
}


/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a2b3c 0%, #0d1620 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.brand-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo .logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.footer-logo:hover .logo-img {
    transform: translateY(-3px);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
    display: inline-block;
    position: relative;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-link:hover::before {
    left: 0;
    opacity: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 0;
}

.contact-icon {
    width: 30px;
    height: 30px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details p,
.contact-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
}

.contact-link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--white);
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.2s ease;
}

.contact-link:hover::after {
    width: 100%;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1.2fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-newsletter {
        padding: 30px;
        margin: 40px auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form .btn-primary {
        width: 100%;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .reasons, .mission-cards, .blogs-grid, .stats-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 86px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
        gap: 25px;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .carousel-container {
        height: 400px;
    }
    
    .slide-content {
        padding: 40px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .reasons, .mission-cards, .blogs-grid, .stats-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slide-content h3 {
        font-size: 2rem;
    }
    
    .carousel-nav {
        padding: 0 20px;
    }
    
    .categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .category-btn {
        white-space: nowrap;
    }
}



/* ===== NAVBAR MOBILE FIX ===== */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 82px; 
        left: 0;
        width: 100%;
        height: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 0;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        gap: 0;
        overflow: hidden;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        height: auto;
        min-height: calc(100vh - 82px);
        padding: 30px 20px;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::before {
        display: none; 
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 0;
    }
    
    .navbar.scrolled {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav-links {
        top: 72px;
    }
    
    .nav-links.active {
        min-height: calc(100vh - 72px);
    }
}