/* ================================
   CSS Variables & Root Styles
   ================================ */
:root {
    --color-amber-50: #fffbeb;
    --color-amber-100: #fef3c7;
    --color-amber-400: #fbbf24;
    --color-amber-500: #f59e0b;
    --color-amber-600: #d97706;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-white: #ffffff;
    --color-black: #000000;
    --sidebar-width: 300px;

    --font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ================================
   CSS Reset & Base Styles
   ================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-gray-900);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* ================================
   Utility Classes
   ================================ */
.min-h-screen {
    min-height: 100vh;
}

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

.bg-gray-50 {
    background-color: var(--color-gray-50);
}

.text-amber {
    color: var(--color-amber-500);
}

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

.hidden {
    display: none !important;
}

.italic {
    font-style: italic;
}

/* ================================
   Container
   ================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }

    .container-narrow {
        padding: 0 3rem;
    }
}

/* ================================
   Section Styles
   ================================ */
.section {
    padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
    .section {
        padding: 5rem 3rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

/* ================================
   Navbar
   ================================ */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .navbar-container {
        padding: 1rem 3rem;
    }
}

.navbar-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.navbar-links {
    display: none;
    gap: 2rem;
}

.navbar-links a {
    color: var(--color-white);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.navbar-links a:hover {
    color: var(--color-amber-400);
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    background-color: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    color: var(--color-white);
    font-size: 1.125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color var(--transition-fast);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--color-amber-400);
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    height: 100vh;
    background-color: var(--color-gray-900);
    margin-top: -72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: calc(100% - 88px);
    padding: 1.5rem;
    max-width: 48rem;
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 3rem;
    }
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-content h2 {
        font-size: 4.5rem;
    }
}

.hero-content>p {
    font-size: 1.25rem;
    color: var(--color-gray-200);
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-content>p {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .hero-contact {
        flex-direction: row;
    }
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.hero-contact-item:hover {
    color: var(--color-amber-400);
}

.hero-contact-item .icon {
    width: 20px;
    height: 20px;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--color-amber-500);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-amber-600);
}

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

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-amber-500);
}

.btn-white:hover {
    background-color: var(--color-gray-100);
}

.btn-full {
    width: 100%;
}

.btn-rounded {
    border-radius: 9999px;
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.btn-with-icon .icon {
    width: 20px;
    height: 20px;
}

/* ================================
   Services Section
   ================================ */
.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: var(--color-white);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--color-amber-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-700);
}

.bullet {
    width: 6px;
    height: 6px;
    background-color: var(--color-amber-500);
    border-radius: 50%;
}

/* ================================
   About Section
   ================================ */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .about-content h2 {
        font-size: 3rem;
    }
}

.about-intro {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-2xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-amber-500);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--color-gray-600);
}

.values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--color-amber-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--color-gray-600);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   Gallery Section
   ================================ */
.gallery-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    background-color: var(--color-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.gallery-hidden {
    display: none;
}

.gallery-hidden.show {
    display: block;
}

.gallery-image {
    height: 300px;
    background-color: var(--color-white);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-title {
    padding: 1rem;
    text-align: center;
}

.gallery-title h3 {
    font-size: 1.25rem;
    color: var(--color-gray-800);
}

.show-more-container {
    text-align: center;
    margin-bottom: 3rem;
}

.info-box {
    margin-top: 4rem;
    background-color: var(--color-amber-50);
    border-left: 4px solid var(--color-amber-500);
    padding: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.info-box p {
    font-size: 1.125rem;
    color: var(--color-gray-700);
}

/* ================================
   Products Section
   ================================ */
.products-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-item {
    background-color: var(--color-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.product-hidden {
    display: none;
}

.product-hidden.show {
    display: flex;
}

.product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--color-white);
    padding: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-title {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title h3 {
    font-size: 1.25rem;
    color: var(--color-gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* ================================
   Testimonials Section
   ================================ */
.scroller {
    max-width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.scroller[data-speed="fast"] .scroller__inner {
    animation-duration: 20s;
}

.scroller[data-speed="slow"] .scroller__inner {
    animation-duration: 40s;
}

.scroller:hover .scroller__inner {
    animation-play-state: paused;
}

@keyframes scroll {
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
    width: 300px;
    flex-shrink: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    min-height: 4rem;
    border-radius: 50%;
    background-color: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    border: 1px solid var(--color-gray-100);
}

.testimonial-avatar span {
    font-size: 1.25rem;
    font-weight: 700;
}

.testimonial-header h4 {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-gray-900);
}

.testimonial-header p {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.testimonial-text {
    color: var(--color-gray-600);
    font-style: italic;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
}

.testimonial-divider {
    border: none;
    border-top: 1px solid var(--color-gray-200);
    margin: 3rem 0;
}

.testimonial-stats {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonial-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-stat {
    padding: 1rem;
}

.stat-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: var(--color-gray-600);
}

/* ================================
   Contact Section
   ================================ */
.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form-container {
    background-color: var(--color-white);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--color-gray-700);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-amber-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--color-white);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-info-item .icon {
    flex-shrink: 0;
}

.contact-info-item .icon.text-amber {
    color: var(--color-amber-500);
}

.info-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--color-gray-600);
}

.contact-info-item a:hover {
    color: var(--color-amber-500);
}

.emergency-card {
    background-color: var(--color-amber-500);
    color: var(--color-white);
    padding: 2rem;
}

.emergency-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.emergency-card p {
    margin-bottom: 1.5rem;
}

/* ================================
   Location Section
   ================================ */
.location-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-map {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card {
    background-color: var(--color-gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-icon-wrapper {
    padding: 0.75rem;
    background-color: var(--color-amber-100);
    border-radius: 0.5rem;
}

.location-icon-wrapper .icon {
    width: 24px;
    height: 24px;
    color: var(--color-amber-600);
}

.location-card h3 {
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.location-card p {
    color: var(--color-gray-600);
    line-height: 1.6;
}

.location-card a {
    color: var(--color-gray-600);
}

.location-card a:hover {
    color: var(--color-amber-600);
}

.location-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--color-amber-600) !important;
    font-weight: 500;
}

.location-link:hover {
    color: var(--color-amber-700) !important;
}

/* ================================
   FAQ Section
   ================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-white);
    text-align: left;
    font-weight: 500;
    color: var(--color-gray-900);
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--color-gray-50);
}

.faq-question .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gray-400);
}

.faq-item.active .faq-question .icon {
    color: var(--color-amber-500);
}

.faq-item.active .faq-question .chevron-down {
    display: none;
}

.faq-item.active .faq-question .chevron-up {
    display: block;
}

.faq-item:not(.active) .faq-question .chevron-up {
    display: none;
}

.faq-answer {
    display: none;
    padding: 1rem 1.5rem;
    background-color: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-200);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--color-gray-600);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}

/* ================================
   Footer
   ================================ */
.footer {
    background-color: var(--color-gray-900);
    color: var(--color-white);
    padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
    .footer {
        padding: 3rem;
    }
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-about p,
.footer-links ul li,
.footer-services ul li,
.footer-social p {
    color: var(--color-gray-400);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-amber-400);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icons a {
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.social-icons a:hover {
    color: var(--color-amber-400);
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-800);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-legal {
        justify-content: flex-end;
    }
}

.footer-legal a {
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-amber-400);
}