@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root { --accent: #ff7a1f; }

html, body {
    overflow-x: hidden;
}

body { font-family: 'Inter', sans-serif; }
h1, h2 { font-family: 'Space Grotesk', sans-serif; }

.form-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 22px 28px 22px 68px;
    font-size: 18px;
    color: white;
}

.call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff7a1f;
    color: white;
    padding: 18px 28px;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 10px 30px -10px #ff7a1f;
    z-index: 99999;
}

.stat { font-size: 4.5rem; color: #ff7a1f; font-weight: 700; }

.gallery { cursor: pointer; transition: transform 0.4s ease; }
.gallery:hover { transform: scale(1.05); }

.modal-content { animation: modalPop 0.5s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes modalPop { from { opacity: 0; transform: scale(0.95) translateY(40px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.hero-slide { animation: kenBurns 22s ease infinite alternate; }
@keyframes kenBurns { from { transform: scale(1.08); } to { transform: scale(1.15); } }

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -4px;
    left: 0;
    background: #ff7a1f;
}
.nav-link:hover:after { width: 100%; }

/* Accreditations */
.accreditation-logo {
    transition: all 0.6s cubic-bezier(0.34,1.56,0.64,1);
    filter: grayscale(20%);
}
.accreditation-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Marquee Reviews */
.marquee {
    display: flex;
    overflow: hidden;
}
.marquee-content {
    display: flex;
    gap: 2rem;
    animation: marquee 45s linear infinite;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.review-card {
    background: white;
    color: #0a2f5e;
    padding: 24px;
    border-radius: 24px;
    min-width: 340px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.review-card:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
}
.star {
    color: #facc15;
    font-size: 1.75rem;
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.6);
}