/* ===========================
   ROOT VARIABLES & RESET
   =========================== */
:root {
    --primary-green: #00b894;
    --dark-green: #00916e;
    --light-green: #55efc4;
    --field-green: #1ea35c;
    --grass-dark: #16843d;
    --grass-light: #2ecc71;
    
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --lighter-bg: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --border-color: #dfe6e9;
    
    --accent-blue: #0984e3;
    --accent-orange: #fd79a8;
    --accent-yellow: #fdcb6e;
    --accent-red: #ff7675;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.header {
    background: var(--white);
    color: var(--text-dark);
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    color: var(--text-dark);
}

.logo i {
    font-size: 32px;
    color: var(--primary-green);
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.nav-link:hover {
    background: var(--light-bg);
    color: var(--text-dark);
}

.nav-link.active {
    background: var(--primary-green);
    color: var(--white);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    padding: 80px 0;
    background: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    box-shadow: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-green);
}

.stat i {
    font-size: 28px;
    color: var(--primary-green);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
    margin-top: 4px;
}

/* ===========================
   FUTSAL FIELD ILLUSTRATION
   =========================== */
.hero-image {
    position: relative;
}

.futsal-field {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--field-green) 0%, var(--grass-dark) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.futsal-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.03) 40px,
        rgba(255,255,255,0.03) 80px
    );
}

.field-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255,255,255,0.6);
    border-radius: 50%;
}

.center-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
}

.center-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: rgba(255,255,255,0.6);
}

.goal {
    position: absolute;
    width: 20px;
    height: 100px;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid rgba(255,255,255,0.8);
}

.goal-left {
    left: 0;
    border-right: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.goal-right {
    right: 0;
    border-left: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.penalty-area {
    position: absolute;
    width: 100px;
    height: 200px;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid rgba(255,255,255,0.6);
}

.penalty-left {
    left: 0;
    border-left: none;
}

.penalty-right {
    right: 0;
    border-right: none;
}

.floating-ball {
    position: absolute;
    font-size: 60px;
    color: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

/* ===========================
   DATE SELECTOR
   =========================== */
.date-selector-section {
    padding: 30px 0;
}

.date-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: var(--white);
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 500px;
    margin: 0 auto;
}

.date-nav {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.date-nav:hover {
    background: var(--dark-green);
    transform: scale(1.1);
}

.selected-date {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.selected-date i {
    color: var(--primary-green);
    font-size: 24px;
}

/* ===========================
   COURTS SECTION
   =========================== */
.courts-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.legend {
    display: flex;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.badge {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.badge.available {
    background: var(--primary-green);
}

.badge.booked {
    background: var(--accent-red);
}

.courts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.court-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.court-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
}

.court-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.court-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.court-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.court-name i {
    color: var(--primary-green);
    font-size: 24px;
}

.court-name h3 {
    font-size: 22px;
    font-weight: 600;
}

.court-type {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-green);
    color: var(--white);
}

.court-type.standard {
    background: var(--accent-blue);
}

.court-type.vip {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
}

/* ===========================
   MINI FIELD VISUAL
   =========================== */
.court-visual {
    margin: 20px 0;
}

.mini-field {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--field-green), var(--grass-dark));
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.8);
}

.mini-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 30px,
        rgba(255,255,255,0.05) 30px,
        rgba(255,255,255,0.05) 60px
    );
}

.mini-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
}

.mini-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
}

.mini-goals::before,
.mini-goals::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255,255,255,0.8);
}

.mini-goals::before {
    left: 0;
    border-left: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.mini-goals::after {
    right: 0;
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.mini-field.vip {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(240, 147, 251, 0.5); }
    50% { box-shadow: 0 0 30px rgba(245, 87, 108, 0.7); }
}

.court-info {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.info-item i {
    color: var(--primary-green);
}

.btn-book {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-book:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 184, 148, 0.4);
}

/* ===========================
   MODAL
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header h2 {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.time-slots-container h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.time-slot {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    background: var(--white);
}

.time-slot:hover {
    border-color: var(--primary-green);
    background: rgba(0, 184, 148, 0.05);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-color: var(--primary-green);
}

.time-slot.booked {
    background: var(--light-bg);
    color: var(--text-light);
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.5;
}

.time-slot.booked:hover {
    transform: none;
    border-color: var(--border-color);
}

.booking-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.1);
}

.booking-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    border-left: 4px solid var(--primary-green);
}

.booking-summary h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 18px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.summary-item span {
    color: var(--text-light);
}

.summary-item strong {
    color: var(--text-dark);
}

.btn-confirm {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-confirm:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 184, 148, 0.4);
}

/* ===========================
   BOOKINGS TIMELINE
   =========================== */
.bookings-section {
    padding: 60px 0;
    background: var(--white);
}

.btn-refresh {
    padding: 12px 24px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-refresh:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.bookings-timeline {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    overflow-x: auto;
}

.timeline-header {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.timeline-court {
    font-weight: 600;
    color: var(--text-dark);
}

.timeline-hours {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
}

.timeline-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    margin-bottom: 15px;
    align-items: center;
}

.timeline-court-name {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-court-name i {
    color: var(--primary-green);
}

.timeline-slots {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    gap: 4px;
    position: relative;
    height: 40px;
}

.timeline-slot {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    position: relative;
}

.timeline-slot.booked {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border: none;
    position: relative;
    overflow: hidden;
}

.timeline-slot.booked::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--light-green);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--light-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .futsal-field {
        height: 300px;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }
    
    .stat {
        padding: 16px 20px;
        flex: 1;
        min-width: 140px;
    }
    
    .stat i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .courts-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .timeline-row {
        grid-template-columns: 80px 1fr;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .why-choose {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* ===========================
   SCROLLBAR STYLING
   =========================== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.fade-in {
    animation: fadeIn 0.5s ease;
}

.slide-up {
    animation: slideUp 0.5s ease;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 400;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list i {
    color: var(--primary-green);
    font-size: 18px;
}

.why-choose {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.reason-card {
    background: var(--light-bg);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
}

.reason-card i {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.reason-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.reason-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card,
.hours-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.contact-card h3,
.hours-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-green);
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span {
    font-size: 14px;
    color: var(--text-light);
}

.hours-item strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
