/* =====================================================
   About Page Foundation
===================================================== */

.totoland-about-page {
    background: #F8FAFC;
    color: #111827;
}

.totoland-about-container {
    width: min(100% - 32px, 1240px);
    margin-right: auto;
    margin-left: auto;
}

.totoland-about-section {
    padding: 68px 0;
}

.totoland-about-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    background: #F2FBFF;
    color: #007FAF;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .05em;
    line-height: 1.2;
    text-transform: uppercase;
}

.totoland-about-section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.totoland-about-section-heading h2,
.totoland-about-split-content h2,
.totoland-about-promise h2,
.totoland-about-brand-promise h2 {
    margin: 12px 0 12px;
    color: #111827;
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 900;
    line-height: 1.12;
}

.totoland-about-section-heading p,
.totoland-about-split-content > p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.75;
}

.totoland-about-button {
    min-height: 48px;
    padding: 11px 18px;
    border: 2px solid transparent;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.totoland-about-button:hover {
    transform: translateY(-2px);
}

.totoland-about-button--primary {
    background: #00AEEF;
    color: #FFFFFF;
}

.totoland-about-button--primary:hover {
    background: #111827;
    color: #FFFFFF;
}

.totoland-about-button--whatsapp {
    background: #25D366;
    color: #FFFFFF;
}

.totoland-about-button--outline {
    border-color: #111827;
    background: #FFFFFF;
    color: #111827;
}

.totoland-about-text-link {
    color: #007FAF;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.totoland-about-section-action {
    margin-top: 28px;
}

.totoland-about-inline-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}

/* =====================================================
   Hero
===================================================== */

.totoland-about-hero {
    padding: 72px 0;
    background:
        linear-gradient(
            135deg,
            rgba(0, 174, 239, .14),
            rgba(255, 90, 165, .11)
        );
}

.totoland-about-hero-inner {
    min-height: 420px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.totoland-about-hero-content {
    flex: 1 1 55%;
    min-width: 0;
}

.totoland-about-hero-media {
    flex: 1 1 45%;
    min-width: 0;
}

.totoland-about-hero h1 {
    margin: 14px 0 18px;
    color: #111827;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.02;
}

.totoland-about-hero p {
    color: #475467;
    font-size: 17px;
    line-height: 1.75;
}

/* =====================================================
   Image Placeholders
===================================================== */

.totoland-about-media {
    overflow: hidden;
    width: 100%;
    border-radius: 22px;
    background: #FFFFFF;
    box-shadow: 0 14px 38px rgba(17, 24, 39, .08);
}

.totoland-about-media--16-10 {
    aspect-ratio: 16 / 10;
}

.totoland-about-media--16-9 {
    aspect-ratio: 16 / 9;
}

.totoland-about-media--4-3 {
    aspect-ratio: 4 / 3;
}

.totoland-about-media--1-1 {
    aspect-ratio: 1 / 1;
}

.totoland-about-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.totoland-about-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;
    padding: 28px;
    border: 2px dashed #CBD5E1;
    background:
        linear-gradient(
            135deg,
            #F2FBFF,
            #FFF5FA
        );
    color: #667085;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.totoland-about-image-placeholder i {
    margin-bottom: 13px;
    color: #00AEEF;
    font-size: 36px;
}

.totoland-about-image-placeholder strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 17px;
}

.totoland-about-image-placeholder p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.totoland-about-image-placeholder small {
    display: block;
    margin-top: 9px;
    color: #667085;
}

/* =====================================================
   Story
===================================================== */

.totoland-about-split {
    display: flex;
    align-items: center;
    gap: 42px;
}

.totoland-about-split--reverse {
    flex-direction: row-reverse;
}

.totoland-about-split-content,
.totoland-about-split-media {
    flex: 1 1 50%;
    min-width: 0;
}

.totoland-about-split-content p + p {
    margin-top: 14px;
}

/* =====================================================
   Mission & Vision
===================================================== */

.totoland-about-mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.totoland-about-mission-card {
    flex: 1 1 calc(50% - 22px);
    min-width: 280px;
    padding: 30px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
}

.totoland-about-mission-card h3 {
    margin: 16px 0 10px;
    color: #111827;
    font-size: 24px;
    font-weight: 900;
}

.totoland-about-mission-card p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

/* =====================================================
   Core Values
===================================================== */

.totoland-about-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.totoland-about-value-card {
    flex: 1 1 calc(33.333% - 18px);
    min-width: 245px;
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 9px 26px rgba(17, 24, 39, .05);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.totoland-about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(17, 24, 39, .09);
}

.totoland-about-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #F2FBFF;
    color: #00AEEF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.totoland-about-value-card h3 {
    margin: 16px 0 8px;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
}

.totoland-about-value-card p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;
}

/* =====================================================
   Why Choose Us
===================================================== */

.totoland-about-why-us {
    padding-right: 28px;
    padding-left: 28px;
    border-radius: 24px;
    background: #FFFFFF;
}

.totoland-about-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.totoland-about-feature-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 18px;
    border: 1px solid #E5E7EB;
    border-radius: 15px;
    background: #F8FAFC;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.totoland-about-feature-item > span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 13px;
    background: #FFF5FA;
    color: #FF5AA5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.totoland-about-feature-item h3 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

.totoland-about-feature-item p {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
}

/* =====================================================
   Learning Through Play
===================================================== */

.totoland-about-learning {
    background: #F4FFF1;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-right: max(16px, calc((100vw - 1240px) / 2));
    padding-left: max(16px, calc((100vw - 1240px) / 2));
}

.totoland-about-check-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.totoland-about-check-list li {
    color: #475467;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    line-height: 1.55;
}

.totoland-about-check-list i {
    margin-top: 4px;
    color: #58C63A;
}

/* =====================================================
   Store
===================================================== */

.totoland-about-store-layout {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.totoland-about-store-details {
    flex: 0 1 38%;
    min-width: 280px;
    padding: 26px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background: #FFFFFF;
}

.totoland-about-store-details address {
    padding: 18px;
    border-radius: 14px;
    background: #F8FAFC;
    font-style: normal;
}

.totoland-about-store-details address strong,
.totoland-about-store-details address span {
    display: block;
}

.totoland-about-store-details address strong {
    margin-bottom: 8px;
    color: #111827;
    font-size: 17px;
}

.totoland-about-store-details address span {
    color: #667085;
    line-height: 1.55;
}

.totoland-about-store-hours {
    margin-top: 18px;
}

.totoland-about-store-hours h3 {
    color: #111827;
    font-size: 17px;
    font-weight: 900;
}

.totoland-about-store-hours p {
    margin: 7px 0;
    color: #667085;
}

.totoland-about-store-gallery {
    flex: 1 1 62%;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.totoland-about-store-gallery > * {
    flex: 1 1 calc(50% - 16px);
}

.totoland-about-store-gallery > :first-child {
    flex-basis: 100%;
}

/* =====================================================
   Customer Promise
===================================================== */

.totoland-about-promise-card {
    padding: 38px;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            #FFF9E8,
            #FFFFFF
        );
}

.totoland-about-promise-content {
    max-width: 860px;
}

.totoland-about-policy-note {
    margin: 24px 0;
    padding: 18px;
    border-left: 4px solid #FFC83D;
    border-radius: 0 13px 13px 0;
    background: #FFFFFF;
}

.totoland-about-policy-note strong {
    color: #111827;
}

.totoland-about-policy-note p {
    margin: 7px 0 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.65;
}

/* =====================================================
   Parent Trust
===================================================== */

.totoland-about-trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.totoland-about-trust-item {
    flex: 1 1 calc(25% - 14px);
    min-width: 220px;
    padding: 18px;
    border: 1px solid #E5E7EB;
    border-radius: 15px;
    background: #FFFFFF;
    color: #475467;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 13px;
    line-height: 1.55;
}

.totoland-about-trust-item i {
    margin-top: 3px;
    color: #00AEEF;
}

/* =====================================================
   Brand Promise
===================================================== */

.totoland-about-brand-promise {
    padding: 48px;
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            #00AEEF,
            #FF5AA5
        );
    color: #FFFFFF;
}

.totoland-about-brand-promise-inner {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.totoland-about-brand-promise .totoland-about-eyebrow {
    background: rgba(255, 255, 255, .18);
    color: #FFFFFF;
}

.totoland-about-brand-promise h2 {
    color: #FFFFFF;
}

.totoland-about-brand-promise-intro {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .92);
    font-size: 17px;
    line-height: 1.7;
}

.totoland-about-brand-promise-points {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.totoland-about-brand-promise-points > div {
    flex: 1 1 260px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 800;
}

/* =====================================================
   Community
===================================================== */

.totoland-about-community {
    padding-bottom: 36px;
}

/* =====================================================
   Statistics
===================================================== */

.totoland-about-stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.totoland-about-stat {
    flex: 1 1 180px;
    padding: 24px;
    border-radius: 18px;
    background: #FFFFFF;
    text-align: center;
}

.totoland-about-stat strong {
    display: block;
    color: #00AEEF;
    font-size: 32px;
    font-weight: 900;
}

.totoland-about-stat span {
    color: #667085;
    font-size: 13px;
}

/* =====================================================
   Timeline
===================================================== */

.totoland-about-timeline-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.totoland-about-timeline-list li {
    position: relative;
    padding: 0 0 28px 36px;
}

.totoland-about-timeline-list li::before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 0;
    left: 8px;
    width: 2px;
    background: #D9E0E7;
}

.totoland-about-timeline-list li:last-child::before {
    display: none;
}

.totoland-about-timeline-marker {
    position: absolute;
    top: 5px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 4px solid #FFFFFF;
    border-radius: 50%;
    background: #00AEEF;
    box-shadow: 0 0 0 2px #00AEEF;
}

.totoland-about-timeline-list time {
    color: #007FAF;
    font-size: 12px;
    font-weight: 900;
}

.totoland-about-timeline-list h3 {
    margin: 5px 0;
    color: #111827;
    font-size: 18px;
}

.totoland-about-timeline-list p {
    margin: 0;
    color: #667085;
}

/* =====================================================
   Team
===================================================== */

.totoland-about-team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.totoland-about-team-card {
    flex: 1 1 calc(25% - 18px);
    min-width: 240px;
    padding: 18px;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    background: #FFFFFF;
}

.totoland-about-team-card h3 {
    margin: 16px 0 4px;
    color: #111827;
    font-size: 18px;
}

.totoland-about-team-card > strong {
    color: #007FAF;
    font-size: 13px;
}

.totoland-about-team-card > p {
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
}

/* =====================================================
   Accessibility
===================================================== */

.totoland-about-page a:focus-visible,
.totoland-about-page button:focus-visible {
    outline: 3px solid #FFC83D;
    outline-offset: 4px;
}

/* =====================================================
   Responsive
===================================================== */

@media (max-width: 991px) {
    .totoland-about-hero-inner,
    .totoland-about-split,
    .totoland-about-split--reverse,
    .totoland-about-store-layout {
        flex-direction: column;
        align-items: stretch;
    }

    .totoland-about-store-details {
        min-width: 0;
    }

    .totoland-about-value-card {
        flex-basis: calc(50% - 18px);
    }

    .totoland-about-trust-item {
        flex-basis: calc(50% - 14px);
    }
}

@media (max-width: 767px) {
    .totoland-about-container {
        width: min(100% - 24px, 1240px);
    }

    .totoland-about-section {
        padding: 46px 0;
    }

    .totoland-about-hero {
        padding: 48px 0;
    }

    .totoland-about-value-card,
    .totoland-about-feature-item,
    .totoland-about-trust-item,
    .totoland-about-store-gallery > *,
    .totoland-about-team-card {
        flex-basis: 100%;
        min-width: 0;
    }

    .totoland-about-inline-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .totoland-about-button {
        width: 100%;
    }

    .totoland-about-why-us,
    .totoland-about-promise-card,
    .totoland-about-brand-promise {
        padding: 24px;
        border-radius: 20px;
    }

    .totoland-about-brand-promise-points > div {
        flex-basis: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .totoland-about-button,
    .totoland-about-value-card {
        transition: none;
    }
}
/* =====================================================
   FAQ
===================================================== */

.totoland-about-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.totoland-about-faq-item {
	overflow: hidden;
	border: 1px solid #E5E7EB;
	border-radius: 16px;
	background: #FFFFFF;
	box-shadow: 0 8px 22px rgba(17, 24, 39, .04);
}

.totoland-about-faq-item h3 {
	margin: 0;
}

.totoland-about-faq-toggle {
	width: 100%;
	min-height: 60px;
	padding: 16px 18px;
	border: 0;
	background: #FFFFFF;
	color: #111827;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.4;
	text-align: left;
	cursor: pointer;
}

.totoland-about-faq-toggle:hover {
	background: #F8FAFC;
}

.totoland-about-faq-toggle i {
	flex: 0 0 auto;
	color: #00AEEF;
	transition: transform .2s ease;
}

.totoland-about-faq-toggle[aria-expanded="true"] i {
	transform: rotate(180deg);
}

.totoland-about-faq-panel {
	padding: 0 18px 18px;
}

.totoland-about-faq-panel p {
	margin: 0;
	color: #667085;
	font-size: 14px;
	line-height: 1.75;
}

/* =====================================================
   CTA
===================================================== */

.totoland-about-cta {
	margin-bottom: 70px;
}

.totoland-about-cta-inner {
	overflow: hidden;
	padding: 34px;
	border-radius: 26px;
	background:
		linear-gradient(
			135deg,
			rgba(0, 174, 239, .13),
			rgba(255, 90, 165, .13)
		);
	display: flex;
	align-items: center;
	gap: 34px;
}

.totoland-about-cta-content {
	flex: 1 1 58%;
	min-width: 0;
}

.totoland-about-cta-media {
	flex: 1 1 42%;
	min-width: 0;
}

.totoland-about-cta h2 {
	margin: 12px 0;
	color: #111827;
	font-size: clamp(30px, 5vw, 46px);
	font-weight: 900;
	line-height: 1.08;
}

.totoland-about-cta-content > p {
	max-width: 670px;
	margin: 0;
	color: #667085;
	font-size: 15px;
	line-height: 1.75;
}

.totoland-about-cta-actions {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* =====================================================
   Global Trust Component on About Page
===================================================== */

.totoland-about-page .totoland-trust-badges {
	margin: 30px 0 50px;
}

/* =====================================================
   Optional Reveal Animation
===================================================== */

[data-totoland-about-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity .45s ease,
		transform .45s ease;
}

[data-totoland-about-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* =====================================================
   Part 3 Responsive
===================================================== */

@media (max-width: 900px) {
	.totoland-about-cta-inner {
		flex-direction: column;
		align-items: stretch;
	}

	.totoland-about-cta-content,
	.totoland-about-cta-media {
		flex-basis: auto;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.totoland-about-faq-toggle {
		padding: 15px;
		font-size: 14px;
	}

	.totoland-about-faq-panel {
		padding: 0 15px 16px;
	}

	.totoland-about-cta {
		margin-bottom: 48px;
	}

	.totoland-about-cta-inner {
		padding: 22px;
		border-radius: 20px;
	}

	.totoland-about-cta-actions {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.totoland-about-faq-toggle i,
	[data-totoland-about-reveal] {
		transition: none;
	}

	[data-totoland-about-reveal] {
		opacity: 1;
		transform: none;
	}
}