/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(34,197,94,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.logo {
    text-align: center;
}

.logo h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
}

.tagline {
    color: #f0f8ff;
    font-size: 0.9rem;
    font-style: italic;
    display: block;
    margin-top: -5px;
    text-align: center;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
    color: #f0f8ff;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
    min-height: 600px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220,38,38,0.8) 0%, rgba(185,28,28,0.8) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
    box-shadow: 0 5px 15px rgba(34,197,94,0.3);
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 15px;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #22c55e;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.urgency-banner {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    margin-top: 2rem;
    font-weight: bold;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 5px 20px rgba(34,197,94,0.3); }
    to { box-shadow: 0 10px 30px rgba(34,197,94,0.6); }
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.license-info {
    background: rgba(255,255,255,0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(34,197,94,0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn.primary {
    background: #22c55e;
    color: white;
}

.btn.pulse {
    animation: pulse-btn 1.5s ease-in-out infinite;
}

@keyframes pulse-btn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn.full-width {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.enroll-nav {
    background: linear-gradient(45deg, #22c55e, #16a34a) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 0.5rem 1rem !important;
    animation: pulse-nav 2s ease-in-out infinite !important;
}

@keyframes pulse-nav {
    0%, 100% { box-shadow: 0 0 10px rgba(34,197,94,0.3); }
    50% { box-shadow: 0 0 20px rgba(34,197,94,0.6); }
}

.btn.primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34,197,94,0.3);
}

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

.btn.secondary:hover {
    background: white;
    color: #dc2626;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: url('memories/FB_IMG_1755645201527.jpg') center/cover;
    border-radius: 50%;
    opacity: 0.05;
    transform: rotate(20deg);
    z-index: 0;
    border: 4px solid rgba(34,197,94,0.1);
}

.about .container {
    position: relative;
    z-index: 1;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #dc2626;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.feature-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.feature-item:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-item h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #4a5568;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: url('memories/FB_IMG_1755645340757.jpg') center/cover;
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(15deg);
    z-index: 0;
    border: 3px solid rgba(34,197,94,0.2);
}

.services::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: url('memories/FB_IMG_1755645103280.jpg') center/cover;
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(-15deg);
    z-index: 0;
    border: 3px solid rgba(220,38,38,0.2);
}

.services .container {
    position: relative;
    z-index: 1;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

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

.service-card {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220,38,38,0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    border-radius: 20px;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220,38,38,0.4);
}

.service-card:hover .service-image {
    opacity: 0.25;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(45deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #22c55e;
}

.modal-caption {
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Why CORE Section */
.why-core {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-core h2 {
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.core-advantage {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #22c55e;
    transition: all 0.3s ease;
}

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

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vs-others {
    margin-top: 1rem;
    padding: 0.5rem;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #dc2626;
    color: white;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    height: 300px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial.active {
    opacity: 1;
}

.testimonial-content {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: white;
}

/* Enrollment CTA Section */
.enrollment-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.enrollment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.enrollment-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.enrollment-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-icon {
    font-size: 1.5rem;
}

.urgency-text {
    background: rgba(220,38,38,0.9);
    padding: 1rem;
    border-radius: 15px;
    font-weight: bold;
    margin-top: 2rem;
    animation: urgency-pulse 2s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.spots-left {
    color: #fbbf24;
    font-size: 1.2rem;
}

.enrollment-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    color: #333;
}

.enrollment-form h3 {
    color: #dc2626;
    margin-bottom: 2rem;
    text-align: center;
}

.enrollment-form input,
.enrollment-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
}

.form-guarantee {
    text-align: center;
    margin-top: 1rem;
    color: #22c55e;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Virtual Tour Section */
.virtual-tour {
    padding: 100px 0;
    background: #f8fafc;
}

.tour-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

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

.tour-stop {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.tour-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tour-btn {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.tour-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220,38,38,0.3);
}

/* Tour Scheduling Section */
.tour-scheduling {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tour-scheduling h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.tour-scheduling-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.tour-benefits h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.tour-benefit-list {
    margin-bottom: 2rem;
}

.tour-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tour-benefit:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.tour-benefit .benefit-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.tour-guarantee {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34,197,94,0.3);
}

.tour-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #dc2626;
}

.tour-form h3 {
    color: #dc2626;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

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

.tour-form input,
.tour-form select,
.tour-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.tour-form input:focus,
.tour-form select:focus,
.tour-form textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.tour-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    margin-bottom: 1rem;
}

.tour-contact-info {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.tour-contact-info a {
    color: #dc2626;
    text-decoration: none;
    font-weight: bold;
}

.tour-contact-info a:hover {
    color: #b91c1c;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

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

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

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.contact-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-item h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #4a5568;
    font-size: 1.1rem;
}

.contact-item a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #b91c1c;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

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

/* Footer */
footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #22c55e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.facebook-link {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.facebook-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.facebook-link:hover .facebook-icon {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .enrollment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .tour-scheduling-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .enrollment-form {
        padding: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .urgency-banner {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .service-card,
    .contact-form,
    .feature-item,
    .contact-item {
        padding: 1.5rem;
    }
}

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

/* Floating Elements */
.floating-image {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.floating-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: url('memories/FB_IMG_1755645340757.jpg') center/cover;
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(34,197,94,0.3);
}

.floating-2 {
    top: 60%;
    right: 8%;
    width: 60px;
    height: 60px;
    background: url('memories/FB_IMG_1755645103280.jpg') center/cover;
    animation: float 8s ease-in-out infinite reverse;
    border: 2px solid rgba(220,38,38,0.3);
}

.floating-3 {
    bottom: 20%;
    left: 10%;
    width: 70px;
    height: 70px;
    background: url('memories/FB_IMG_1755645247333.jpg') center/cover;
    animation: float 7s ease-in-out infinite;
    border: 2px solid rgba(34,197,94,0.3);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

/* Pulse animation for license info */
.license-info {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}