/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
   :root {
    /* Color Palette */
    --primary: #1E3A8A; /* Deep Blue */
    --primary-light: #3B82F6;
    --primary-dark: #1E40AF;
    --secondary: #F59E0B; /* Warm Amber */
    --secondary-light: #FCD34D;
    
    /* Neutral Colors */
    --dark: #0F172A;
    --dark-alt: #1E293B;
    --light: #F8FAFC;
    --light-alt: #F1F5F9;
    --text: #334155;
    --text-light: #64748B;
    --white: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* UI Elements */
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gray { color: var(--text-light); }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); }

.highlight { color: var(--primary); font-weight: 700; }
.highlight-text { color: var(--secondary); display: inline-block; }

.section-subtitle {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.section-subtitle.light { color: var(--secondary); }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.text-center .section-title {
    position: relative;
    display: inline-block;
}
.text-center .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(30, 58, 138, 0.39);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.23);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
    background-color: var(--light);
    transform: translateY(-2px);
}
.btn-block {
    display: block;
    width: 100%;
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: bounce 2s infinite;
}
.float-wa:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
    animation: none;
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 999;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
}
.logo-icon {
    color: var(--secondary);
    font-size: 1.8rem;
}
.navbar:not(.scrolled) .logo { color: var(--white); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    position: relative;
    color: var(--dark);
}
.navbar:not(.scrolled) .nav-link { color: var(--white); }

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }

.nav-btn {
    padding: 0.6rem 1.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.nav-btn:hover {
    background-color: #d97706;
    transform: translateY(-1px);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}
.navbar:not(.scrolled) .mobile-menu-toggle { color: var(--white); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/images/hero.png'); /* WE WILL DYNAMICALLY GENERATE/UPDATE THIS OR USE A NICE CSS FALLBACK */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 650px;
    color: var(--white);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.stat-item h3 {
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}
.stat-item h3 i { color: var(--secondary); font-size: 1.2rem; }
.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    height: 500px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-light);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.glass-card.exp-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}
.glass-card.exp-badge i {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.glass-card.exp-badge h4 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.glass-card.exp-badge p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

.about-content h2 { font-size: 2.2rem; }
.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-list {
    margin-top: 2rem;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.about-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ==========================================================================
   Facilities Section
   ========================================================================== */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.facility-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.1);
}

.facility-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--light-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.facility-card .icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.facility-card:hover .icon-wrapper {
    background: var(--primary);
}
.facility-card:hover .icon-wrapper i {
    color: var(--white);
}

.facility-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.facility-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rating {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text);
    flex-grow: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--light);
    padding-top: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
}
.bg-blue { background: #3B82F6; }
.bg-green { background: #10B981; }

.reviewer-info h4 { margin-bottom: 0.2rem; font-size: 1.1rem; }
.reviewer-info span { color: var(--text-light); font-size: 0.85rem; }

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.7); /* var(--primary) with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    font-size: 1.5rem;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .section-title { margin-bottom: 1.5rem; }

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.method-item .icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px; /* Prevents flex shrink on small screens */
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.method-item .icon-box i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.method-details h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.method-details p, .method-details a {
    color: var(--text-light);
    font-size: 1rem;
}
.method-details a:hover {
    color: var(--secondary);
}

/* Glassmorphism Form */
.glass-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glass-form h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem; /* Prevents iOS auto-zoom (must be >= 16px = 1rem) */
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */


/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Footer (Existing or New) */
footer {

    background: #0B1120;
    color: var(--text-light);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

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

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1200px) {
    .container { max-width: 1000px; }
    .hero h1 { font-size: 3.8rem; }
}

@media (max-width: 992px) {
    .container { max-width: 800px; }
    .hero h1 { font-size: 3.2rem; }
    .section-title { font-size: 2.2rem; }
    .section-padding { padding: 4rem 0; }

    .about-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image { height: 400px; }
    .glass-card.exp-badge { right: 20px; bottom: 20px; }
    .hero-stats { gap: 2rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }

    /* Navbar */
    .navbar { background: var(--white); box-shadow: var(--shadow-sm); padding: 1rem 0; }
    .logo { color: var(--dark); }
    .mobile-menu-toggle { display: block; }
    .navbar:not(.scrolled) .logo { color: var(--dark); }
    .navbar:not(.scrolled) .mobile-menu-toggle { color: var(--dark); }

    /* Mobile menu drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        gap: 1.5rem;
        z-index: 998;
    }
    .nav-links.active { right: 0; }
    .nav-links .nav-link {
        color: var(--dark);
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    .nav-links .nav-btn { width: 100%; text-align: center; }

    /* Hero */
    .hero { height: auto; padding: 110px 0 70px; min-height: unset; }
    .hero-text { max-width: 100%; }
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 1.05rem; margin-bottom: 2rem; max-width: 100%; }
    .hero-cta { flex-direction: column; width: 100%; gap: 0.8rem; margin-bottom: 2.5rem; }
    .hero-cta .btn { display: block; text-align: center; width: 100%; }
    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
        align-items: flex-start;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    /* Typography */
    .section-title { font-size: 1.8rem; margin-bottom: 2rem; }

    /* About */
    .about-image::before { display: none; } /* clips & causes x-overflow */
    .glass-card.exp-badge { right: 10px; bottom: 10px; }

    /* Grids — one column prevents minmax overflow */
    .facilities-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }

    /* Gallery — 2 equal columns, aspect-ratio keeps height sane */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .gallery-item { aspect-ratio: 1 / 1; }

    /* Contact */
    .glass-form { padding: 2rem 1.5rem; }
    .contact-methods { gap: 1.5rem; }

    /* Footer */
    .footer-flex { flex-direction: column; gap: 1.5rem; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section-padding { padding: 3rem 0; }
    .section-subtitle { font-size: 0.78rem; letter-spacing: 1px; }
    .section-title { font-size: 1.45rem; margin-bottom: 1.5rem; }

    /* Hero */
    .hero { padding: 95px 0 55px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.98rem; }

    /* About */
    .about-image { height: 250px; }
    .about-content h2 { font-size: 1.6rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .gallery-item { aspect-ratio: 1 / 1; }

    /* Sharing badges */
    .sharing-options .badge { padding: 0.3rem 0.75rem; font-size: 0.8rem; }

    /* Form */
    .glass-form { padding: 1.5rem 1rem; }
    .glass-form h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }

    /* WhatsApp FAB — slightly smaller so it doesn't eat content */
    .float-wa { width: 50px; height: 50px; font-size: 22px; bottom: 18px; right: 14px; }
}

@media (max-width: 360px) {
    /* Very small phones — single column everything */
    .hero h1 { font-size: 1.75rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { aspect-ratio: 4 / 3; }
    .method-item .icon-box { width: 48px; height: 48px; min-width: 48px; }
    .method-item .icon-box i { font-size: 1.2rem; }
}
