/*
Theme Name: Appliance Repair Alpharetta
Theme URI: http://localhost/appliancerepairalpharetta
Description: A premium, conversion-optimized WordPress theme custom built for appliance repair services in Alpharetta, GA.
Version: 1.0.0
Author: Antigravity
Author URI: https://gemini.google.com/antigravity
Text Domain: appliancerepair
*/

/* ----------------------------------------------------
   1. DESIGN SYSTEM & VARIABLES
---------------------------------------------------- */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Color Palette */
    --primary: #0a192f;        /* Deep Navy */
    --primary-light: #172a45;  /* Slate Navy */
    --secondary: #2563eb;      /* Electric Blue */
    --secondary-hover: #1d4ed8;
    --accent: #f59e0b;         /* Amber Orange */
    --accent-hover: #d97706;
    --bg-light: #f8fafc;       /* Light Slate */
    --bg-card: #ffffff;
    --text-main: #1e293b;      /* Dark Slate */
    --text-muted: #64748b;     /* Gray */
    --border-color: #e2e8f0;   /* Light Gray */

    /* Typography Sizes */
    --h1-size: 2.75rem;
    --h2-size: 2.25rem;
    --h3-size: 1.5rem;
    --body-size: 1rem;

    /* Spacing & Layout */
    --container-max-width: 1200px;
    --border-radius: 12px;
    --transition-speed: 0.3s;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ----------------------------------------------------
   2. RESET & BASE STYLES
---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: var(--body-size);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-hover);
}

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

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-center {
    text-align: center;
}

/* Section Header Utility */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-header .subtitle {
    display: inline-block;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ----------------------------------------------------
   3. BUTTONS & UI ELEMENTS
---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

.btn-accent:hover {
    background-color: var(--accent-hover);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--primary);
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background-color: rgba(37, 99, 235, 0.05);
}

.btn-full {
    width: 100%;
}

/* ----------------------------------------------------
   4. TOP BAR & NAVIGATION
---------------------------------------------------- */
.top-bar {
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-info {
    display: flex;
    gap: 1.5rem;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-info i {
    color: var(--accent);
}

.top-bar-badge {
    background-color: var(--accent);
    color: var(--primary);
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) ease;
}

header.scrolled {
    padding: 0.25rem 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
}

.logo img {
    height: 55px; /* Slightly larger vertical space for the custom logo */
    width: auto;
}

.logo-text span {
    color: var(--secondary);
}

.main-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width var(--transition-speed) ease;
}

.main-navigation a:hover {
    color: var(--secondary);
}

.main-navigation a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

.nav-phone i {
    color: var(--secondary);
    font-size: 1.25rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* ----------------------------------------------------
   5. HERO SECTION & INTEGRATED BOOKING FORM
---------------------------------------------------- */
.hero-section {
    position: relative;
    background-color: var(--primary);
    color: #ffffff;
    min-height: calc(95vh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 40%, rgba(10, 25, 47, 0.6) 100%);
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.hero-tagline i {
    font-size: 1.25rem;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--accent);
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.hero-badge-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Booking Card inside Hero */
.hero-booking-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.hero-booking-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.hero-booking-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.booking-form .form-group {
    margin-bottom: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.booking-form option {
    background-color: var(--primary);
    color: #ffffff;
}

.booking-form textarea {
    height: 80px;
    resize: none;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    background-color: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
    display: block;
}

.form-status.error {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
    display: block;
}

/* ----------------------------------------------------
   6. TRUST STATS BAR
---------------------------------------------------- */
.stats-bar {
    background-color: var(--primary-light);
    color: #ffffff;
    padding: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.25rem;
    color: var(--accent);
}

.stat-info h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.15rem;
}

.stat-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ----------------------------------------------------
   7. SERVICES GRID
---------------------------------------------------- */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-icon-wrapper {
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--secondary);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--secondary);
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.service-link i {
    transition: transform var(--transition-speed) ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ----------------------------------------------------
   8. WHY CHOOSE US
---------------------------------------------------- */
.why-section {
    background-color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-image-panel {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.why-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--secondary);
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.why-badge .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-feature-item {
    display: flex;
    gap: 1.25rem;
}

.why-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.why-feature-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.why-feature-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ----------------------------------------------------
   9. HOW IT WORKS
---------------------------------------------------- */
.process-section {
    background-color: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: dashed var(--border-color);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border: 4px solid #ffffff;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) ease;
}

.process-step:hover .process-number {
    background-color: var(--secondary);
    color: #ffffff;
    transform: scale(1.1);
}

.process-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ----------------------------------------------------
   10. FAQ SECTION ACCORDIONS
---------------------------------------------------- */
.faq-section {
    background-color: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color var(--transition-speed) ease;
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--secondary);
    transition: transform var(--transition-speed) ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
    max-height: 200px; /* Limit or change using JS */
}

/* ----------------------------------------------------
   11. CONTACT & MAP SECTION
---------------------------------------------------- */
.contact-section {
    padding: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-info-panel {
    background-color: var(--primary);
    color: #ffffff;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2.25rem;
}

.contact-info-panel p.lead {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-detail-icon {
    font-size: 1.5rem;
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-text p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.95rem;
}

.contact-map-panel {
    position: relative;
    min-height: 500px;
}

.contact-map-panel iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ----------------------------------------------------
   12. FOOTER
---------------------------------------------------- */
footer {
    background-color: var(--primary);
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    border-top: 4px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.social-icon:hover {
    background-color: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-hours-list {
    list-style: none;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.25rem;
}

.footer-hours-list li span.day {
    font-weight: 600;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright-links {
    display: flex;
    gap: 1.5rem;
}

.footer-copyright-links a {
    color: rgba(255, 255, 255, 0.5);
}

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

/* ----------------------------------------------------
   13. STANDARDS PAGES STYLING (page.php, single.php)
---------------------------------------------------- */
.standard-page-layout {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    margin: 3rem 0;
    border: 1px solid var(--border-color);
}

.standard-page-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.standard-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    gap: 1.5rem;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.standard-content {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
}

.standard-content p {
    margin-bottom: 1.5rem;
}

.standard-content h2, 
.standard-content h3 {
    margin: 2.5rem 0 1rem 0;
}

/* ----------------------------------------------------
   14. RESPONSIVE MEDIA QUERIES
---------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-booking-card {
        max-width: 550px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-image-panel {
        order: 2;
    }

    .why-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
    }

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

    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --h1-size: 2.25rem;
        --h2-size: 1.75rem;
    }

    .top-bar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #ffffff;
        z-index: 99;
        transition: left 0.4s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        padding: 2.5rem 1.5rem;
    }

    .main-navigation.active {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-navigation a {
        font-size: 1.25rem;
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-cta {
        display: none; /* Hide standard nav CTA and show in menu */
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-grid::before {
        display: none;
    }

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

    .contact-info-panel {
        padding: 4rem 2rem;
    }

    .contact-map-panel {
        height: 350px;
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-col:first-child {
        grid-column: span 1;
    }
}
