/* ==========================================================================
   DESIGN SYSTEM VARIABLES (Based on DESIGN.md)
   ========================================================================== */
:root {
    /* Colors */
    --primary: #10b981;
    --primary-hover: #0e9f6e;
    --secondary: #a7f3d0;
    --tertiary: #065f46;
    --surface: #f8fafc;
    --clinical-white: #ffffff;
    --mint-surface: #e6fcf5;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #cbd5e1;
    
    /* Typography */
    --font-family: 'Prompt', sans-serif;
    
    /* Spacing & Radii */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;   /* Standard Buttons */
    --radius-lg: 1rem;     /* Cards */
    --radius-pill: 9999px; /* Badges */
    
    /* Elevation */
    --ambient-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */
body {
    font-family: var(--font-family);
    background-color: var(--surface);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--tertiary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-padding {
    padding: 80px 0;
}

.bg-mint {
    background-color: var(--mint-surface);
}

.bg-tertiary {
    background-color: var(--tertiary);
    color: white;
}

.text-primary-custom {
    color: var(--primary) !important;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    color: var(--clinical-white);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    color: var(--clinical-white);
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background-color: var(--mint-surface);
    color: var(--tertiary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: var(--secondary);
    color: var(--tertiary);
}

/* Cards */
.service-card {
    background-color: var(--clinical-white);
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--ambient-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

.price-header {
    color: var(--tertiary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Icons & Badges */
.icon-container {
    background-color: var(--mint-surface);
    color: var(--primary);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.badge-pill {
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius-pill);
    padding: 0.35rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-mint {
    background-color: var(--mint-surface);
    color: var(--tertiary);
    border-radius: var(--radius-pill);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    list-style: none;
    color: var(--text-muted);
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}

/* Vaccine List Custom */
.vaccine-list-item {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    height: 100%;
    transition: all 0.3s ease;
}

.vaccine-list-item:hover {
    border-color: var(--primary);
    background: var(--clinical-white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.vaccine-num {
    background-color: var(--mint-surface);
    color: var(--tertiary);
    font-size: 1.1rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--clinical-white) !important;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* Layout & Navigation */
.navbar {
    background-color: var(--clinical-white) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0.25rem 0;
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* ==========================================================================
   HERO SLIDESHOW
   ========================================================================== */
.hero-slideshow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--surface) 0%, var(--mint-surface) 100%);
}

.hero-slides-wrapper {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    padding: 120px 0 80px 0;
}

/* Slide 2 has a different background feel */
.hero-slide-2 {
    background: linear-gradient(135deg, #0a1628 0%, #0d2d4a 50%, #065f46 100%);
}

/* Nav arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.9);
    color: var(--tertiary);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.hero-arrow-prev { left: 1.5rem; }
.hero-arrow-next { right: 1.5rem; }

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.3);
}

/* Slide 2 typography overrides */
.hero-slide-2 h1,
.hero-slide-2 h2 {
    color: white;
}

.hero-slide-2 .slide2-sub {
    color: rgba(255,255,255,0.75);
}

/* License card (slide 2) */
.license-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.license-card:hover { transform: rotate(0deg) scale(1.02); }

.license-card-header {
    background: linear-gradient(135deg, #1a3a6b, #0d2d4a);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.license-card-body {
    padding: 1.5rem;
}

.license-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.82rem;
}

.license-row:last-child { border-bottom: none; }
.license-label { color: var(--text-muted); flex-shrink: 0; margin-right: 1rem; }
.license-value { color: var(--text-main); font-weight: 600; text-align: right; }

/* Trust badge (slide 2) */
.trust-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    margin-top: 1.5rem;
}

.trust-badge-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Stat chips (slide 2) */
.stat-chip {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: 0.6rem 1rem;
    color: white;
    text-align: center;
    backdrop-filter: blur(8px);
}

.stat-chip-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.stat-chip-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.2rem;
}

/* ==========================================================================
   SLIDE 3 — Contact Us Today (Light theme)
   ========================================================================== */
.hero-slide-3 {
    background: linear-gradient(135deg, #eaf4ff 0%, #f0f8ff 40%, #e8f5fd 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative soft circles in background */
.hero-slide-3::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,160,230,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-slide-3::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: 30%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.slide3-heading {
    font-size: 3.4rem;
    line-height: 1.05;
    color: #1a3a6b !important;
    letter-spacing: -0.03em;
}

.slide3-sub {
    color: #4a6080;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Contact chips */
.contact-chip {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: #1a3a6b;
    color: white;
    border-radius: 50px;
    padding: 0.7rem 1.4rem 0.7rem 0.7rem;
    box-shadow: 0 6px 20px rgba(26,58,107,0.2);
}

.contact-chip-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-chip-label {
    font-size: 0.72rem;
    opacity: 0.75;
    margin-bottom: 0.1rem;
}

.contact-chip-value {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Image collage */
.slide3-collage {
    position: relative;
    height: 380px;
}

.slide3-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26,58,107,0.2);
}

.slide3-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.slide3-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 46%;
    height: 56%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(26,58,107,0.18);
    border: 4px solid white;
}

.slide3-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Plus decorations */
.slide3-plus {
    position: absolute;
    color: #3b82f6;
    font-weight: 700;
    opacity: 0.25;
    pointer-events: none;
    line-height: 1;
}

.slide3-plus-1 { font-size: 2.5rem; top: 10px;  left: 48%; }
.slide3-plus-2 { font-size: 1.5rem; top: 30%;   left: 36%; }
.slide3-plus-3 { font-size: 2rem;   bottom: 12%; left: 50%; }

.hero-section {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--mint-surface) 100%);
}

.image-rounded {
    border-radius: var(--radius-lg);
    box-shadow: var(--ambient-shadow);
    width: 100%;
    object-fit: cover;
}

.trust-banner {
    background-color: var(--tertiary);
    color: white;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.kicker {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

/* ==========================================================================
   MEDICAL ESCORT SERVICE
   ========================================================================== */
.escort-section {
    background: linear-gradient(135deg, var(--surface) 0%, var(--clinical-white) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.escort-decor-plus {
    position: absolute;
    color: var(--secondary);
    font-size: 5rem;
    font-weight: 700;
    opacity: 0.4;
    top: 10%;
    right: 48%;
    line-height: 1;
    pointer-events: none;
}

.escort-heading {
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.escort-heading .line-1 { color: var(--tertiary); }
.escort-heading .line-2 { color: var(--primary); }

.escort-list {
    padding-left: 0;
    list-style: none;
}

.escort-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.05rem;
}

.escort-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}

.escort-collage {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.escort-img-circle {
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid var(--clinical-white);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
    position: absolute;
}

.escort-img-1 {
    width: 320px;
    height: 320px;
    top: 20px;
    left: 5%;
    z-index: 2;
}

.escort-img-2 {
    width: 260px;
    height: 260px;
    bottom: 20px;
    right: 5%;
    z-index: 3;
}

.escort-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.2;
    z-index: 1;
}

.escort-ring-1 {
    width: 360px;
    height: 360px;
    top: 0;
    left: 0;
}

/* Responsive Adjustments for Escort Section */
@media (max-width: 991px) {
    .escort-heading { font-size: 3rem; }
    .escort-collage { height: 350px; margin-top: 2rem; }
    .escort-img-1 { width: 240px; height: 240px; left: 0; top: 0; }
    .escort-img-2 { width: 200px; height: 200px; right: 0; bottom: 0; }
    .escort-ring-1 { width: 260px; height: 260px; }
    .escort-decor-plus { font-size: 3rem; right: 10%; top: 5%; }
}

/* ==========================================================================
   CONTACT US TODAY SECTION
   ========================================================================== */
.contact-today-section {
    background: radial-gradient(circle at 10% 50%, var(--mint-surface) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.contact-today-heading {
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--tertiary);
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.contact-chip-large {
    background-color: var(--tertiary);
    color: white;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    box-shadow: 0 10px 25px rgba(6, 95, 70, 0.2);
    max-width: max-content;
}

.contact-chip-icon-large {
    background-color: white;
    color: var(--tertiary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.contact-chip-text {
    display: flex;
    flex-direction: column;
}

.contact-chip-title {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.1rem;
}

.contact-chip-detail {
    font-size: 1.15rem;
    font-weight: 700;
}

/* Collage */
.contact-collage {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-img-main {
    width: 320px;
    height: 440px;
    border-radius: 2rem;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: absolute;
    right: 5%;
    z-index: 1;
    border: 8px solid white;
}

.contact-img-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    position: absolute;
    left: 0;
    bottom: 5%;
    z-index: 2;
    border: 8px solid white;
}

/* Decorative Crosses */
.decor-cross {
    position: absolute;
    color: var(--secondary);
    font-weight: 900;
    line-height: 1;
    opacity: 0.6;
    user-select: none;
}

.decor-cross-1 { font-size: 4rem; top: 15%; left: 45%; }
.decor-cross-2 { font-size: 2rem; bottom: 20%; left: 35%; }
.decor-cross-3 { font-size: 3rem; top: 40%; right: 5%; color: var(--primary); opacity: 0.2;}

@media (max-width: 991px) {
    .contact-today-heading { font-size: 4rem; }
    .contact-collage { height: 400px; margin-top: 3rem; }
    .contact-img-main { width: 260px; height: 340px; right: 5%; }
    .contact-img-circle { width: 180px; height: 180px; left: 0; bottom: 0; }
}


/* ==========================================================================
   ALBUM & EXTRA PAGE STYLES (Merged from album.css)
   ========================================================================== */
.page-header {
    padding: 40px 0 20px 0;
    text-align: center;
}

/* Filter Pills */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem;
}

.filter-btn {
    background-color: var(--clinical-white);
    color: var(--text-muted);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.filter-btn:hover {
    background-color: var(--mint-surface);
    color: var(--tertiary);
}

.filter-btn.active {
    background-color: var(--tertiary);
    color: var(--clinical-white);
    box-shadow: 0 4px 12px rgba(6, 95, 70, 0.2);
}

/* Album Card */
.album-card {
    background-color: var(--clinical-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.album-card-img-wrapper {
    position: relative;
    padding-top: 65%; /* 3:2 Aspect Ratio */
    overflow: hidden;
}

.album-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-card-img {
    transform: scale(1.05);
}

.album-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 95, 70, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-hover-overlay {
    opacity: 1;
}

.album-hover-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.album-card:hover .album-hover-overlay i {
    transform: scale(1);
}

.album-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.album-category {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.album-title {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.album-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Modal Styles */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    border-bottom: none;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.btn-close-white:hover {
    opacity: 1;
}

#modalImage {
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    margin-top: 60px;
}

.item-hide {
    display: none !important;
}

/* Footer */
.footer-title-main {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-text {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-contact li,
.footer-sitemap li {
    font-size: 0.85rem;
}

.footer-hours {
    font-size: 0.82rem;
}

/* ==========================
   MODERN FOOTER
========================== */

.footer-modern {
    background: #014737;
    color: #fff;
    padding: 70px 0 30px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.footer-desc {
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

.footer-title::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #10b981;
    position: absolute;
    left: 0;
    bottom: -12px;
    border-radius: 20px;
}

/* menu */

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

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

.footer-links a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: all .3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #10b981;
    transform: translateX(8px);
}

/* social */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: #10b981;
    transform: translateY(-5px);
}

/* contact */

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: #10b981;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
    transition: all .3s ease;
}

.footer-contact-item:hover i {
    transform: scale(1.2);
}

.footer-contact-item span {
    color: rgba(255,255,255,.85);
    line-height: 1.7;
}

/* working hour */

.footer-hours {
    background: rgba(255,255,255,.08);
    padding: 18px;
    border-radius: 12px;
    color: rgba(255,255,255,.9);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
}

/* Logo */
.footer-logo {
    font-size: 1.5rem;      /* เดิม 2rem */
    font-weight: 700;
}

/* คำอธิบาย */
.footer-desc {
    font-size: 0.90rem;
    line-height: 1.8;
}

/* หัวข้อ */
.footer-title {
    font-size: 1.05rem;     /* เดิม 1.35rem */
    font-weight: 700;
}

/* เมนู */
.footer-links a {
    font-size: 0.90rem;
}

/* Contact */
.footer-contact-item span {
    font-size: 0.90rem;
}

/* Working Hours */
.footer-hours {
    font-size: 0.85rem;
}

/* Copyright */
.footer-bottom {
    font-size: 0.80rem;
}