/* ===================================
   Global Styles & Variables
   =================================== */

:root {
    --primary-color: #2C7873;
    --secondary-color: #62BA96;
    --accent-color: #FF6B6B;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --text-dark: #333333;
    --text-light: #666666;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    --accent-font: 'Caveat', cursive;
}

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

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-family: var(--accent-font);
}

/* ===================================
   Cookie Banner
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d2d44 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand .brand-text {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: white;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}
/* ===================================
   Hero Section
   =================================== */

.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(44,120,115,0.8) 0%, rgba(26,26,46,0.9) 100%),
                url('../images/banner.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(98,186,150,0.2) 0%, transparent 50%);
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-family: var(--accent-font);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-hero-primary:hover {
    background: #4fa883;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(98,186,150,0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* ===================================
   Interactive Map Section
   =================================== */

.map-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.interactive-map {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-container {
    position: relative;
}

#mapSVG {
    width: 100%;
    height: auto;
}

.province {
    cursor: pointer;
    transition: all 0.3s ease;
    stroke: #fff;
    stroke-width: 2;
}

.province:hover {
    opacity: 1 !important;
    filter: brightness(1.2);
    transform: scale(1.05);
    transform-origin: center;
}

.map-tooltip {
    position: absolute;
    background: var(--dark-color);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.map-tooltip.active {
    opacity: 1;
}

.map-legend {
    text-align: center;
}

.map-legend h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.legend-item {
    color: var(--text-light);
    font-size: 0.9rem;
}

.legend-item i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* ===================================
   Destinations Section
   =================================== */

.destinations-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    position: relative;
    overflow: hidden;
}

.destination-bg-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.destination-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    background: white;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.destination-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destination-overlay p {
    font-family: var(--accent-font);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.btn-explore {
    background: var(--secondary-color);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
}

.btn-explore:hover {
    background: #4fa883;
    color: white;
}

.destination-info {
    padding: 20px;
}

.destination-tag {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 10px;
}

.destination-info h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

/* ===================================
   Featured Service Section
   =================================== */

.featured-service-section {
    background: white;
    padding: 120px 0;
}

.service-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.service-image-wrapper img {
    width: 100%;
    border-radius: 20px;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

.service-content {
    padding-left: 40px;
}

.service-category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.service-title {
    font-size: 3.5rem;
    margin: 1rem 0;
    color: var(--dark-color);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-display {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 20px 40px;
    border-radius: 15px;
    color: white;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-book-now {
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,107,0.3);
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-decoration-left,
.testimonial-decoration-right {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.testimonial-decoration-left {
    top: -200px;
    left: -200px;
}

.testimonial-decoration-right {
    bottom: -200px;
    right: -200px;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: white;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    margin: 0 auto;
    max-width: 700px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
}

.testimonial-author h5 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.testimonial-author p {
    color: var(--text-light);
    margin: 0;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.2rem;
    margin-right: 5px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

/* ===================================
   Seasonal Offers Section
   =================================== */

.seasonal-offers-section {
    background: #f8f9fa;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.offer-card.winter::before {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.offer-card.spring::before {
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
}

.offer-card.summer::before {
    background: linear-gradient(90deg, #fa709a 0%, #fee140 100%);
}

.offer-card.fall::before {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.offer-season {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.offer-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.offer-card.winter .offer-icon {
    color: #4facfe;
}

.offer-card.spring .offer-icon {
    color: #43e97b;
}

.offer-card.summer .offer-icon {
    color: #fa709a;
}

.offer-card.fall .offer-icon {
    color: #f093fb;
}

.offer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.offer-pricing {
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 10px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.offer-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.offer-discount {
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===================================
   Fun Facts Section
   =================================== */

.fun-facts-section {
    background: linear-gradient(135deg, #2C7873 0%, #1A1A2E 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.facts-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(98,186,150,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.fun-facts-section .section-title,
.fun-facts-section .section-subtitle {
    color: white;
}

.fact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.fact-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
    border-color: rgba(98,186,150,0.5);
}

.fact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.fact-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.fact-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===================================
   Quiz Section
   =================================== */

.quiz-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.quiz-container {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.quiz-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.quiz-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
}

.quiz-question h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quiz-option {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    padding: 30px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.quiz-option:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44,120,115,0.3);
}

.quiz-option i {
    font-size: 2.5rem;
}

.quiz-result {
    text-align: center;
}

.result-content {
    padding: 40px;
}

.result-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.result-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* ===================================
   Blog Section
   =================================== */

.blog-section {
    background: white;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--secondary-color);
    gap: 15px;
}

/* ===================================
   Newsletter Section
   =================================== */

.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-decoration {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-container {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
}

.newsletter-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.newsletter-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.newsletter-form .input-group {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 18px 30px;
    font-size: 1rem;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.btn-newsletter {
    background: var(--secondary-color);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: var(--primary-color);
}

.form-feedback {
    margin-top: 15px;
    font-size: 0.95rem;
}

.form-feedback.success {
    color: #28a745;
}

.form-feedback.error {
    color: #dc3545;
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: linear-gradient(135deg, #1A1A2E 0%, #0f0f1e 100%);
    color: white;
    padding: 80px 0 30px;
}

.footer-brand h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-bottom i {
    color: var(--accent-color);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .service-title {
        font-size: 2.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .quiz-container,
    .newsletter-container {
        padding: 30px 20px;
    }
    
    .quiz-title,
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   About Page Styles
   =================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 180px 0 100px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-family: var(--accent-font);
}

.timeline-section {
    background: white;
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    top: 50px;
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--secondary-color);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.timeline-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--secondary-color);
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.values-section {
    background: white;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-section {
    background: white;
    padding: 100px 0;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    opacity: 0.95;
}

.contact-form-card {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
}

.contact-form-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: block;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(98,186,150,0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44,120,115,0.3);
}

.map-container-section {
    padding: 0;
}

.map-embed {
    width: 100%;
    height: 450px;
    border: none;
}

/* ===================================
   Policy Pages Styles
   =================================== */

.policy-content {
    background: white;
    padding: 80px 0;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-container h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.policy-container h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-container p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.policy-container ul,
.policy-container ol {
    margin-bottom: 1.5rem;
    padding-left: 30px;
}

.policy-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.policy-container strong {
    color: var(--dark-color);
    font-weight: 600;
}

.policy-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 10px;
    margin: 2rem 0;
}

.policy-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}