:root {
    /* Vibrantly Colorful Palette */
    --primary: #FF5E5B;      /* Coral Red */
    --secondary: #00CECB;    /* Vibrant Teal */
    --accent: #FFED66;       /* Bright Yellow */
    --purple: #8338EC;       /* Deep Purple */
    --blue: #3A86FF;         /* Bright Blue */
    
    --text-dark: #2B2D42;
    --text-muted: #6B7280;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    height: 80px;
    animation: loaderPulse 1.5s ease-in-out infinite alternate;
}

.loader-progress {
    width: 60px;
    height: 4px;
    background: var(--bg-light);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.loader-progress::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--primary);
    border-radius: 4px;
    animation: loaderSlide 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes loaderPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes loaderSlide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Top Bar */
.top-bar {
    background-color: var(--text-dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

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

.social-info a {
    color: var(--white);
    margin-left: 15px;
    font-size: 0.9rem;
}

.social-info a:hover {
    color: var(--primary);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    border-top: 3px solid var(--secondary);
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-weight: 500;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--secondary);
}

/* Phone Call Action */
.phone-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 8px 20px 8px 8px;
    border-radius: 50px;
}

.icon-circle {
    width: 40px; height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.call-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.call-text strong {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 94, 91, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 94, 91, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 94, 91, 0); }
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 130px);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.05); /* Avoid jagged edges from lazy loads */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(43, 45, 66, 0.9) 0%, rgba(43, 45, 66, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 20px;
}

.text-highlight {
    color: var(--accent);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    cursor: pointer;
    display: inline-block;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(255, 94, 91, 0.3);
}

.btn-primary:hover {
    background-color: #E04E4B;
    transform: translateY(-3px);
    color: white;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Abstract Shapes */
.shape {
    position: absolute;
    z-index: -1;
    opacity: 0.5;
}
.shape-1 {
    bottom: -50px; right: 10%;
    width: 200px; height: 200px;
    background: var(--blue);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s infinite alternate;
    filter: blur(30px);
}
.shape-2 {
    top: 20%; left: -50px;
    width: 300px; height: 300px;
    background: var(--purple);
    border-radius: 50%;
    filter: blur(50px);
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

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

/* Features section */
.features {
    padding: 0; /* Placed over hero slightly */
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 5px solid transparent;
}

.feature-color-1 { border-bottom-color: var(--primary); }
.feature-color-2 { border-bottom-color: var(--secondary); }
.feature-color-3 { border-bottom-color: var(--purple); }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.feature-color-1 .feature-icon { color: var(--primary); }
.feature-color-2 .feature-icon { color: var(--secondary); }
.feature-color-3 .feature-icon { color: var(--purple); }

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Shared Titles */
.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* About Section */
.about {
    padding: 100px 0;
}

.about-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.img-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.img-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--secondary);
    opacity: 0.2;
    z-index: 1;
}

.img-box img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    width: 160px; height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255, 94, 91, 0.4);
    border: 8px solid var(--white);
    z-index: 2;
    animation: pulse 3s infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.experience-badge .text {
    font-weight: 600;
    font-size: 0.9rem;
}

.about-content {
    flex: 1;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 15px;
}

.about-points {
    margin: 30px 0;
}

.point {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.point i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 5px;
}

.point h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

/* Staff Section */
.staff {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.staff-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 20px 50px; /* added horizontal padding for the arrows */
    overflow: hidden;
}

.staff-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 45px; height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary);
    z-index: 10;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.prev-btn, .values-prev-btn { left: 0; }
.next-btn, .values-next-btn { right: 0; }

.staff-card {
    min-width: calc((100% - 60px) / 3); /* 3 cards visible with 30px gap */
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    padding-bottom: 25px;
    transition: var(--transition);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.staff-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.staff-card h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.staff-card p {
    color: var(--primary);
    font-weight: 500;
}

/* Values Section */
.values {
    background-color: var(--white);
    padding: 100px 0;
}

.values-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.values-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 20px 50px;
    overflow: hidden;
}

.values-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.value-item {
    min-width: calc((100% - 60px) / 3);
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.value-icon-1 { background: linear-gradient(135deg, #FFB75E, #ED8F03); }
.value-icon-2 { background: linear-gradient(135deg, #FF5E5B, #D33F3C); }
.value-icon-3 { background: linear-gradient(135deg, #00CECB, #009391); }
.value-icon-4 { background: linear-gradient(135deg, var(--purple), #6b21a8); }
.value-icon-5 { background: linear-gradient(135deg, #FF6B6B, #C23030); }

.value-item h3 {
    margin-bottom: 15px;
}

/* Time Table */
.timetable {
    padding: 75px 0 100px;
    background-color: var(--white);
}

.timetable-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.timetable-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timetable-row {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50px;
    padding: 15px 15px 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timetable-row:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 94, 91, 0.3);
}

.row-class {
    display: flex;
    align-items: center;
    gap: 20px;
}

.class-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), #FF7B79);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.class-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.row-time {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 600;
}

.row-time i {
    color: var(--primary);
}

/* CTA */
.cta {
    position: relative;
    padding: 100px 0;
    background: url('assets/img/cta-bg.jpg') center/cover fixed;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--blue);
    opacity: 0.9;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
}

.brand-widget p {
    margin-bottom: 25px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-widget h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 3px;
    background: var(--secondary);
}

.links-widget ul li {
    margin-bottom: 12px;
}

.links-widget ul a {
    color: rgba(255,255,255,0.7);
}

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

.contact-list li {
    display: flex;
    margin-bottom: 20px;
}

.contact-list i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-list a {
    color: rgba(255,255,255,0.7);
}
.contact-list a:hover {
    color: var(--white);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-flex p {
    margin: 0;
}

.designer {
    color: var(--secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-flex {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .experience-badge {
        width: 120px; height: 120px;
        right: 0;
    }
    .experience-badge .years {
        font-size: 1.8rem;
    }
    .staff-card, .value-item {
        min-width: calc((100% - 30px) / 2); /* 2 cards visible with 30px gap */
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-links {
        position: fixed;
        top: 90px; left: -100%;
        width: 100%; height: calc(100vh - 90px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s ease;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-actions {
        display: none; /* Hide phone on mobile menu bar */
    }
    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border-top: none !important;
        padding: 0;
        text-align: center;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        width: 100%;
    }
    .dropdown:hover .dropdown-menu,
    .dropdown.open .dropdown-menu {
        display: block !important;
    }
    .dropdown-menu li a {
        padding: 10px 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .staff-card, .value-item {
        min-width: 100%; /* 1 card visible */
    }
    .features {
        margin-top: 40px;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

/* Admission Modal Pop-up */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(43, 45, 66, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-top: 5px solid var(--primary);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: var(--text-muted);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 2rem;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
}

.btn-full {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    font-size: 1.1rem;
}

/* Contact Module Styles */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-top: 40px;
}

.contact-info-panel {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), #FF7B79);
    color: var(--white);
    padding: 50px 40px;
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-info-panel p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-info-panel .contact-list li {
    margin-bottom: 25px;
    align-items: center;
}

.contact-info-panel .contact-list i {
    color: var(--primary);
    background: var(--white);
    width: 40px; height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
}

.contact-form-panel {
    flex: 1.5;
    padding: 50px 40px;
}

.enquiry-form .form-row {
    display: flex;
    gap: 20px;
}

.enquiry-form .half-width {
    flex: 1;
}

.enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: var(--bg-light);
    resize: vertical;
}

.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .enquiry-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    pointer-events: none;
}

.scroll-top-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .scroll-top-btn.show {
        bottom: 20px;
        right: 20px;
    }
}
