/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --primary-teal: #007f73;
    --secondary-teal: #2a9d8f;
    --accent-orange: #ff9800;
    --white: #ffffff;
    --light-bg: #f4faf8;
    --dark-grey: #333333;
    --text-secondary: #64748b;
    --text-main-dark: #0f172a;
    --brand-emerald: #007f5f;
    --brand-emerald-light: #e6f7f3;
    --brand-emerald-hover: #00644b;
    --border-gray: #e2e8f0;
    --bg-muted: #f8fafc;
}

/* ============================================================
   GLOBAL RESET
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfefe;
    color: #333333;
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE NAVBAR WITH HAMBURGER MENU
   ============================================================ */
header {
    display: flex;

    align-items: center;
    justify-content: space-between;
    padding: 25px 10%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 100px;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-nav a {
    text-decoration: none;
    color: #555555;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #2a9d8f;
}

.phone-btn {
    background-color: #007f5f;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.phone-btn:hover {
    background-color: #00644b;
}

/* Mobile Menu Toggle Button (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #007f5f;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    padding: 100px 30px 40px;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav a {
    text-decoration: none;
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #007f5f;
}

.mobile-nav .phone-btn {
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
}

/* Overlay backdrop */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

/* ============================================================
   HOME PAGE
   ============================================================ */

/* --- Hero Section --- */
.hero-section-home {
    background-color: #f4faf8;
}

.hero-container-home {
    display: flex;
    padding: 80px 10% 60px 15%;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.rating-badge {
    display: inline-block !important;
    background-color: transparent !important;
    color: var(--accent-orange) !important;
    border: 1px solid var(--primary-teal) !important;
    padding: 5px 15px;
    border-radius: 20px;
}

.rating-badge span {
    color: var(--primary-teal) !important;
}

.hero-text h1 {
    font-size: 60px;
    color: var(--primary-teal);
    line-height: 1.2;
    margin-bottom: 15px;
    margin-top: 50px;
}

.hero-text h1 span {
    color: #000000;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #555;
}

.features-list1 {
    list-style: none;
    margin-bottom: 25px;
    font-weight: 100;
}

.features-list1 li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    
}

.features-list1 i {
    color: var(--secondary-teal);
    margin-right: 10px;
}

.service-areas {
    margin-bottom: 30px;
}

.cta-buttons1 {
    display: flex;
    align-items: start;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-teal);
    color: var(--white);
}

.btn-whatsapp {
    border: solid 2px #007f73;
    background-color: #ffffff;
    color: #007f73;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-teal);
}

/* --- Hero Image Configuration --- */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-collage-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: block;
}

.grid-item {
    background-color: #ddd;
    border-radius: 10px;
    min-height: 150px;
    background-size: cover;
    background-position: center;
}

.main-img {
    grid-row: span 2;
    min-height: 500px;
    background-image: url('Ezy-Keys-Yaris.png');
}

/* --- Stats Bar --- */
.stats-bar1 {
    background-color: var(--primary-teal);
    color: var(--white);
    text-align: center;
}

.stats-container1 {
    display: flex;
    justify-content: space-around;
    padding: 30px 100px 30px 100px ;
    margin-top: 40px;
    font-weight: 100;
}

.stat-item h3 {
    font-size: 2.5rem;
}

/* --- Why Choose Section --- */
.container-why-choose {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title-why-choose {
    text-align: center;
    font-size: 2.2rem;
    color: black;
    margin-bottom: 15px;
}

.section-subtitle-why-choose {
    text-align: center;
    max-width: 800px;
    font-weight: 200;
    margin: 0 auto 40px auto;
    color: #666;
}

/* --- Grid Features --- */
.grid-features1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.feat-card1 {
    background: #eefbf7;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.feat-card1 p {
    color: #1a4263;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
}

.feat-emoji {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-card1 h4 {
    margin-bottom: 10px;
}

.about-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-about {
    background-color: #006653;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-about:hover {
    background-color: #004d3e;
    transform: translateY(-2px);
}

/* --- Why 90 Section --- */
.why-90-section {
    background-color: #f3faf7;
    padding: 60px 0;
}

.why-90-split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-90-left-col {
    flex: 1.2;
    min-width: 0; /* Important */
}

.why-90-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #112d42;
    margin-bottom: 10px;
}

.why-90-intro {
    font-size: 1rem;
    color: #556b7d;
    margin-bottom: 25px;
}

.why-90-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.why-90-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #2c3e50;
}

.why-90-list li i {
    color: #007f73;
    margin-top: 4px;
    font-size: 0.9rem;
}

.why-90-btn-wrapper {
    margin-top: 25px;
}

.btn-find-out {
    background-color: #006653;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn-find-out:hover {
    background-color: #004d3e;
}

.why-90-right-col {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.mini-price-card {
    background: #ffffff;
    width: 100%;
    max-width: 800px;
    padding: 10px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.timer-icon-wrapper i {
    font-size: 2.5rem;
    color: #4b306b;
    margin-bottom: 15px;
}

.mini-price-card h3 {
    font-size: 1.5rem;
    color: #112d42;
    margin-bottom: 5px;
}

.mini-price-card .card-subtitle {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.price-row:last-of-type {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.lesson-name {
    color: #555;
    font-weight: 500;
}

.lesson-cost {
    font-weight: 800;
    color: #006653;
    font-size: 1.2rem;
}

.btn-view-pricing {
    background-color: #007f73;
    color: white;
    display: block;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: 0.3s;
}

.btn-view-pricing:hover {
    background-color: #005c53;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--white);
    padding: 15px 20px;
    border-left: 4px solid var(--primary-teal);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* --- Pricing Section --- */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.price-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-card.featured {
    background: var(--primary-teal);
    color: var(--white);
    transform: scale(1.05);
}

.price-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    color: var(--primary-teal);
}

.price-card.featured .price {
    color: var(--white);
}

.price-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    color: white;
    padding: 3px 10px;
    font-size: 0.75rem;
    border-radius: 10px;
    font-weight: bold;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.rating-summary {
    text-align: center;
    color: #ff9800;
    margin-bottom: 40px;
    font-size: 15px;
    margin-top: -25px;
}

.rating-summary span {
    color: #112d42;
    font-weight: 400;
    margin-left: 10px;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-stars {
    color: #ff9800;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 0.98rem;
    font-weight: 100;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.avatar-teal { background-color: #007f73; }
.avatar-purple { background-color: #6b46c1; }
.avatar-orange { background-color: #dd6b20; }

.reviewer-info h5 {
    font-size: 1rem;
    color: #112d42;
    margin: 0 0 2px 0;
    font-weight: 700;
}

.review-time {
    font-size: 0.82rem;
    color: #a0aec0;
}

.review-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-google-review {
    background-color: transparent;
    color: #006653;
    border: 2px solid #006653;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-google-review:hover {
    background-color: #006653;
    color: #ffffff;
}

/* --- Green CTA Banner --- */
.cta-banner-section {
    background-color: #007f73;
    padding: 50px 0;
    text-align: center;
    color: #ffffff;
}

.cta-banner-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-banner-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cta-banner-container p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-phone {
    background-color: #ffffff;
    color: #006653;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s;
}

.cta-btn-phone i {
    color: #e04f76;
}

.cta-btn-phone:hover {
    background-color: #f0f0f0;
}

.cta-btn-whatsapp {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.cta-btn-whatsapp:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.hero {
    text-align: left;
    padding: 90px 30px;
    background-color: #0dad9514;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 36px;
    color: #1d3557;
    font-weight: 510;
    margin-bottom: 10px;
    margin-left: 20px;
}

.hero p {
    font-size: 18px;
    color: #666666;
    font-weight: 300;
    margin-left: 300px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.message-section h2 {
    font-size: 32px;
    color: #1d3557;
    margin-bottom: 5px;
}

.message-section h3 {
    font-size: 18px;
    color: #2a9d8f;
    font-weight: 500;
    margin-bottom: 25px;
}

.message-section p {
    color: #555555;
    font-size: 16px;
    text-align: justify;
}

.credentials-card {
    background-color: #0dad9514;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.credentials-card h2 {
    font-size: 22px;
    color: #1d3557;
    margin-bottom: 25px;
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom:8px;
    font-size: 15px;
    font-weight: 200;
    color: #444444;
}

.credentials-list li:last-child {
    margin-bottom: 0;
}

.icon {
    font-size: 20px;
    min-width: 25px;
    text-align: center;
}

/* --- What We're Made Of Section --- */
.advantages-section {
    padding: 60px 20px 80px 20px;
    background-color: #ffffff;
}

.advantages-header {
    text-align: center;
    margin-bottom: 50px;
}

.advantages-header h2 {
    font-size: 36px;
    color: #112d42;
    font-weight: 700;
    margin-bottom: 10px;
}

.advantages-header p {
    font-size: 16px;
    color: #778899;
    font-weight: 400;
}

.advantages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.advantage-card {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 16px;
    padding: 20px 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.card-emoji {
    font-size: 28px;
    margin-bottom: 15px;
    display: inline-block;
}

.advantage-card h3 {
    font-size: 20px;
    color: #112d42;
    margin-bottom: 15px;
    font-weight: 700;
}

.advantage-card p {
    font-size: 14.5px;
    color: #556677;
    line-height: 1.7;
    text-align: center;
}

/* --- Service Area Section --- */
.service-area-section {
    padding: 60px 20px 80px 20px;
    background-color: #fcfefe;
    text-align: center;
}

.service-area-section h2 {
    font-size: 36px;
    color: #112d42;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-area-section .subtitle {
    font-size: 16px;
    color: #556677;
    margin-bottom: 40px;
}

.locations-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

.location-badge {
    background-color: #eefbf7;
    border: 1px solid #ccefe4;
    color: #007f5f;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.location-badge span {
    color: #e63946;
}

.service-area-cta {
    margin-top: 20px;
}

.service-area-cta p {
    font-size: 16px;
    color: #556677;
    margin-bottom: 25px;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background-color: #007f5f;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #00644b;
}

.btn-secondary {
    background-color: transparent;
    color: #007f5f;
    padding: 13px 29px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid #007f5f;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #eefbf7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.hero-banner-section {
    background-color: #f1faf7;
    padding: 50px 8%;
    text-align: left;
}

.hero-banner-section h1 {
    font-size: 36px;
    font-weight: 700;
    color: #0f2942;
    margin-bottom: 8px;
}

.hero-banner-section p {
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-content-grid-container {
    max-width: 1140px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.left-details-pane {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.left-details-pane h2 {
    font-size: 26px;
    color: var(--text-main-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.info-detail-row-card {
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-detail-row-card .icon-wrapper-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--brand-emerald-light);
    color: var(--brand-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.card-text-node p.label-node {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    font-weight: 600;
}

.card-text-node p.value-node {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main-dark);
}

.card-text-node a.value-link-node {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main-dark);
    text-decoration: none;
}

.suburb-span-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.right-emphasis-panel-box {
    background-color: var(--brand-emerald);
    color: #ffffff;
    border-radius: 14px;
    padding: 35px;
}

.right-emphasis-panel-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.right-emphasis-panel-box p.description-body {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    text-align: left;
}

.action-button-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-button-stack a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14.5px;
    transition: opacity 0.2s ease;
}

.action-button-stack a:hover {
    opacity: 0.95;
}

.action-button-stack a.light-btn {
    background-color: #ffffff;
    color: var(--brand-emerald);
}

.action-button-stack a.translucent-btn {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-callout-section {
    background-color: var(--bg-muted);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid var(--border-gray);
}

.review-callout-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0f2942;
    margin-bottom: 12px;
}

.review-callout-section p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.review-cta-btn {
    background-color: var(--brand-emerald);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    border: none;
}

.review-cta-btn:hover {
    background-color: var(--brand-emerald-hover);
}

.review-cta-btn i {
    color: #f59e0b;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-container {
    margin-bottom: 60px;
}

.info-section-1 {
    margin-bottom: 60px;
    margin-top: 60px;
}

.pricing-container-1 h2 {
    font-size: 24px;
    color: #1d3557;
    margin-bottom: 30px;
    font-weight: 700;
}

.pricing-grid-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    align-items: start;
}

.card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px 40px; /* Reduced vertical padding from 30px to 20px */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start; 
    
    height: 180px; /* Lowered total height since spacing is tighter */
    box-sizing: border-box;
} 

/* Adjusting the text elements to bring them closer together */
.card h3, .card .duration {
    margin: 0 0 2px 0; /* Tiny 2px gap beneath the lesson duration */
    font-size: 18px;
    color: #666666;
}

.card .price {
    margin: 0; /* No margin around the price to keep it snug */
    font-size: 48px;
    font-weight: bold;
    color: #2d6a4f;
    line-height: 1.1; /* Tighter line height prevents invisible text box padding */
}

.card .star-badge {
    margin-top: 4px; /* Lowered from 12px to 4px to bring the star close to the price */
    color: #2d6a4f;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card.featured {
    border: 2px solid #2d6a4f;
}

.badge {
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateY(-50%);
    background-color: #007f5f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
    font-weight: 500;
}

.card-price {
    font-size: 44px;
    color: #007f5f;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-footer-text {
    font-size: 13px;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* --- Drive Test Package --- */
.drive-test-section {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.drive-test-header {
    margin-bottom: 30px;
}

.drive-test-header h2 {
    font-size: 26px;
    color: #112d42;
    font-weight: 700;
    margin-bottom: 8px;
}

.drive-test-header p {
    font-size: 15px;
    color: #666666;
}

.drive-test-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.drive-test-image-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.drive-test-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.package-details-card {
    background: #ffffff;
    border: 1px solid #a3daf2;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.package-details-card h3 {
    font-size: 20px;
    color: #112d42;
    margin-bottom: 10px;
    font-weight: 700;
}

.package-price {
    font-size: 44px;
    color: #007f5f;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.package-features-list {
    list-style: none;
    margin-bottom: 35px;
}

.package-features-list li {
    font-size: 15px;
    color: #445566;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.package-features-list li span.check-icon {
    color: #007f5f;
    font-weight: bold;
}

.btn-book-now {
    display: block;
    width: 100%;
    background-color: #007f5f;
    color: #ffffff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-book-now:hover {
    background-color: #00644b;
}

/* ============================================================
   WHY 90 MINUTES PAGE
   ============================================================ */
.container-90 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 80px;
    padding: 0 180px;
}

.intro-card {
    background: linear-gradient(135deg, #f4fbfb 0%, #eef9f9 100%);
    border: 1px solid #e2f2f2;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 70px;
    box-shadow: 0 4px 20px rgba(0, 132, 137, 0.03);
}

.intro-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: inline-block;
}

.intro-card h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 16px;
}

.intro-card p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-title {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.grid-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

.grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

.grid-card:hover::before {
    background-color: #008489;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: inline-block;
}

.grid-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

.grid-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* --- Comparison Table --- */
.comparison-section {
    margin-bottom: 80px;
}



table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
    font-weight: 200;
}

th, td {
    padding: 18px 24px;
    border-bottom: 1px solid #e2e8f0;
}

th {
    background-color: #f8fafc;
    color: #334155;
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

.highlight-col {
    background-color: #f0fdf4;
    color: #166534;
}

th.highlight-col {
    background-color: #dcfce7;
    font-weight: 700;
    color: #14532d;
}

td.highlight-col strong {
    color: #15803d;
}

/* --- Closing CTA --- */
.closing-cta-outer {
    background-color: #0e8368;
    width: 100%;
    padding: 70px 20px;
}

.closing-cta-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.closing-cta-content {
    color: #ffffff;
}

.closing-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.closing-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-actions-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cta-btn-orange-phone {
    background-color: #ffffff;
    color: #05624c;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s ease;
}

.cta-btn-orange-phone:hover {
    background-color: #ffffff;
    opacity: 0.9;
}

.cta-btn-outline {
    background-color: #319782;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.2s ease;
}

.cta-btn-outline:hover {
    background-color: #27826e;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-hero {
    background: linear-gradient(135deg, #0f4c3a 0%, #0d6c54 100%);
    color: #ffffff;
    text-align: left;
    padding: 50px 8%;
}

.gallery-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-left: 140px;
    letter-spacing: -0.5px;
}

.gallery-hero p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: 140px;
    font-weight: 400;
}

.main-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 20px;
}

.main-container .section-title {
    font-size: 24px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 30px;
}

.student-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.student-card {
    background-color: #f7fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    aspect-ratio: 3 / 4;
    position: relative;
}

.student-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   FOOTER (Common across all pages)
   ============================================================ */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-about-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #94a3b8;
}

footer h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #ffffff;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 15px;
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact-list li a {
    color: #94a3b8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.footer-contact-list li a:hover {
    color: #ffffff;
}

.location-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    color: #94a3b8;
}

.footer-contact-list i {
    font-size: 1rem;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.icon-pink { color: #e04f76; }
.icon-green { color: #25d366; }

.footer-bottom-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-bottom: 25px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #64748b;
}

.syncfuse-text {
    color: #94a3b8;
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .hero-container-home {
        padding: 60px 6%;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .container-why-choose {
        padding: 50px 20px;
    }

    .grid-features1 {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .why-90-split-container {
        padding: 0 5%;
    }

    .pricing-container {
        padding: 0 20px;
    }

    .container-90 {
        margin: 60px 40px;
        padding: 0 80px;
    }

    .logo {
        margin-left: 0;
    }
}

/* Tablets and below (768px) */
@media (max-width: 768px) {
    /* --- Header & Nav --- */
    header {
        padding: 12px 4%;
    }

    .logo img {
        height: 45px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: flex;
        align-items: center;
    }

    /* --- Hero --- */
    .hero-container-home {
        flex-direction: column;
        text-align: start;
        padding: 50px 5%;
    }

    .hero-text h1 {
        font-size: 36px;
        margin-top: 20px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-collage-img {
        max-width: 100%;
    }
    .phone-btn.pc{
        display: none;
    }

    .features-list {
        display: inline-block;
        text-align: left;
    }

    .cta-buttons1 {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    /* --- Stats --- */
   .stats-container1 {
        flex-wrap: wrap;
        padding: 30px 20px;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    /* --- Why Choose --- */
    .section-title-why-choose {
        font-size: 1.8rem;
    }

    .grid-features1 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feat-card1 {
        padding: 15px;
    }

    .about-btn-container {
        margin-left: 0;
        width: 100%;
    }

    /* --- Why 90 --- */
    .why-90-split-container {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }

    .why-90-right-col {
        width: 100%;
    }

    .why-90-title {
        font-size: 1.8rem;
    }

    .mini-price-card {
        max-width: 100%;
    }

    /* --- Pricing --- */
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        width: 100%;
        max-width: 350px;
    }

    .price-card.featured {
        transform: none;
    }

    /* --- Testimonials --- */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* --- CTA Banner --- */
    .cta-banner-container h2 {
        font-size: 1.8rem;
    }

    .cta-banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-phone,
    .cta-btn-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* --- About Page --- */
    .hero {
        padding: 60px 20px;
        text-align: start;
    }

    .hero p {
        margin-left: 0 !important;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .locations-container {
        gap: 10px;
    }

    .location-badge {
        font-size: 14px;
        padding: 10px 18px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* --- Contact Page --- */
    .contact-content-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-banner-section {
        padding: 35px 5%;
        text-align: center;
    }

    /* --- Pricing Page --- */
    .pricing-grid-1 {
        grid-template-columns: 1fr;
    }

    .card {
        max-height: none;
    }

    .drive-test-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .package-details-card {
        padding: 30px 20px;
    }

    /* --- Why 90 Page --- */
    .container-90 {
        margin: 40px 20px;
        padding: 0 20px;
    }

    .intro-card {
        padding: 35px 25px;
    }

    .intro-card h2 {
        font-size: 1.6rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-actions-flex {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-actions-flex a {
        width: 100%;
        justify-content: center;
    }

    /* --- Gallery Page --- */
    .gallery-hero {
        padding: 40px 20px;
        text-align: center;
    }

    .gallery-hero h1 {
        font-size: 30px;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .gallery-hero p {
        font-size: 15px;
        margin-left: 0;
        max-width: 100%;
    }
}

    .student-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    /* --- Comparison Table --- */

.table-wrapper {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
    font-weight: 200;
    table-layout: fixed;
}

th, td {
    padding: 18px 24px;
    border-bottom: 1px solid #e2e8f0;
    word-break: break-word;
}

@media (max-width: 600px) {
    table {
        font-size: 0.65rem;
    }

    th, td {
        padding: 8px 5px;
    }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {

    .hero-text h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 1rem;
    }

    .features-list li {
        font-size: 0.95rem;
    }

    .section-title-why-choose {
        font-size: 1.5rem;
    }

    .why-90-title {
        font-size: 1.5rem;
    }

    .price-card .price {
        font-size: 2.2rem;
    }

    .review-card {
        padding: 25px 20px;
    }

    .avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .cta-banner-container h2 {
        font-size: 1.5rem;
    }

    .advantages-header h2,
    .service-area-section h2 {
        font-size: 28px;
    }

    .advantage-card {
        padding: 25px 20px;
    }

    .card-price,
    .package-price {
        font-size: 36px;
    }

    .intro-card {
        padding: 25px 20px;
    }

    .intro-card p {
        font-size: 1rem;
    }

    .grid-card {
        padding: 25px 20px;
    }

    .closing-cta-content h2 {
        font-size: 1.8rem;
    }

    .gallery-hero h1 {
        font-size: 26px;
    }

    .student-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .logo img {
        height: 40px;
    }

    .mobile-nav {
        padding: 90px 20px 30px;
    }

    .mobile-nav a {
        font-size: 16px;
        padding: 16px 0;
    }
}

/* Extra small devices (360px and below) */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .feat-card1 {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .feat-card1 p {
        text-align: center;
    }

    .student-grid {
        grid-template-columns: 1fr;
    }

    .price-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}