
/* 
   Chanz Education Website Stylesheet
   Color Scheme:
   --primary-bg-clr: #FFF;
   --secondary-bg-clr: #FFF2E9;
   --secondary-bg-clr2: #F5F5F5;
   --primary-clr: #231F41;
   --primary-clr2: #737373;
   --secondary-clr: #525EE0;
*/

/* ====== GLOBAL STYLES ====== */
:root {
    --primary-bg-clr: #FFF;
    --secondary-bg-clr: #FFF2E9;
    --secondary-bg-clr2: #F5F5F5;
    --primary-clr: #231F41;
    --primary-clr2: #737373;
    --secondary-clr: #525EE0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-clr);
    background-color: var(--primary-bg-clr);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 100px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    color: var(--primary-clr2);
}

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

a {
    text-decoration: none;
    color: var(--secondary-clr);
    transition: all 0.3s ease;
}

a:hover {
    color: #3a46b3;
}

ul {
    list-style: none;
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-block;
    background-color: var(--secondary-clr);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 5px 15px rgba(82, 94, 224, 0.2);
}

.btn:hover {
    background-color: #4450c4;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(82, 94, 224, 0.3);
    color: white;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-clr);
    color: var(--secondary-clr);
}

.btn-outline:hover {
    background-color: var(--secondary-clr);
    color: white;
}

/* ====== SECTION TITLES ====== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--secondary-clr);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

/* ====== HEADER & NAVIGATION ====== */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    padding: 10px 0;
    background-color: var(--primary-bg-clr);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: auto;
}

/* Logo text styles */
.logo-text {
    font-size: 1.8rem;
    color: var(--primary-clr);
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    color: var(--secondary-clr);
}

.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links ul li {
    margin: 0 15px;
}

.nav-links ul li a {
    text-decoration: none;
    color: var(--primary-clr);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--secondary-clr);
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

.nav-links ul li a:hover::after {
    width: 100%;
}

/* Updated Font Awesome icon selectors for mobile menu */
.fas.fa-bars, 
.fas.fa-xmark {
    display: none;
    cursor: pointer;
    color: var(--primary-clr);
    font-size: 24px;
    z-index: 1002; /* Ensure icons are above other elements */
}

/* Ensure the fa-xmark icon is visible and positioned correctly inside the mobile menu */
.nav-links .fas.fa-xmark {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
}

/* ====== HERO SECTION ====== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg');
    background-position: center;
    background-size: cover;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 70px;
}

.hero h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        top: 10px;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

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

/* ====== ABOUT SECTION ====== */
.about {
    background-color: var(--secondary-bg-clr);
}

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

.about-text {
    font-size: 1.1rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(82, 94, 224, 0.1);
    top: 0;
    left: 0;
}

.about-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ====== SERVICES SECTION ====== */
.services {
    background-color: var(--primary-bg-clr);
}

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

.service-card {
    background-color: var(--secondary-bg-clr2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-clr);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 0;
}

/* ====== DESTINATIONS SECTION ====== */
.destinations {
    background-color: var(--secondary-bg-clr);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.destination-card {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.singapore {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/singapore.jpg');
}

.dubai {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/dubai.jpg');
}

.uk {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/uk.jpg');
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: all 0.3s ease;
}

.destination-card:hover .destination-info {
    bottom: 10px;
}

.destination-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.destination-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonials {
    background-color: var(--primary-bg-clr);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    text-align: center;
    padding: 0 50px;
    display: none;
}

.testimonial-slide:first-child {
    display: block;
}

.testimonial-content {
    background-color: var(--secondary-bg-clr2);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--secondary-clr);
    opacity: 0.2;
    font-family: serif;
}

.client-info {
    margin-top: 20px;
}

.client-info h4 {
    margin-bottom: 5px;
    color: var(--secondary-clr);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: var(--secondary-clr);
    transform: scale(1.2);
}

/* ====== CONTACT SECTION ====== */
/* ====== ENHANCED CONTACT FORM STYLES ====== */

/* Contact section improvements */
.contact {
    background-color: var(--secondary-bg-clr);
    position: relative;
}

.contact .section-title p {
    color: var(--primary-clr2);
    max-width: 700px;
    margin: 0 auto 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    background: var(--primary-bg-clr);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Contact info styling */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: var(--secondary-clr);
    color: white;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    color: white;
}

.info-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.info-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
}

.info-item a:hover {
    color: white;
    text-decoration: underline;
}

.office-hours {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.office-hours h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    margin-bottom: 10px;
}

.office-hours p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

/* Contact form styling */
.contact-form {
    padding: 40px;
    background: white;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-clr);
}

.form-intro {
    margin-bottom: 20px;
    color: var(--primary-clr2);
}

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

.form-group {
    margin-bottom: 20px;
    position: relative;
}

/* Form fields styling */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-clr);
}

.required {
    color: #e74c3c;
    margin-left: 3px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-clr);
    outline: none;
    box-shadow: 0 0 8px rgba(82, 94, 224, 0.3);
    background-color: white;
}

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

/* Checkbox styling */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
}

.consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.consent-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Form actions */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.form-actions button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-actions .required-fields {
    font-size: 0.85rem;
    color: var(--primary-clr2);
    margin: 5px 0 0;
}

/* Error and success message styling */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
    display: none;
}

.form-message {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.5s ease;
}

.form-message i {
    font-size: 1.4rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.error-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 5px;
}

.error-list li {
    margin-bottom: 3px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Input validation styling */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #2ecc71;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
        border-radius: 0 0 10px 10px;
    }
    
    .contact-form {
        order: 1;
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width: 576px) {
    .contact-info, .contact-form {
        padding: 25px;
    }
    
    .form-actions {
        align-items: stretch;
    }
    
    .form-actions button {
        width: 100%;
        justify-content: center;
    }
}


/* Continue from where your file was cut off - after the form input styles */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-clr);
    outline: none;
    box-shadow: 0 0 8px rgba(82, 94, 224, 0.3);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23231F41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

/* Form success/error messages */
.form-message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ====== MAP SECTION ====== */
.map-section {
    padding: 0;
    height: 400px;
}

#map {
    width: 100%;
    height: 100%;
}

/* Map info window styling */
.info-window {
    padding: 5px 10px;
    font-family: 'Poppins', sans-serif;
}

.info-window h3 {
    color: var(--primary-clr);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-window p {
    color: var(--primary-clr2);
    margin-bottom: 3px;
    font-size: 0.9rem;
}

/* ====== FOOTER ====== */
/* ====== FOOTER ====== */
footer {
    background-color: var(--primary-clr);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer logo text styles */
.footer-logo {
    max-width: 300px;
}

.footer-logo-text {
    font-size: 1.6rem;
    color: white;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: white;
    font-size: 1.1rem;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--secondary-clr);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

/* Footer contact styles */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-clr);
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

/* Footer social styles */
.footer-social .social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.footer-social .social-icons a:hover {
    background-color: var(--secondary-clr);
    transform: translateY(-3px);
}

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

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

.footer-bottom a {
    color: var(--secondary-clr);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* ====== FOOTER TABLET RESPONSIVE (max-width: 992px) ====== */
@media (max-width: 992px) {
    footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-logo {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
}

/* ====== FOOTER MOBILE RESPONSIVE (max-width: 768px) ====== */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-logo {
        grid-column: span 1;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-logo-text {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .footer-logo p {
        font-size: 0.85rem;
    }
    
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-links {
        order: 1;
    }
    
    .footer-contact {
        order: 2;
    }
    
    .footer-social {
        order: 3;
    }
    
    .footer-links h3,
    .footer-contact h3,
    .footer-social h3 {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .footer-links ul li {
        margin-bottom: 8px;
    }
    
    .footer-links ul li a {
        font-size: 0.9rem;
    }
    
    .footer-links ul li a:hover {
        padding-left: 0;
        color: var(--secondary-clr);
    }
    
    .footer-contact p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .footer-social .social-icons {
        justify-content: center;
        gap: 12px;
    }
    
    .footer-social .social-icons a {
        width: 38px;
        height: 38px;
    }
    
    .footer-bottom {
        margin-top: 20px;
        padding: 15px 10px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* ====== FOOTER SMALL MOBILE (max-width: 576px) ====== */
@media (max-width: 576px) {
    footer {
        padding: 35px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
        padding: 0 10px;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }
    
    .footer-logo p {
        font-size: 0.8rem;
        padding: 0 10px;
    }
    
    .footer-links h3,
    .footer-contact h3,
    .footer-social h3 {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .footer-links ul li {
        margin-bottom: 6px;
    }
    
    .footer-links ul li a {
        font-size: 0.85rem;
    }
    
    .footer-contact p {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .footer-social .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 12px 8px;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* ====== FOOTER EXTRA SMALL DEVICES (max-width: 360px) ====== */
@media (max-width: 360px) {
    .footer-logo-text {
        font-size: 1.2rem;
    }
    
    .footer-social .social-icons {
        gap: 8px;
    }
    
    .footer-social .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* ====== ANIMATIONS ====== */
.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .fas.fa-bars, 
    .fas.fa-xmark {
        display: block;
    }

    .nav-links {
        position: fixed;
        background-color: var(--primary-bg-clr);
        height: 100vh;
        width: 250px; /* Slightly wider for better UX */
        top: 0;
        right: -250px; /* Match the width */
        text-align: left;
        z-index: 1001;
        transition: 0.3s ease; /* Smoother transition */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 50px; /* Give space for the close icon */
    }

    .nav-links ul {
        padding: 30px;
        flex-direction: column;
    }

    .nav-links ul li {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h4 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .service-card, .destination-card {
        height: auto;
        min-height: 250px;
    }

    .destination-card {
        min-height: 250px;
    }

    section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .map-section {
        height: 300px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-content {
        padding: 20px;
    }
}

/* ====== ACCESSIBILITY STYLES ====== */
:focus {
    outline: 3px solid rgba(82, 94, 224, 0.5);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ====== PRINT STYLES ====== */
@media print {
    header, footer, .hero, .map-section, .scroll-indicator {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    section {
        padding: 20px 0;
    }
    
    .container {
        max-width: 100%;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    .about-content, .services-grid, .destinations-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .service-card, .destination-card, .testimonial-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .section-title h2::after {
        background: #000;
    }
}
