:root {
    --bg-color: #050505;
    /* Black */
    --text-primary: #ffffff;
    /* White */
    --text-secondary: #a0a0a0;
    /* Grey */
    --accent-grey: #2a2a2a;
}

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

/* Fonts */
@font-face {
    font-family: 'Biko';
    src: url('Biko_Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Biko', 'Outfit', sans-serif;
    /* Use Biko, fallback to Outfit */
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

#bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    background: rgba(5, 5, 5, 0.4);
    /* Glassmorphism subtle base */
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeIn 1.5s ease-out;
}

.logo-container {
    margin-bottom: 2.5rem;
}

.logo-container img {
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    height: auto;
    max-width: 100%;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 0.5rem;
}

.message-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.message-container p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .message-container h2 {
        font-size: 2rem;
    }

    .content-wrapper {
        margin: 1.5rem;
    }
}

/* Homepage Specific Styles */
.homepage {
    display: block;
    /* Override flex centering from body */
    overflow-y: auto;
    /* Allow scrolling */
    overflow-x: hidden;
    font-family: 'Biko', 'Outfit', sans-serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
}

/* Search Bar */
.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    margin: 0 2rem;
    flex-grow: 0.5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.search-container input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
}

.search-container input::placeholder {
    color: var(--text-secondary);
}

.search-container button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-container button:hover {
    color: var(--text-primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    padding-top: 60px;
    /* Offset for navbar */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: Add gentle zoom effect on active */
    transform: scale(1.05);
    transition: opacity 0.8s ease-in-out, transform 8s ease;
    pointer-events: none;
    /* Prevent clicking hidden slides */
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
    z-index: 5;
}

.hero-content {
    background: rgba(5, 5, 5, 0.3);
    padding: 4rem 5rem;
    max-width: 1200px;
}

.hero-title {
    font-size: 6rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

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

.dot.active {
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-primary);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Section Container */
.section-container {
    position: relative;
    z-index: 10;
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-full-width {
    position: relative;
    z-index: 10;
    padding: 6rem 0;
    /* No horizontal padding on container */
    width: 100%;
}

.section-full-width .section-container {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 2rem;
}

.section-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "San Francisco", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.2rem;
    /* Slightly larger */
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
    /* Bolder for Apple look */
    letter-spacing: -0.5px;
    /* Apple style tight tracking */
    color: #fff;
}

/* Cards Grid */
/* Cards Grid - Now Scrollable Flex */
.cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    align-items: start;
    padding-bottom: 2rem;
    /* Space for scrollbar if visible/needed */
    padding-left: max(3rem, calc((100% - 1200px) / 2 + 3rem));
    /* Smart alignment */
    padding-right: 0;
    /* Full edge extension */
    /* Allow scrolling past last item for edge spacing */
    scrollbar-width: none;
    /* Firefox */
    width: 100%;
}

/* Hide scrollbar for Chrome/Safari/Opera */
.cards-grid::-webkit-scrollbar {
    display: none;
}

.center-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    min-width: 320px;
    /* Ensure cards don't shrink */
    max-width: 350px;
    /* Optional cap if needed */
    scroll-snap-align: start;
    /* Snap aligning */
}

.center-card h3.center-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2rem 2rem 1.5rem 2rem;
    text-align: left;
}

.card-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.glass-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Service List */
.service-list {
    list-style: none;
    margin: 0 2rem 2rem 2rem;
    padding: 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.status-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.status-icon.check {
    color: #4ade80;
    /* Green */
}

.status-icon.cross {
    color: #ef4444;
    /* Red */
    opacity: 0.6;
}

.service-item.unavailable {
    color: #666;
    text-decoration: line-through;
}

/* Card Actions */
.card-actions {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-row {
    display: flex;
    gap: 1rem;
}

.btn-details {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    text-decoration: none;
    height: 48px;
    /* Fixed height to match WhatsApp */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    /* Reduced padding */
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    /* Reduced size */
    white-space: nowrap;
    /* Prevent wrapping */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-details:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    width: 48px;
    height: 48px;
    /* Fixed height match */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

.btn-call {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}


/* Footer */
/* --- Dealer Details Page Styles --- */
.dealer-page {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    /* Allow height to grow */
    align-items: stretch;
    /* Force full width for children */
}

.dealer-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    flex: 1;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Gallery */
.main-image-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: #fff;
}

/* Dealer Info */
.dealer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dealer-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.dealer-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dealer-badge {
    background: linear-gradient(270deg, #ffd700, #ffaa00, #ffea00, #ffd700);
    background-size: 300% 300%;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    animation: gradientShift 4s ease infinite;
}

.dealer-badge.classic {
    background: linear-gradient(270deg, #d7d7d7, #bdc3c7, #ecf0f1, #bdc3c7);
    color: #2c3e50;
    font-weight: 800;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Gold Animated Stars */
@keyframes goldShine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.stars.gold-animated {
    display: inline-block;
    background: linear-gradient(90deg,
            #FFD700 0%,
            #FFFACD 20%,
            #FFFFFF 50%,
            #FFFACD 80%,
            #FFD700 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 3s linear infinite;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.rating-text .score {
    font-weight: 700;
    color: #fff;
}

/* Service List */
.dealer-services {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.service-status-list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-status-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #ccc;
}

.service-status-list li .icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-status-list li.available .icon.check {
    stroke: #4caf50;
    /* Green */
}

.service-status-list li.unavailable .icon.cross {
    stroke: #ff4d4d;
    /* Red */
    opacity: 0.6;
}

.service-status-list li.unavailable {
    color: #666;
    text-decoration: line-through;
}

/* Actions */
.dealer-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

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

.call-btn {
    background: #fff;
    color: #000;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

/* Map */
.dealer-map {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    height: 500px;
    /* Fixed height for map container */
    position: relative;
    z-index: 5;
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Leaflet's internal z-indices handle controls */
}

.google-reviews-section {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .dealer-detail-container {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    position: relative;
    z-index: 10;
    padding: 1.5rem 2rem 2rem 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    background: #050505;
}

/* Animated Silver Separator Line */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            #444444 0%,
            #888888 20%,
            #ffffff 50%,
            #888888 80%,
            #444444 100%);
    background-size: 200% auto;
    animation: silverShine 3s linear infinite;
    z-index: 11;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 3rem;
}

/* Footer Left */
.footer-brand {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Logo Styles */
.footer-logo img {
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.brand-tagline {
    color: #888;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Footer Right */
.footer-links-group {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links-group {
        width: 100%;
        justify-content: space-between;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .menu-toggle {
        display: block;
        /* Show on mobile */
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-container {
        padding: 4rem 1.5rem;
    }
}

/* Why Us Section - Silver Separator */
#why-us {
    background: linear-gradient(to bottom, #050505, #080808, #050505);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8rem 0;
    margin: 4rem 0;
    overflow: hidden;
}

#why-us .section-container {
    max-width: 1400px;
    /* Wider for grid */
    padding: 0 2rem;
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Silver Text Animation */
@keyframes silverShine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.silver-text {
    background: linear-gradient(90deg,
            #888888 0%,
            #e0e0e0 20%,
            #ffffff 50%,
            #e0e0e0 80%,
            #888888 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: silverShine 4s linear infinite;
    display: inline-block;
}

.silver-shimmer-text {
    background: linear-gradient(90deg,
            #888888 0%,
            #e0e0e0 20%,
            #ffffff 50%,
            #e0e0e0 80%,
            #888888 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: silverShine 4s linear infinite;
}

#why-us .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Apply reusable shimmer to specific elements */
#why-us .section-title,
.feature-card h3,
#centers .section-title {
    background: linear-gradient(90deg, #888888 0%, #ffffff 50%, #888888 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: silverShine 3s linear infinite;
}

.feature-card {
    text-align: center;
    /* Centered for clean separator look */
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(100%) brightness(1.2);
    /* Silver/Monochrome look */
    transition: filter 0.3s ease;
}

.feature-card:hover .feature-icon {
    filter: grayscale(0%) brightness(1);
    /* Color reveal on hover */
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #a0a0a0;
    /* Silver-ish grey */
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 300;
}