:root {
    --primary-green: #2E7D32;
    --light-green: #4CAF50;
    --bright-green: #8BC34A;
    --warm-yellow: #FFC107;
    --gold-yellow: #FFB300;
    --soft-yellow: #FFF9C4;
    --cream: #FFFDE7;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --dark-text: #333333;
    --medium-text: #555555;
    --border-color: #E0E0E0;
    --whatsapp-green: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--dark-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Fredoka One', cursive;
    font-weight: normal;
    color: var(--primary-green);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    background-color: rgba(46, 125, 50, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 150px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-yellow), var(--gold-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 3px solid white;
    padding: 5px;
}

.logo-img img {
    width: 100%;
    height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-text h1 {
    color: white;
    font-size: 1.7rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

.logo-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--warm-yellow), var(--gold-yellow));
    border-radius: 25px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.nav-list a:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

.nav-list a:hover::before {
    transform: scaleX(1);
}

.nav-list a.active {
    background: linear-gradient(135deg, var(--warm-yellow), var(--gold-yellow));
    color: var(--primary-green);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.nav-list a.active:hover {
    transform: translateY(0);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--whatsapp-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid white;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.whatsapp-btn:active {
    transform: translateY(-1px);
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover::after {
    transform: scale(1);
}

.whatsapp-text {
    display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.floating-whatsapp .whatsapp-btn {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(76, 175, 80, 0.9)), url('../images/pic1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 0 var(--primary-green);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.hero-slogan {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 25px 0;
    color: var(--warm-yellow);
    text-shadow: 1px 1px 0 var(--primary-green);
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--warm-yellow), var(--gold-yellow));
    color: var(--primary-green);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 var(--light-green);
    border: 2px solid transparent;
    margin: 10px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 var(--light-green);
}

.btn-secondary {
    background: white;
    color: var(--primary-green);
    box-shadow: 0 4px 0 var(--warm-yellow);
}

.btn-secondary:hover {
    box-shadow: 0 6px 0 var(--warm-yellow);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    box-shadow: 0 4px 0 #1da851;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
}

.btn-whatsapp:hover {
    background: #1da851;
    box-shadow: 0 6px 0 #1a9548;
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-green);
    font-size: 2.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: linear-gradient(to right, var(--warm-yellow), var(--gold-yellow));
    margin: 15px auto;
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-text);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* About Section Styles */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--medium-text);
}

.contact-info-box {
    background: linear-gradient(135deg, var(--soft-yellow), var(--light-gray));
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--bright-green);
    margin-top: 30px;
}

.contact-info-box h4 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.contact-info-box p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-box i {
    color: var(--bright-green);
    width: 20px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 15px 15px 0 var(--bright-green);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Vision Mission Section */
.vision-mission {
    background: linear-gradient(135deg, var(--light-green), var(--bright-green));
    color: white;
}

.vision-mission .section-title {
    color: white;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.vision-card, .mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-card h3, .mission-card h3 {
    color: var(--warm-yellow);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vision-card h3 i, .mission-card h3 i {
    font-size: 2rem;
}

/* Philosophy Section */
.philosophy {
    background-color: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 5px solid var(--bright-green);
}

.philosophy-card:hover {
    transform: translateY(-10px);
}

.philosophy-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.philosophy-card h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Programs Section */
.programs {
    background: linear-gradient(135deg, var(--light-gray), var(--soft-yellow));
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.program-header {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 25px;
    text-align: center;
}

.program-header h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.age-badge {
    background: var(--warm-yellow);
    color: var(--primary-green);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-top: 10px;
}

.program-content {
    padding: 25px;
}

.program-content p {
    margin-bottom: 15px;
    color: var(--medium-text);
}

.program-features {
    list-style: none;
    margin-top: 20px;
}

.program-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-features li i {
    color: var(--bright-green);
}

/* Daily Schedule Section */
.schedule {
    background-color: var(--white);
}

.schedule-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.schedule-header {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 20px;
    text-align: center;
}

.schedule-header h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.schedule-item {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.schedule-item:nth-child(odd) {
    background-color: var(--soft-yellow);
}

.time-badge {
    background: var(--warm-yellow);
    color: var(--primary-green);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.schedule-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* Health Safety Section */
.health-safety {
    background: linear-gradient(135deg, var(--light-green), var(--bright-green));
    color: white;
}

.health-safety .section-title {
    color: white;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.safety-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.safety-icon {
    font-size: 3rem;
    color: var(--warm-yellow);
    margin-bottom: 20px;
}

.safety-card h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Enrollment Section */
.enrollment {
    background-color: var(--white);
}

.enrollment-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    position: relative;
    border-top: 5px solid var(--bright-green);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h4 {
    margin: 20px 0 15px;
    font-size: 1.3rem;
}

/* Fees Section */
.fees {
    background: linear-gradient(135deg, var(--light-gray), var(--soft-yellow));
}

.fees-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.fees-table th {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.fees-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.fees-table tr:nth-child(even) {
    background-color: var(--soft-yellow);
}

.fees-table tr:hover {
    background-color: var(--light-gray);
}

.highlight {
    color: var(--primary-green);
    font-weight: 600;
}

/* Parent Involvement Section */
.parent-involvement {
    background-color: var(--white);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.involvement-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--warm-yellow);
}

.involvement-card h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.involvement-card h4 i {
    color: var(--bright-green);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    color: var(--warm-yellow);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-detail i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--warm-yellow);
    width: 30px;
}

.hours {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hours h4 {
    margin-bottom: 15px;
    color: var(--warm-yellow);
    font-size: 1.3rem;
}

.hours ul {
    list-style: none;
}

.hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    height: 100%;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* WhatsApp Contact Section */
.whatsapp-contact {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 15px;
    border-left: 5px solid var(--whatsapp-green);
}

.whatsapp-contact h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.whatsapp-contact p {
    margin-bottom: 20px;
    color: var(--medium-text);
}

/* Gallery Section */
.gallery {
    background-color: var(--white);
    padding: 80px 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--warm-yellow);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav-btn:hover {
    background: var(--warm-yellow);
    color: var(--primary-green);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    padding: 10px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--warm-yellow);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-column p, .footer-column a {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--warm-yellow);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--warm-yellow);
    transform: translateY(-5px);
    color: var(--primary-green);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Handbook Notice */
.handbook-notice {
    background: linear-gradient(135deg, var(--warm-yellow), var(--gold-yellow));
    color: var(--primary-green);
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    border-radius: 10px;
    font-weight: 600;
}

.handbook-notice a {
    color: var(--primary-green);
    text-decoration: underline;
    font-weight: 700;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .about-content, .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .nav-list {
        gap: 5px;
    }
    
    .nav-list a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .whatsapp-btn.desktop {
        display: none;
    }
    
    .floating-whatsapp {
        display: block;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        order: 3;
    }
    
    .logo {
        order: 1;
    }
    
    nav {
        order: 2;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-green), var(--light-green));
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .nav-list a {
        padding: 15px 20px;
        font-size: 1.1rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-list a:hover {
        background: linear-gradient(135deg, var(--warm-yellow), var(--gold-yellow));
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-slogan {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .whatsapp-btn.desktop {
        display: none;
    }
    
    .floating-whatsapp {
        display: block;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 5px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
}
