/* ========================================
   RESET AND BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fefefe;
}

/* ========================================
   HEADER AND NAVIGATION
   ======================================== */
header {
    background: linear-gradient(135deg, #ffd966 0%, #ffcc5c 50%, #ef9a9a 100%);
    color: #333;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 3px 15px rgba(255, 217, 102, 0.25);
}

/* Translucent header only for index page */
body.index-page header {
    background: transparent;
    color: #fff;
    box-shadow: none;
}

body.index-page header.scrolled {
    background: linear-gradient(135deg, #ffd966 0%, #ffcc5c 50%, #ef9a9a 100%);
    color: #333;
    box-shadow: 0 3px 15px rgba(255, 217, 102, 0.25);
    padding: 0.7rem 0;
}

/* Translucent overlay for index page only */
body.index-page header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

body.index-page header.scrolled::before {
    opacity: 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

body.index-page .logo {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

body.index-page header.scrolled .logo {
    background: transparent;
    backdrop-filter: none;
}

.logo:hover {
    transform: scale(1.03);
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.logo a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

body.index-page .logo a {
    color: #fff;
}

body.index-page header.scrolled .logo a {
    color: #333;
}

nav a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

body.index-page nav a {
    color: #fff;
}

body.index-page header.scrolled nav a {
    color: #333;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd966 0%, #ef9a9a 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: #e57373;
}

body.index-page nav a.active {
    color: #ffd966;
}

body.index-page header.scrolled nav a.active {
    color: #e57373;
}

nav a.active::after {
    width: 100%;
}

nav ul {
    list-style: none;
    display: block;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #ffd966 0%, #ffcc5c 50%, #ef9a9a 100%);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 130px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 8px;
}

body.index-page .dropdown-menu {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

body.index-page header.scrolled .dropdown-menu {
    background: linear-gradient(135deg, #ffd966 0%, #ffcc5c 50%, #ef9a9a 100%);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.index-page .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.index-page header.scrolled .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: #333;
    text-decoration: none;
}

body.index-page .dropdown-menu a {
    color: #fff;
}

body.index-page header.scrolled .dropdown-menu a {
    color: #333;
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
}

body.index-page .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.index-page header.scrolled .dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s;
}

body.index-page .hamburger {
    color: #fff;
}

body.index-page header.scrolled .hamburger {
    color: #333;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger:focus {
    outline: 2px solid #e57373;
    outline-offset: 4px;
}

/* ========================================
   HERO CAROUSEL
   ======================================== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}
.hero-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;  /* ← Change this to adjust fade height */
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 249, 240, 0.3) 40%, 
        rgba(255, 249, 240, 0.8) 70%, 
        #fff9f0 100%);
    pointer-events: none;
    z-index: 5;
}
.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0056b3;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.5);
}

.carousel-btn.prev { 
    left: 20px; 
}

.carousel-btn.next { 
    right: 20px; 
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot:hover,
.dot.active {
    background: white;
}

/* ========================================
   PAGE HERO (Subpages)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, #ffd966 0%, #ffcc5c 50%, #ef9a9a 100%);
    color: #333;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(229, 115, 115, 0.1) 0%, transparent 60%);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.06);
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.85;
    position: relative;
    z-index: 1;
    color: #444;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, #ef9a9a 0%, #e57373 50%, #ffd966 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(229, 115, 115, 0.3);
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(229, 115, 115, 0.4);
    background: linear-gradient(135deg, #ffd966 0%, #ef9a9a 50%, #e57373 100%);
}

.btn:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #ffd966;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid #ffd966;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-secondary:hover {
    background: #ffd966;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 217, 102, 0.3);
}

.center-btn {
    text-align: center;
    margin-top: 2.5rem;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* ========================================
   SECTION TITLE
   ======================================== */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #ffd966;
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffd966 0%, #ffcc5c 33%, #ef9a9a 66%, #e57373 100%);
    border-radius: 10px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: linear-gradient(135deg, #fff9f0 0%, #fffef8 100%);
    position: relative;
    padding-bottom: 10rem;
}
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 217, 102, 0.2) 40%, 
        rgba(255, 217, 102, 0.6) 70%, 
        #ffd966 100%);
    pointer-events: none;
    z-index: 1;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #ffd966;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    margin-top: 1.5rem;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.about-image {
    background: linear-gradient(135deg, #ffd966 0%, #ffcc5c 33%, #ef9a9a 100%);
    border-radius: 25px;
    padding: 3.5rem;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
    box-shadow: 0 12px 35px rgba(255, 217, 102, 0.2);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(255, 217, 102, 0.25);
}

.about-image h4 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-image ul {
    list-style: none;
    padding-left: 0;
}

.about-image li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.about-image li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e57373;
    font-weight: bold;
    font-size: 1.3rem;
}

/* About Detailed Page */
.about-detailed {
    max-width: 950px;
    margin: 0 auto;
}

.about-detailed h2 {
    color: #ffd966;
    font-size: 2.2rem;
    margin: 2.5rem 0 1.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid #fff9f0;
    font-weight: 700;
}

.about-detailed h2:first-child {
    border-top: none;
    padding-top: 0;
}

.about-detailed ul {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 2;
}

.about-detailed li {
    margin-bottom: 0.8rem;
    color: #555;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.principle-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid #e57373;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #ffd966;
}

.principle-card h3 {
    color: #ffd966;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.principle-card p {
    color: #555;
    line-height: 1.7;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border-top: 3px solid #e57373;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd966 0%, #ef9a9a 50%, #e57373 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 217, 102, 0.12);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: #ffd966;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* ========================================
   ACTIVITIES SECTION
   ======================================== */
.activities {
    background: linear-gradient(135deg, #fff9f0 0%, #fffef8 100%);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.activity-item {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.activity-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 217, 102, 0.12);
}

.activity-header {
    background: linear-gradient(135deg, #ffd966 0%, #ffcc5c 50%, #ef9a9a 100%);
    color: #333;
    padding: 2.5rem;
    text-align: center;
    font-size: 3.5rem;
    position: relative;
}

.activity-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e57373;
    border-radius: 2px;
}

.activity-body {
    padding: 2rem;
}

.activity-body h4 {
    color: #ffd966;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.activity-body p {
    color: #666;
    line-height: 1.7;
}

.activity-details {
    margin-bottom: 3.5rem;
}

.activity-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 2.5rem;
    align-items: start;
    border-left: 4px solid #e57373;
    transition: all 0.3s ease;
}

.activity-detail-card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.activity-detail-card .activity-icon {
    font-size: 4.5rem;
    min-width: 90px;
}

.activity-detail-card h3 {
    color: #ffd966;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.activity-detail-card p {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.projects-list {
    display: grid;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.project-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ffd966;
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #e57373;
}

.project-item h3 {
    color: #ffd966;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.project-item p {
    color: #666;
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, #ffd966 0%, #ffcc5c 33%, #ef9a9a 100%);
    color: #333;
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 12px 40px rgba(255, 217, 102, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 115, 115, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0; 
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    color: #444;
}
.cta-section .btn {
    position: relative;
    z-index: 1;          
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: #ffd966;
    color: #333;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(229, 115, 115, 0.08) 0%, transparent 50%);
}

.contact .section-title {
    color: #333;
}

.contact .section-title::after {
    background: linear-gradient(90deg, #ffd966 0%, #ef9a9a 50%, #e57373 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2.2rem;
    min-width: 45px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-full h2,
.contact-form-full h2 {
    color: #ffd966;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 2rem;
    padding: 1.8rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 3px solid #e57373;
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #ffd966;
}

.contact-method .contact-icon {
    font-size: 2.8rem;
    min-width: 55px;
}

.contact-method h3 {
    color: #ffd966;
    margin-bottom: 0.7rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-method p {
    margin: 0.5rem 0;
    color: #555;
}

.contact-method a {
    color: #e57373;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #ffd966;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #888 !important;
    font-style: italic;
}

.social-link {
    margin: 0 0.7rem;
}

.contact-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #e57373;
}

.ubi {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ubi:hover {
    color: #ffd966;
}

/* ========================================
   FORMS
   ======================================== */
.contact-form {
    background: rgba(255, 255, 255, 0.3);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: inherit;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e57373;
    box-shadow: 0 0 0 3px rgba(229, 115, 115, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: start;
}

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
    cursor: pointer;
    accent-color: #e57373;
}

.checkbox-group a {
    color: #e57373;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-group a:hover {
    color: #ffd966;
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 0.95rem;
    margin-top: 1.2rem;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* ========================================
   INSCRIPTION PAGE
   ======================================== */
.inscription-info {
    max-width: 1100px;
    margin: 0 auto;
}

.inscription-info h2 {
    color: #ffd966;
    font-size: 2.3rem;
    margin: 3.5rem 0 2rem;
    font-weight: 700;
}

.inscription-info h2:first-child {
    margin-top: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin: 2.5rem 0 3.5rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border-top: 3px solid #e57373;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 217, 102, 0.12);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd966 0%, #ef9a9a 100%);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 18px rgba(255, 217, 102, 0.25);
}

.step-card h3 {
    color: #ffd966;
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-size: 1.4rem;
}

.step-card p {
    color: #666;
    line-height: 1.7;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0 3.5rem;

}

.section-card {
    background: linear-gradient(135deg, #fff9f0 0%, white 100%);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #e57373;
    
}

.section-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(229, 115, 115, 0.12);
    border-color: #ffd966;
}

.section-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}

.section-card h3 {
    color: #ffd966;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.section-card .age {
    color: #e57373;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.section-card p:last-child {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 2.5rem 0 3.5rem;
}

.price-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
    border-top: 4px solid #e57373;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
    color: #ffd966;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    color: #ffd966;
    font-weight: 800;
    margin: 1.5rem 0;
}

.price-includes {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 2rem 0;
}

.price-includes li {
    padding: 0.8rem 0;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.price-note {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
    margin-top: 1.5rem;
    line-height: 1.5;
}

.help-info {
    background: linear-gradient(135deg, #ffd966 0%, #ffcc5c 50%, #ef9a9a 100%);
    color: #333;
    padding: 3rem;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 217, 102, 0.2);
}

.help-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    font-weight: 700;
}

.help-info p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.inscription-form-section {
    max-width: 850px;
    margin: 4rem auto;
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #e57373;
}

.inscription-form-section h2 {
    color: #ffd966;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.inscription-form h3 {
    color: #ffd966;
    font-size: 1.5rem;
    margin: 2.5rem 0 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #fff9f0;
    font-weight: 700;
}

.inscription-form h3:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    max-width: 950px;
    margin: 5rem auto;
}

.faq-section h2 {
    color: #ffd966;
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    background: linear-gradient(135deg, #fff9f0 0%, white 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #e57373;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-left-color: #ffd966;
}

.faq-item h3 {
    color: #ffd966;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

.contact-cta {
    background: linear-gradient(135deg, #ffd966 0%, #ffcc5c 33%, #ef9a9a 100%);
    color: #333;
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    margin: 4rem auto;
    max-width: 850px;
    box-shadow: 0 12px 40px rgba(255, 217, 102, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 115, 115, 0.08) 0%, transparent 70%);
    position: relative;
    z-index: 0;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    color: #444;
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.map-section a {
    color: #e57373;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.map-section a:hover {
    color: #ffd966;
    text-decoration: underline;
}

.map-section h2 {
    color: #ffd966;
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.map-info {
    background: linear-gradient(135deg, #fff9f0 0%, white 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border-left: 4px solid #ffd966;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.map-info:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.map-info p {
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.map-info ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.map-info ul li {
    padding: 0.8rem 0;
    color: #666;
    font-size: 1.05rem;
}

.map-embed {
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.map-embed:hover {
    box-shadow: 0 18px 50px rgba(255, 217, 102, 0.15);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

footer p {
    opacity: 0.9;
}

.footer-links {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.footer-links a {
    color: #e57373;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.footer-links a:hover {
    color: #ffd966;
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        position: relative;
    }

    .hamburger {
        display: block;
        order: 2;
        margin-left: auto;
    }

    .logo {
        order: 1;
    }

    .logo img {
        height: 55px;
    }

    nav ul {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0;
        text-align: center;
        background: linear-gradient(135deg, #ffcc5c 0%, #ffb84d 100%);
        padding: 1.5rem 0;
        margin-top: 1rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

    body.index-page nav ul {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
    }

    body.index-page header.scrolled nav ul {
        background: linear-gradient(135deg, #ffcc5c 0%, #ffb84d 100%);
    }

    nav ul li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 1rem 0;
    }

    body.index-page nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.index-page header.scrolled nav ul li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 0.7rem 1.5rem;
    }

    nav a.active {
        background: rgba(229, 115, 115, 0.12);
        border-bottom: none;
        border-left: 4px solid #e57373;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .about-content,
    .contact-content,
    .contact-page-grid,
    .pricing-info {
        grid-template-columns: 1fr;
    }

    .values,
    .activity-grid,
    .sections-grid,
    .steps-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .activity-detail-card {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .container {
        padding: 3rem 1.5rem;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .map-embed {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .inscription-form-section {
        padding: 2.5rem 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .map-embed {
        height: 300px;
    }
}