/* ========================================
   AustroPlanner Custom Styles
   Bootstrap 5 + Custom Dark Luxury Theme
   ======================================== */

/* Color Variables */
:root {
    /* Dark luxury theme with gold accents */
    --bg-dark: #13151a;
    --bg-card: #1a1d24;
    --bg-secondary: #22252e;

    /* Gold primary color */
    --color-primary: #d4a745;
    --color-primary-dark: #9e7a2f;
    --color-primary-light: #e8c878;

    /* Text colors */
    --text-white: #f5f1e8;
    --text-muted: #8a8883;
    --text-white-50: rgba(245, 241, 232, 0.5);

    /* Borders */
    --border-color: #22252e;

    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
}

/* Custom Bootstrap Overrides */
.bg-dark {
    background-color: var(--bg-dark) !important;
}

.bg-secondary {
    background-color: var(--bg-secondary) !important;
}

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

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

.text-white-50 {
    color: var(--text-white-50) !important;
}

.border-secondary {
    border-color: var(--border-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 167, 69, 0.3);
}

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

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-dark);
}

.btn-outline-light {
    border-color: var(--text-white);
    color: var(--text-white);
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: var(--text-white);
    border-color: var(--text-white);
    color: var(--bg-dark);
}

/* Navbar Styles */
.navbar-custom {
    background-color: transparent;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
}

.navbar-custom.scrolled {
    background: rgba(19, 21, 26, 0.85);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.navbar-nav .nav-link {
    color: var(--text-white-50) !important;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-chauffeur.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(19, 21, 26, 0.4) 0%,
        rgba(19, 21, 26, 0.6) 50%,
        rgba(19, 21, 26, 0.95) 100%
    );
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
    padding-top: 100px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

.scroll-indicator a {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--color-primary) !important;
}

/* Cards */
.card {
    background-color: var(--bg-card);
    border: 1px solid rgba(34, 37, 46, 0.5);
    border-radius: 0.5rem;
    transition: all 0.5s ease;
}

.card-luxury {
    background-color: var(--bg-card);
    border: 1px solid rgba(34, 37, 46, 0.5);
    transition: all 0.5s ease;
}

.card-luxury:hover {
    border-color: rgba(212, 167, 69, 0.5);
    box-shadow: 0 20px 60px rgba(212, 167, 69, 0.1);
    transform: translateY(-5px);
}

/* Feature Icons */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(212, 167, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.card:hover .feature-icon,
.card-luxury:hover .feature-icon {
    border-color: var(--color-primary);
    background-color: rgba(212, 167, 69, 0.1);
}

/* Service Icons */
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--color-primary);
}

.card:hover .service-icon {
    background-color: rgba(212, 167, 69, 0.2);
}

/* ========================================
   Why Choose Section — Row Layout
   ======================================== */

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

@keyframes whyIconSpin {
    0%   { transform: scale(0.5) rotate(-20deg); opacity: 0; }
    70%  { transform: scale(1.15) rotate(6deg);  opacity: 1; }
    100% { transform: scale(1) rotate(0deg);     opacity: 1; }
}

/* Container */
.why-rows {
    border-top: 1px solid rgba(212, 167, 69, 0.15);
}

/* Each row */
.why-row {
    display: grid;
    grid-template-columns: 72px 72px 1fr 40px;
    align-items: center;
    gap: 0 2rem;
    padding: 2rem 1rem;
    border-bottom: 1px solid rgba(212, 167, 69, 0.1);
    position: relative;
    cursor: default;
    opacity: 0;
    transition: background 0.3s ease;
}

/* Gold left bar on hover */
.why-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-row:hover {
    background: rgba(212, 167, 69, 0.03);
}

.why-row:hover::before {
    height: 100%;
}

/* Scroll reveal */
.why-row.why-revealed {
    animation: whyRowIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Large decorative number */
.why-row-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: rgba(212, 167, 69, 0.12);
    line-height: 1;
    transition: color 0.35s ease;
    user-select: none;
}

.why-row:hover .why-row-num {
    color: rgba(212, 167, 69, 0.3);
}

/* Icon circle */
.why-row-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-row-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 167, 69, 0.07);
    border: 1px solid rgba(212, 167, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.why-row-icon i {
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: transform 0.35s ease;
}

.why-row.why-revealed .why-row-icon {
    animation: whyIconSpin 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.why-row:hover .why-row-icon {
    background: rgba(212, 167, 69, 0.15);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(8deg);
}

/* Text body */
.why-row-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.why-row-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    transition: color 0.3s ease;
}

.why-row:hover .why-row-title {
    color: var(--color-primary);
}

.why-row-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* Arrow indicator */
.why-row-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: rgba(212, 167, 69, 0);
    font-size: 1.25rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.why-row:hover .why-row-arrow {
    color: var(--color-primary);
    transform: translateX(4px) translateY(-4px);
}

/* Responsive */
@media (max-width: 767.98px) {
    .why-row {
        grid-template-columns: 48px 48px 1fr;
        grid-template-rows: auto auto;
        gap: 0 1rem;
        padding: 1.5rem 0.5rem;
    }

    .why-row-arrow { display: none; }

    .why-row-desc {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
        padding-left: 0.25rem;
    }

    .why-row-num { font-size: 1.75rem; }
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(212, 167, 69, 0.12);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.faq-open {
    border-color: rgba(212, 167, 69, 0.4);
    box-shadow: 0 8px 30px rgba(212, 167, 69, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.375rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-item.faq-open .faq-question {
    color: var(--color-primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(212, 167, 69, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-primary);
}

.faq-icon i {
    font-size: 1rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.faq-open .faq-icon {
    background: rgba(212, 167, 69, 0.12);
    border-color: var(--color-primary);
}

.faq-item.faq-open .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin: 0;
    padding-bottom: 1.375rem;
    border-top: 1px solid rgba(212, 167, 69, 0.08);
    padding-top: 0.875rem;
}

.faq-answer a {
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 167, 69, 0.4);
    transition: border-color 0.2s ease;
}

.faq-answer a:hover {
    border-color: var(--color-primary);
}

/* Service Card Link */
.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
    gap: 0.25rem;
}

.service-link:hover {
    color: var(--color-primary-light);
    gap: 0.5rem;
}

/* Contact Icons */
.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(212, 167, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.card:hover .contact-icon {
    background-color: rgba(212, 167, 69, 0.2);
}

/* Vehicle Cards */
.vehicle-image {
    height: 224px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-card), transparent);
    pointer-events: none;
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212, 167, 69, 0.3),
        transparent
    );
    margin: 3rem 0;
}

/* Map Styles */
.map-grayscale {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.map-grayscale:hover {
    filter: grayscale(0%);
}

/* Typography Utilities */
.tracking-widest {
    letter-spacing: 0.3em;
}

.font-display {
    font-family: var(--font-display);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

.animate-fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-collapse {
        background: rgba(19, 21, 26, 0.95);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(34, 37, 46, 0.3);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
    }

    .hero-section .container {
        padding-top: 120px;
    }
}

@media (max-width: 767.98px) {
    .display-1 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }
}

/* Smooth Scroll Offset for Fixed Navbar */
section {
    scroll-margin-top: 100px;
}

/* Badge Customization */
.badge.bg-primary {
    background-color: var(--color-primary) !important;
    color: var(--bg-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.75rem;
}

/* Button Hover Effects */
a.btn, button.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Loading States */
.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
    opacity: 0;
    transform: scale(0);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    color: white;
}

.whatsapp-float i {
    line-height: 1;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile */
    }
}

/* ========================================
   About Section
   ======================================== */

/* Decorative background orbs */
.about-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-orb-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -200px;
    background: radial-gradient(circle, rgba(212, 167, 69, 0.05) 0%, transparent 70%);
}

.about-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(212, 167, 69, 0.04) 0%, transparent 70%);
}

/* Heading underline accent */
.about-heading-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    border-radius: 2px;
}

/* Intro paragraph */
.about-intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-white);
    font-family: var(--font-body);
    border-left: 3px solid var(--color-primary);
    padding-left: 1.25rem;
}

/* Checklist */
.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--text-white-50);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.about-check-item:hover {
    color: var(--text-white);
}

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212, 167, 69, 0.12);
    border: 1px solid rgba(212, 167, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.check-icon i {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 700;
}

.about-check-item:hover .check-icon {
    background: rgba(212, 167, 69, 0.2);
    border-color: var(--color-primary);
}

/* Stat Cards */
.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 167, 69, 0.15);
    border-radius: 0.75rem;
    padding: 1.75rem 1.25rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    border-color: rgba(212, 167, 69, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(212, 167, 69, 0.1);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.125rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-suffix,
.stat-prefix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    font-weight: 500;
}

/* Quote Block */
.about-quote {
    background: var(--bg-card);
    border: 1px solid rgba(212, 167, 69, 0.15);
    border-radius: 0.75rem;
    padding: 1.75rem;
    position: relative;
}

.about-quote-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    opacity: 0.6;
    line-height: 1;
    display: block;
    margin-bottom: 0.75rem;
}

.about-quote-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-quote-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--color-primary), transparent);
    max-width: 60px;
}

.about-quote-author {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    white-space: nowrap;
}

/* Service Tags */
.about-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding: 1.5rem 0 0.5rem;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 167, 69, 0.06);
    border: 1px solid rgba(212, 167, 69, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    color: var(--text-white-50);
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: default;
    transition: all 0.3s ease;
}

.about-tag i {
    color: var(--color-primary);
    font-size: 0.875rem;
}

.about-tag:hover {
    background: rgba(212, 167, 69, 0.12);
    border-color: rgba(212, 167, 69, 0.45);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767.98px) {
    .stat-number {
        font-size: 2.25rem;
    }

    .about-intro-text {
        font-size: 1rem;
    }

    .about-tags-row {
        gap: 0.5rem;
    }

    .about-tag {
        font-size: 0.8125rem;
        padding: 0.4rem 1rem;
    }
}
