:root {
    --text-light: #F8F8F8;
    --text-dark: #000000;
    --menu-bg: #006d73;
    --button-bg: #F88A4E;
    --button-hover: #F47D3D;
    --heading-font: "Playfair Display", serif;
    --body-font: "Google Sans", "Roboto", sans-serif;
    --transition: 0.3s ease;
    --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #fff;
}

img {
    display: block;
    max-width: 100%;
}

.section-gap {
    margin-top: 90px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hero-decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-decor-left {
    left: -10px;
    bottom: 0;
    width: 135px;
    height: 135px;
}

.hero-decor-left img {
    animation: ringRotate 14s linear infinite;
    transform-origin: center center;
}

.hero-decor-right {
    right: -8px;
    bottom: 38px;
    width: 88px;
    height: 88px;
    animation: softFloat 5s ease-in-out infinite;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-background picture,
.hero-background img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-background img {
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.hero-inner {
    position: relative;
    z-index: 5;
    min-height: 100vh;
}

.hero-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 22px 40px 70px;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.site-logo {
    width: 112px;
    transition: transform var(--transition);
}

.site-logo:hover {
    transform: scale(1.03);
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 16px 26px;
    border-radius: 999px;
    background: #006d73;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

.desktop-menu a {
    position: relative;
    text-decoration: none;
    color: #F8F8F8;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
}

.desktop-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #F8F8F8;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.desktop-menu a:hover::after,
.desktop-menu a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #006d73;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    padding: 10px 9px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: relative;
    z-index: 10;
    width: min(320px, 100%);
    margin-top: 14px;
    margin-left: auto;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(0, 109, 115, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.3s ease;
}

.mobile-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    display: block;
    text-decoration: none;
    color: #F8F8F8;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
    padding-left: 18px;
    position: relative;
    z-index: 6;
}

.hero-title {
    color: #FFF;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 18px;
}

.hero-subtitle {
    color: #FFF;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 24px;
}

.hero-admission {
    color: #FFF;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 28px;
}

.hero-button,
.admission-button,
.visit-form-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 42px;
    padding: 11px 20px;
    border-radius: 999px;
    background: #F88A4E;
    color: #000000;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    box-shadow: 0 6px 16px rgba(248, 138, 78, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    width: fit-content;
}

.hero-button:hover,
.admission-button:hover,
.visit-form-button:hover {
    background: #F47D3D;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 125, 61, 0.22);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -130%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-22deg);
    transition: left 0.5s ease;
    z-index: 1;
}

.hero-button:hover .button-shine {
    left: 140%;
}

.line-reveal-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.title-line {
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    border-radius: 10px;
    transition: width 0.8s ease;
}

.dark-line {
    background: rgba(0, 0, 0, 0.8);
}

.show-scroll .title-line,
.reveal-show .title-line {
    width: 90px;
}

.philosophy-section {
    position: relative;
    padding: 105px 0 120px;
}

.philosophy-container,
.vision-mission-container,
.visit-form-container,
.atrium-container,
.admission-container,
.parent-partnership-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: center;
    column-gap: 98px;
    max-width: 1040px;
    margin: 0 auto;
}

.philosophy-image {
    overflow: hidden;
    transition: transform 0.35s ease;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.philosophy-image:hover img {
    transform: scale(1.04);
}

.philosophy-content {
    max-width: 470px;
}

.philosophy-title {
    color: #000;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 14px;
}

.philosophy-mini-title {
    color: #000;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
}

.philosophy-text {
    color: #000;
    font-family: "Google Sans", "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    max-width: 455px;
}

.quote-section {
    position: relative;
    margin: 90px 60px;
    min-height: 420px;
    overflow: hidden;
}

.quote-bg,
.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.quote-bg img,
.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quote-overlay,
.footer-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.quote-overlay {
    background: linear-gradient(180deg, rgba(13, 99, 102, 0.08) 0%, rgba(13, 99, 102, 0.03) 100%);
}

.quote-shape-left {
    position: absolute;
    z-index: 3;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(205, 162, 70, 0.75);
    border-radius: 50%;
    left: -55px;
    top: 8px;
}

.quote-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 40px;
}

.quote-content {
    max-width: 760px;
    text-align: center;
}

.quote-top-text,
.quote-middle-text,
.quote-main-word {
    color: #F8F8F8;
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

.quote-top-text,
.quote-middle-text {
    font-size: 26px;
}

.quote-main-word {
    font-size: 52px;
    line-height: 1.05;
}

.quote-middle-text-2 {
    margin-bottom: 8px;
}

.quote-line {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.quote-line::after {
    content: "";
    position: absolute;
    left: -110%;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: rgba(248, 248, 248, 0.35);
    transition: left 0.9s ease;
}

.reveal-quote.show-quote .quote-line::after {
    left: 0;
}

.quote-star {
    position: absolute;
    z-index: 4;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.quote-star svg {
    width: 100%;
    height: 100%;
}

.quote-star-1 { top: 10px; left: 165px; animation: starFloatOne 4.8s ease-in-out infinite; }
.quote-star-2 { top: 12px; right: 130px; animation: starFloatTwo 5.6s ease-in-out infinite 0.5s; }
.quote-star-3 { bottom: 78px; right: 170px; animation: starFloatThree 5.1s ease-in-out infinite 0.8s; }
.quote-star-4 { bottom: 78px; left: 185px; animation: starFloatFour 6s ease-in-out infinite 0.4s; }

.vision-mission-section {
    padding: 90px 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: start;
    column-gap: 70px;
}

.vision-mission-content {
    max-width: 620px;
}

.vision-mission-title {
    color: #000;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 32px;
}

.vision-block + .vision-block {
    margin-top: 28px;
}

.vision-mission-subtitle {
    color: #000;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 14px;
}

.vision-mission-text {
    color: #000;
    font-family: "Google Sans", "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 10px;
}

.vision-mission-circle {
    position: relative;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: #EEE4D1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.vision-mission-circle-inner {
    width: 318px;
    height: 318px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

.vision-child-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.vision-mission-circle:hover .vision-child-image {
    transform: scale(1.05);
}

.vision-ball-image {
    position: absolute;
    top: 4px;
    left: 18px;
    width: 105px;
    height: 105px;
    object-fit: contain;
    animation: ballFloat 4.2s ease-in-out infinite;
    z-index: 3;
}

.programmes-section {
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
    background: #FDF8F2;
}

.programmes-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 155px;
    z-index: 1;
    pointer-events: none;
}

.programmes-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 48px;
}

.programmes-heading {
    text-align: center;
    margin-bottom: 34px;
}

.programmes-heading h2,
.atrium-title,
.visit-form-title,
.admission-main-title,
.footer-contact-item h3,
.parent-partnership-title {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.programme-card {
    position: relative;
    overflow: hidden;
    min-height: 492px;
    padding: 22px 26px 36px;
    text-align: center;
    transition: transform 0.38s ease, box-shadow 0.38s ease, filter 0.38s ease;
    transform-origin: center bottom;
}

.programme-card:hover {
    transform: translateY(-8px) scaleY(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.programme-card-top-shape {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 228px;
    height: 146px;
    border-radius: 0 0 120px 120px;
    opacity: 0.32;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.programme-card:hover .programme-card-top-shape {
    transform: translateX(-50%) translateY(6px);
    opacity: 0.42;
}

.programme-card-1 { background: #E6DBB9; }
.programme-card-1 .programme-card-top-shape { background: #D6C89A; }
.programme-card-2 { background: #D8C5B7; }
.programme-card-2 .programme-card-top-shape { background: #C9B19E; }
.programme-card-3 { background: #A7C97A; }
.programme-card-3 .programme-card-top-shape { background: #90B863; }
.programme-card-4 { background: #E2D8C1; }
.programme-card-4 .programme-card-top-shape { background: #CFC19B; }

.programme-small-title {
    display: block;
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.programme-age,
.programme-name,
.admission-title,
.parent-partnership-subtitle {
    color: #000;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.programme-age {
    margin-bottom: 58px;
    position: relative;
    z-index: 2;
}

.programme-name {
    margin-bottom: 38px;
    position: relative;
    z-index: 2;
}

.programme-text,
.parent-partnership-text,
.parent-partnership-points li,
.visit-field input,
.footer-contact-item p,
.footer-contact-item p a {
    font-family: "Google Sans", "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.programme-text {
    color: #000;
    line-height: 21px;
    position: relative;
    z-index: 2;
}

.admission-section,
.atrium-section,
.visit-form-section {
    background: #FDF8F2;
    position: relative;
    overflow: hidden;
}

.admission-section {
    padding: 90px 0 100px;
}

.admission-heading {
    text-align: center;
    margin-bottom: 56px;
}

.admission-subtitle {
    color: #000;
    font-family: "Google Sans", "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
}

.admission-grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 78px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

.admission-item {
    position: relative;
    width: 100%;
    max-width: 470px;
}

.admission-item-1,
.admission-item-3 {
    justify-self: start;
}

.admission-item-2,
.admission-item-4 {
    justify-self: end;
}

.admission-number {
    display: inline-block;
    color: rgba(0, 0, 0, 0.55);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
}

.admission-card {
    position: relative;
    overflow: visible;
}

.admission-ring {
    position: absolute;
    left: 28px;
    bottom: -76px;
    width: 118px;
    height: 118px;
    z-index: 1;
    pointer-events: none;
}

.admission-ring img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: admissionRingFloat 4.8s ease-in-out infinite;
}

.admission-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.admission-card:hover .admission-image {
    transform: translateY(-4px) scale(1.015);
}

.admission-title {
    margin-top: 12px;
    text-align: center;
}

.admission-action {
    text-align: center;
    margin-top: 80px;
}

.admission-button,
.visit-form-button {
    background: #000;
    color: #F8F8F8;
}

.atrium-section {
    padding: 90px 0 100px;
}

.atrium-heading {
    text-align: center;
    margin-bottom: 24px;
}

.atrium-slider {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.atrium-slider-window {
    position: relative;
    flex: 1;
    overflow: hidden;
    width: 100%;
}

.atrium-slides {
    position: relative;
    width: 100%;
    min-height: 620px;
}

.atrium-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.atrium-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

.atrium-slide img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.atrium-slide.active:hover img {
    transform: scale(1.015);
}

.atrium-arrow {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
    flex: 0 0 auto;
    z-index: 5;
}

.atrium-arrow span {
    font-size: 30px;
    line-height: 1;
    transform: translateY(-1px);
}

.atrium-arrow-left {
    background: #D7C7B8;
    color: #4f4035;
}

.atrium-arrow-right {
    background: #B86A17;
    color: #ffffff;
}

.visit-form-section {
    padding: 90px 0 100px;
}

.visit-form-heading {
    text-align: center;
    margin-bottom: 42px;
}

.visit-form {
    max-width: 1180px;
    margin: 0 auto;
}

.visit-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 26px;
}

.visit-field {
    position: relative;
}

.visit-field input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.28);
    padding: 0 0 8px 0;
    color: #000;
    line-height: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.visit-field input:focus {
    border-bottom-color: #000;
    transform: translateY(-1px);
}

.visit-field::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.35s ease;
}

.visit-field:hover::after,
.visit-field:focus-within::after {
    width: 100%;
}

.visit-form-action {
    text-align: center;
    margin-top: 42px;
}

.parent-partnership-section {
    position: relative;
    padding: 150px 0 90px;
    background: #F0E7D8;
    overflow: hidden;
}

.parent-top-curve {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 136%;
    height: 190px;
    background: #F9EBD9;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    z-index: 1;
}

.parent-partnership-container {
    position: relative;
    z-index: 3;
}

.parent-partnership-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    column-gap: 70px;
    max-width: 1120px;
    margin: 0 auto;
}

.parent-partnership-content {
    max-width: 520px;
}

.parent-partnership-text {
    color: #000;
    line-height: 21px;
    margin-bottom: 26px;
    max-width: 430px;
}

.parent-partnership-points h4 {
    color: #000;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 12px;
}

.parent-partnership-points ul {
    margin: 0;
    padding-left: 18px;
}

.parent-partnership-points li {
    color: #000;
    line-height: 21px;
}

.parent-partnership-visual {
    display: flex;
    justify-content: center;
}

.parent-image-wrap {
    position: relative;
    width: 390px;
    height: 390px;
}

.parent-image-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #f4ecdf;
    transition: transform 0.4s ease;
}

.parent-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.parent-image-circle:hover {
    transform: translateY(-4px);
}

.parent-image-circle:hover img {
    transform: scale(1.04);
}

.parent-line-circle {
    position: absolute;
    border: 1px solid rgba(238, 179, 136, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.parent-line-circle-1 {
    width: 28px;
    height: 28px;
    top: 42px;
    left: 36%;
}

.parent-line-circle-2 {
    width: 180px;
    height: 180px;
    right: 10%;
    bottom: 85px;
}

.parent-line-circle-3 {
    width: 220px;
    height: 220px;
    left: 6%;
    bottom: -34px;
}

.footer-section {
    position: relative;
    overflow: hidden;
    background: #d9f3fb;
    padding-top: 210px;
    min-height: 980px;
}

.footer-top-curve {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 210px;
    background: linear-gradient(180deg, #8fd5ec 0%, #a7deef 100%);
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    z-index: 2;
}

.footer-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 35%, rgba(255,255,255,0.00) 100%);
}

.footer-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px 24px;
}

.footer-logo-wrap {
    text-align: center;
    margin-bottom: 42px;
}

.footer-logo {
    width: 130px;
    transition: transform 0.35s ease;
}

.footer-logo:hover {
    transform: scale(1.03);
}

.footer-contact-box {
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    padding: 26px 0 28px;
    margin-bottom: 520px;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.9fr;
    align-items: center;
}

.footer-contact-item {
    padding: 0 36px 0 0;
}

.footer-contact-item-middle {
    border-left: 1px solid rgba(0, 0, 0, 0.14);
    border-right: 1px solid rgba(0, 0, 0, 0.14);
    padding: 0 36px;
}

.footer-social-item {
    padding: 0 0 0 36px;
}

.footer-contact-item h3 {
    color: #000;
    margin-bottom: 18px;
}

.footer-contact-item p,
.footer-contact-item p a {
    color: #000;
    text-decoration: none;
    line-height: 21px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social-links a {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.footer-social-links a span {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.footer-social-links a:hover {
    transform: translateY(-3px) scale(1.04);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copy,
.footer-credit {
    color: #000;
    font-family: "Google Sans", "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.reveal-up,
.reveal-left,
.reveal-top,
.reveal-scroll,
.reveal-quote,
.reveal-vm,
.reveal-programme,
.reveal-admission,
.reveal-atrium,
.reveal-visit,
.reveal-parent,
.reveal-footer {
    opacity: 0;
}

.reveal-up,
.reveal-left,
.reveal-top {
    transition: all 0.7s ease;
}

.reveal-up { transform: translateY(24px); }
.reveal-left { transform: translateX(-24px); }
.reveal-top { transform: translateY(-20px); }

.reveal-show {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-scroll,
.reveal-quote,
.reveal-vm,
.reveal-programme,
.reveal-atrium,
.reveal-visit,
.reveal-parent,
.reveal-footer {
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-scroll.show-scroll,
.reveal-quote.show-quote,
.reveal-vm.show-vm,
.reveal-programme.show-programme,
.reveal-atrium.show-atrium,
.reveal-visit.show-visit,
.reveal-parent.show-parent,
.reveal-footer.show-footer {
    opacity: 1;
    transform: translateY(0);
}

.reveal-admission {
    will-change: transform, opacity;
    transition: opacity 0.75s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.scale-heading {
    transform: scaleX(0.9) translateY(20px);
    transform-origin: center center;
}

.scale-left {
    transform: translateX(-36px) scaleX(0.88);
    transform-origin: left center;
}

.scale-right {
    transform: translateX(36px) scaleX(0.88);
    transform-origin: right center;
}

.scale-last {
    transform: translateX(70px) scale(0.92);
    transform-origin: right center;
}

.reveal-admission.show-admission {
    opacity: 1;
    transform: translateX(0) translateY(0) scaleX(1) scaleY(1) scale(1);
}

.delay-scroll-1 { transition-delay: 0.12s; }
.delay-scroll-2 { transition-delay: 0.22s; }
.delay-scroll-3 { transition-delay: 0.32s; }
.delay-vm-1 { transition-delay: 0.12s; }
.delay-vm-2 { transition-delay: 0.24s; }
.delay-programme-1 { transition-delay: 0.08s; }
.delay-programme-2 { transition-delay: 0.16s; }
.delay-programme-3 { transition-delay: 0.24s; }
.delay-programme-4 { transition-delay: 0.32s; }
.delay-adm-0 { transition-delay: 0.02s; }
.delay-adm-1 { transition-delay: 0.10s; }
.delay-adm-2 { transition-delay: 0.22s; }
.delay-adm-3 { transition-delay: 0.34s; }
.delay-adm-4 { transition-delay: 0.46s; }
.delay-atrium-1 { transition-delay: 0.15s; }
.delay-visit-1 { transition-delay: 0.12s; }
.delay-visit-2 { transition-delay: 0.24s; }
.delay-parent-1 { transition-delay: 0.14s; }
.delay-footer-1 { transition-delay: 0.12s; }
.delay-footer-2 { transition-delay: 0.24s; }

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes softFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

@keyframes ballFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(6deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes admissionRingFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes starFloatOne {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -5px, 0) rotate(4deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes starFloatTwo {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(3px, -4px, 0) rotate(-4deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes starFloatThree {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(-2px, -5px, 0) rotate(3deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes starFloatFour {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(2px, -4px, 0) rotate(-3deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@media (max-width: 1199.98px) {
    .hero-container { padding: 20px 28px 60px; }
    .site-logo { width: 102px; }
    .desktop-menu { gap: 22px; padding: 14px 22px; }
    .desktop-menu a { font-size: 13px; }
    .hero-content { max-width: 500px; padding-left: 8px; }

    .philosophy-container,
    .vision-mission-container,
    .visit-form-container,
    .atrium-container,
    .admission-container,
    .parent-partnership-container,
    .footer-container {
        padding: 0 28px;
    }

    .quote-section {
        margin: 75px 45px;
        min-height: 360px;
    }

    .quote-container {
        min-height: 360px;
        padding: 48px 28px;
    }

    .programmes-container {
        padding: 0 34px;
    }

    .admission-grid {
        max-width: 980px;
        row-gap: 64px;
    }

    .admission-item {
        max-width: 420px;
    }

    .admission-ring {
        width: 102px;
        height: 102px;
        left: 22px;
        bottom: -64px;
    }

    .atrium-slide img {
        height: 560px;
    }

    .atrium-slides {
        min-height: 560px;
    }

    .parent-partnership-section {
        padding: 130px 0 80px;
    }

    .parent-top-curve {
        width: 150%;
        height: 155px;
    }

    .footer-section {
        padding-top: 170px;
        min-height: 860px;
    }

    .footer-top-curve {
        width: 155%;
        height: 170px;
    }
}

@media (max-width: 991.98px) {
    .hero-section { min-height: 760px; }
    .hero-container { padding: 18px 22px 56px; }
    .desktop-menu { display: none; }
    .mobile-toggle { display: block; }
    .site-logo { width: 92px; }
    .hero-content {
        justify-content: flex-end;
        max-width: 430px;
        padding-left: 0;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .hero-admission {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero-decor-left {
        width: 90px;
        height: 90px;
        left: -8px;
        bottom: 8px;
    }

    .hero-decor-right {
        width: 64px;
        height: 64px;
        right: -3px;
        bottom: 24px;
    }

    .philosophy-section,
    .programmes-section,
    .admission-section,
    .atrium-section,
    .visit-form-section {
        padding: 70px 0 80px;
    }

    .philosophy-container,
    .vision-mission-container,
    .visit-form-container,
    .atrium-container,
    .admission-container,
    .parent-partnership-container,
    .footer-container {
        padding: 0 22px;
    }

    .philosophy-grid,
    .vision-mission-grid,
    .parent-partnership-grid {
        grid-template-columns: 1fr;
        row-gap: 34px;
        max-width: 620px;
    }

    .philosophy-image-wrap {
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }

    .philosophy-content,
    .vision-mission-content,
    .parent-partnership-content {
        max-width: 100%;
    }

    .philosophy-title,
    .programmes-heading h2,
    .atrium-title,
    .visit-form-title,
    .admission-main-title,
    .parent-partnership-title,
    .footer-contact-item h3 {
        font-size: 18px;
    }

    .philosophy-mini-title,
    .vision-mission-subtitle,
    .programme-age,
    .programme-name,
    .parent-partnership-subtitle,
    .parent-partnership-points h4,
    .admission-title {
        font-size: 16px;
    }

    .philosophy-text,
    .vision-mission-text,
    .programme-text,
    .parent-partnership-text,
    .parent-partnership-points li,
    .visit-field input,
    .footer-contact-item p,
    .footer-contact-item p a,
    .admission-subtitle {
        font-size: 14px;
        line-height: 19px;
    }

    .quote-section {
        margin: 65px 22px;
        min-height: 320px;
    }

    .quote-container {
        min-height: 320px;
        padding: 42px 22px;
    }

    .quote-top-text,
    .quote-middle-text {
        font-size: 20px;
    }

    .quote-main-word {
        font-size: 40px;
    }

    .quote-star {
        width: 20px;
        height: 20px;
    }

    .programmes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .programme-card {
        min-height: 430px;
        padding: 20px 20px 28px;
    }

    .admission-grid {
        row-gap: 42px;
        max-width: 620px;
    }

    .admission-item,
    .admission-item-1,
    .admission-item-2,
    .admission-item-3,
    .admission-item-4 {
        max-width: 100%;
        width: 100%;
        justify-self: center;
    }

    .admission-ring {
        width: 92px;
        height: 92px;
        left: 18px;
        bottom: -52px;
    }

    .scale-left,
    .scale-right,
    .scale-last {
        transform: translateY(28px) scaleY(0.94);
        transform-origin: center center;
    }

    .scale-heading {
        transform: translateY(20px) scale(0.96);
    }

    .reveal-admission.show-admission {
        transform: translateY(0) scaleY(1) scaleX(1) scale(1);
    }

    .atrium-slider {
        gap: 14px;
    }

    .atrium-slides {
        min-height: 460px;
    }

    .atrium-slide img {
        height: 460px;
    }

    .atrium-arrow {
        width: 42px;
        height: 42px;
    }

    .atrium-arrow span {
        font-size: 26px;
    }

    .visit-form-grid {
        column-gap: 28px;
        row-gap: 22px;
    }

    .parent-partnership-section {
        padding: 110px 0 70px;
    }

    .parent-top-curve {
        width: 168%;
        height: 125px;
    }

    .parent-image-wrap {
        width: 320px;
        height: 320px;
    }

    .footer-section {
        padding-top: 135px;
        min-height: 760px;
    }

    .footer-top-curve {
        width: 175%;
        height: 130px;
    }

    .footer-logo {
        width: 95px;
    }

    .footer-contact-box {
        padding: 22px 0 24px;
        margin-bottom: 330px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }

    .footer-contact-item,
    .footer-contact-item-middle,
    .footer-social-item {
        padding: 0;
        border: none;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 767.98px) {
    .section-gap { margin-top: 48px; }

    .hero-section { min-height: 680px; }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(56, 36, 20, 0.08) 0%, rgba(56, 36, 20, 0.14) 38%, rgba(56, 36, 20, 0.34) 100%);
    }

    .hero-container { padding: 16px 16px 42px; }
    .site-logo { width: 80px; }

    .hero-content {
        max-width: 100%;
        padding-left: 0;
        padding-bottom: 68px;
        justify-content: flex-end;
    }

    .hero-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .hero-admission {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .hero-button,
    .admission-button,
    .visit-form-button {
        min-width: 114px;
        min-height: 38px;
        padding: 9px 16px;
        font-size: 13px;
    }

    .hero-decor-left {
        width: 62px;
        height: 62px;
        left: -6px;
        bottom: 8px;
    }

    .hero-decor-right {
        width: 42px;
        height: 42px;
        right: -2px;
        bottom: 18px;
    }

    .philosophy-section,
    .vision-mission-section,
    .programmes-section,
    .admission-section,
    .atrium-section,
    .visit-form-section {
        padding: 48px 0 58px;
    }

    .philosophy-container,
    .vision-mission-container,
    .visit-form-container,
    .admission-container,
    .parent-partnership-container,
    .footer-container {
        padding: 0 16px;
    }

    .philosophy-title,
    .programmes-heading h2,
    .atrium-title,
    .visit-form-title,
    .admission-main-title,
    .parent-partnership-title,
    .footer-contact-item h3 {
        font-size: 16px;
    }

    .philosophy-mini-title,
    .vision-mission-subtitle,
    .programme-age,
    .programme-name,
    .parent-partnership-subtitle,
    .parent-partnership-points h4,
    .admission-title {
        font-size: 14px;
    }

    .philosophy-text,
    .vision-mission-text,
    .programme-text,
    .parent-partnership-text,
    .parent-partnership-points li,
    .visit-field input,
    .footer-contact-item p,
    .footer-contact-item p a,
    .admission-subtitle {
        font-size: 14px;
        line-height: 19px;
    }

    .quote-section {
        margin: 48px 16px;
        min-height: 260px;
    }

    .quote-container {
        min-height: 260px;
        padding: 34px 16px;
    }

    .quote-top-text,
    .quote-middle-text {
        font-size: 16px;
        line-height: 1.35;
    }

    .quote-main-word {
        font-size: 30px;
        line-height: 1.08;
    }

    .quote-star {
        width: 14px;
        height: 14px;
    }

    .vision-mission-title {
        font-size: 16px;
        margin-bottom: 21px;
    }

    .vision-mission-circle {
        width: 270px;
        height: 270px;
    }

    .vision-mission-circle-inner {
        width: 220px;
        height: 220px;
    }

    .vision-ball-image {
        width: 70px;
        height: 70px;
        top: 3px;
        left: 10px;
    }

    .programmes-container {
        padding: 0 16px;
    }

    .programmes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .programme-card {
        min-height: auto;
        padding: 18px 18px 24px;
    }

    .admission-grid {
        row-gap: 30px;
    }

    .admission-number {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 6px;
    }

    .admission-ring {
        width: 78px;
        height: 78px;
        left: 12px;
        bottom: -42px;
    }

    .admission-action {
        margin-top: 42px;
    }

    .atrium-container {
        padding: 0;
        max-width: 100%;
    }

    .atrium-heading {
        margin-bottom: 16px;
        padding: 0 16px;
    }

    .atrium-slider {
        max-width: 100%;
        width: 100%;
        display: block;
        gap: 0;
    }

    .atrium-slides {
        min-height: 250px;
        width: 100%;
    }

    .atrium-slide img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .atrium-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
        z-index: 10;
    }

    .atrium-arrow-left { left: 12px; }
    .atrium-arrow-right { right: 12px; }
    .atrium-arrow span { font-size: 22px; }

    .visit-form-grid {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .visit-form-action {
        margin-top: 30px;
    }

    .parent-partnership-section {
        padding: 90px 0 58px;
    }

    .parent-top-curve {
        width: 195%;
        height: 92px;
    }

    .parent-image-wrap {
        width: 250px;
        height: 250px;
    }

    .footer-section {
        padding-top: 100px;
        min-height: 620px;
    }

    .footer-top-curve {
        width: 210%;
        height: 95px;
    }

    .footer-container {
        padding: 0 16px 18px;
    }

    .footer-logo {
        width: 80px;
    }

    .footer-contact-box {
        padding: 18px 0 18px;
        margin-bottom: 205px;
    }

    .footer-contact-grid {
        row-gap: 18px;
    }

    .footer-social-links {
        gap: 12px;
    }

    .footer-social-links a {
        width: 40px;
        height: 40px;
    }

    .footer-social-links a span {
        font-size: 18px;
    }

    .footer-copy,
    .footer-credit {
        font-size: 12px;
        line-height: 18px;
    }
}

@media (max-width: 480px) {
    .hero-section { min-height: 620px; }
    .site-logo { width: 72px; }
    .hero-content { padding-bottom: 56px; }
    .atrium-slides { min-height: 220px; }
    .atrium-slide img { height: 220px; }
    .atrium-arrow { width: 34px; height: 34px; }
    .atrium-arrow span { font-size: 20px; }
}

.parent-partnership-section {
    position: relative;
    background: #F3E8D7;
    overflow: hidden;
    padding: 140px 0 70px;
    margin-bottom: 0;
}

.parent-curve-shape {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 160%;
    height: 260px;
    background: #F8EFE1;
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.parent-partnership-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 50px;
}

.parent-partnership-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    column-gap: 90px;
    max-width: 1020px;
    margin: 0 auto;
}

.parent-partnership-content {
    max-width: 470px;
}

.parent-partnership-title {
    color: #000;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.parent-partnership-subtitle {
    color: #000;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 14px;
}

.parent-partnership-text {
    color: #000;
    font-family: "Google Sans", "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 24px;
    max-width: 390px;
}

.parent-partnership-points h4 {
    color: #000;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 12px;
}

.parent-partnership-points ul {
    margin: 0;
    padding-left: 18px;
}

.parent-partnership-points li {
    color: #000;
    font-family: "Google Sans", "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 5px;
}

.parent-partnership-visual {
    display: flex;
    justify-content: center;
}

.parent-image-wrap {
    position: relative;
    width: 350px;
    height: 350px;
}

.parent-image-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #EFE4D2;
    position: relative;
    z-index: 2;
}

.parent-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.parent-line-circle {
    position: absolute;
    border: 1px solid rgba(236, 180, 138, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.parent-line-circle-1 {
    width: 26px;
    height: 26px;
    top: 56px;
    left: 36%;
}

.parent-line-circle-2 {
    width: 150px;
    height: 150px;
    right: 12%;
    bottom: 26px;
}

.parent-line-circle-3 {
    width: 220px;
    height: 220px;
    left: 6%;
    bottom: -90px;
}

/* footer */
.footer-section {
    position: relative;
    overflow: hidden;
    background: #cfeefa;
    padding-top: 120px;
    min-height: 860px;
    margin-top: -1px;
}

.footer-curve-shape {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 170%;
    height: 220px;
    background: linear-gradient(180deg, #86d3ea 0%, #a7deef 100%);
    border-radius: 50% 50% 0 0;
    z-index: 2;
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08) 0%,
        rgba(255,255,255,0.03) 35%,
        rgba(255,255,255,0.00) 100%
    );
}

.footer-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px 18px;
}

.footer-logo-wrap {
    text-align: center;
    margin-bottom: 28px;
}

.footer-logo {
    width: 88px;
    margin: 0 auto;
}

.footer-contact-box {
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    padding: 18px 0 20px;
    margin-bottom: 370px;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.9fr;
    align-items: center;
}

.footer-contact-item {
    padding: 0 30px 0 0;
}

.footer-contact-item-middle {
    border-left: 1px solid rgba(0, 0, 0, 0.14);
    border-right: 1px solid rgba(0, 0, 0, 0.14);
    padding: 0 30px;
}

.footer-social-item {
    padding: 0 0 0 30px;
}

.footer-contact-item h3 {
    color: #000;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}

.footer-contact-item p,
.footer-contact-item p a {
    color: #000;
    text-decoration: none;
    font-family: "Google Sans", "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-links a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social-links a span {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copy,
.footer-credit {
    color: #000;
    font-family: "Google Sans", "Roboto", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
}

/* responsive */
@media (max-width: 991.98px) {
    .parent-partnership-section {
        padding: 105px 0 0;
    }

    .parent-curve-shape {
        width: 190%;
        height: 200px;
        top: -100px;
    }

    .parent-partnership-container {
        padding: 0 22px 50px;
    }

    .parent-partnership-grid {
        grid-template-columns: 1fr;
        row-gap: 28px;
        max-width: 620px;
    }

    .parent-image-wrap {
        width: 300px;
        height: 300px;
    }

    .footer-section {
        padding-top: 100px;
        min-height: 700px;
    }

    .footer-curve-shape {
        width: 210%;
        height: 180px;
        top: -80px;
    }

    .footer-container {
        padding: 0 22px 18px;
    }

    .footer-contact-box {
        margin-bottom: 260px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .footer-contact-item,
    .footer-contact-item-middle,
    .footer-social-item {
        padding: 0;
        border: none;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 767.98px) {
    .parent-partnership-section {
        padding: 80px 0 0;
    }

    .parent-curve-shape {
        width: 240%;
        height: 160px;
        top: -80px;
    }

    .parent-partnership-container {
        padding: 0 16px 40px;
    }

    .parent-partnership-title {
        font-size: 16px;
    }

    .parent-partnership-subtitle,
    .parent-partnership-points h4 {
        font-size: 14px;
    }

    .parent-partnership-text,
    .parent-partnership-points li {
        font-size: 14px;
        line-height: 19px;
    }

    .parent-image-wrap {
        width: 230px;
        height: 230px;
    }

    .footer-section {
        padding-top: 82px;
        min-height: 560px;
    }

    .footer-curve-shape {
        width: 250%;
        height: 145px;
        top: -60px;
    }

    .footer-container {
        padding: 0 16px 14px;
    }

    .footer-logo {
        width: 70px;
    }

    .footer-contact-box {
        margin-bottom: 160px;
        padding: 14px 0 16px;
    }

    .footer-contact-item h3 {
        font-size: 16px;
    }

    .footer-contact-item p,
    .footer-contact-item p a {
        font-size: 13px;
        line-height: 18px;
    }

    .footer-social-links a {
        width: 26px;
        height: 26px;
    }

    .footer-social-links a span {
        font-size: 12px;
    }

    .footer-copy,
    .footer-credit {
        font-size: 10px;
        line-height: 14px;
    }
}