/* RESET & FONTS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #fdfdfd;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --accent-color: #b58d3d;
    /* Luxury Gold adapted for light theme */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

/* HEADER */
.luxury-header {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: var(--transition);
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    color: var(--text-main);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
}

.nav-item:hover::after {
    transform: translateX(0);
}

.contact-btn {
    background-color: var(--text-main);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    font-weight: 500;
}

.contact-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
    transform: translateY(0);
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-overlay .nav-item {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.close-mobile-nav {
    position: absolute;
    top: 2rem;
    right: 5%;
    font-size: 2.22rem;
    cursor: pointer;
    color: var(--text-main);
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* HERO SECTION */
.hero-immersive {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

.hero-overlay {
    /* Overlay removed so the original image colors pop correctly */
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-main);
    margin-top: 10vh;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    color: #000;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.85);
    /* small bright badge to make subtitle pop */
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 7rem);
    line-height: 1.1;
    font-weight: 600;
    text-shadow: 0 10px 40px rgba(255, 255, 255, 0.95), 0 2px 10px rgba(255, 255, 255, 0.6);
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
}

.hero-title .accent {
    font-style: italic;
    color: var(--accent-color);
}

.explore-btn {
    margin-top: 4rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.explore-btn:hover {
    transform: translateY(5px);
    background: var(--accent-color);
    color: #fff;
}

.explore-btn i {
    border: none;
    padding: 0;
    margin: 0;
}

/* INNER PAGE ELEGANT BANNERS */
.inner-banner {
    position: relative;
    height: 75vh;
    width: 100vw;
    margin-top: 5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-banner img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    z-index: 1;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: sepia(30%) contrast(1.1);
    /* Subtle artistic filter */
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.inner-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 8vw, 6rem);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 90%;
    width: 800px;
    transform: translateY(20px);
}

.inner-banner-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 500;
}

.inner-banner-content p {
    font-size: clamp(0.7rem, 2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 5px);
    color: var(--accent-color);
    font-weight: 600;
}

.elegant-divider {
    width: 1px;
    height: 120px;
    background: var(--accent-color);
    margin: 0 auto 5rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MARQUEE */
.marquee-wrap {
    overflow: hidden;
    white-space: nowrap;
    padding-top: 15vh;
    padding-bottom: 5vh;
}

.bg-text-marquee {
    font-family: var(--font-heading);
    font-size: 15vw;
    color: rgba(0, 0, 0, 0.03);
    font-weight: 700;
    line-height: 1;
}

/* EDITORIAL ABOUT */
.editorial-about {
    padding-bottom: 15vh;
}

.split-layout {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
}

.split-left {
    flex: 1;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--text-main);
}

.split-right {
    flex: 1;
    padding-top: 1rem;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
}

.stat .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* GALLERY HORIZONTAL SCROLL */
.collections-gallery {
    padding: 10vh 0;
    background-color: #f7f7f7;
    overflow: hidden;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5vh;
}

.link-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
    font-weight: 600;
}

.gallery-track {
    display: flex;
    gap: 3vw;
    padding: 0 5vw;
    width: fit-content;
}

.gallery-item {
    width: 600px;
    flex-shrink: 0;
}

.img-wrapper {
    overflow: hidden;
    aspect-ratio: 16/9;
    /* Reduced from 4/5 to shorten images on homepage */
    margin-bottom: 1.5rem;
    border-radius: 12px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover .img-wrapper img {
    transform: scale(1.05);
}

.item-details h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.item-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* HEALTHCARE EPIC */
.healthcare-epic {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.epic-img-container {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    z-index: 1;
}

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

.epic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    /* Light overlay for cinematic effect */
}

.epic-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--text-main);
}

.epic-content .badge {
    background: var(--accent-color);
    color: #fff;
    padding: 0.4rem 1rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

.epic-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.epic-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

.btn-solid-white {
    background: var(--text-main);
    color: #fff;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-solid-white:hover {
    background: var(--accent-color);
    color: white;
}

/* FOOTER */
.luxury-footer {
    padding: 10vh 0 5vh;
    background-color: #f7f7f7;
    color: var(--text-main);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5vh;
    margin-bottom: 5vh;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

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

.link-column h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.link-column p {
    color: var(--text-muted);
    line-height: 2;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.social-links a:hover {
    color: var(--accent-color);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-title {
        font-size: 12vw;
    }

    .gallery-item {
        width: 70vw;
    }
}

@media (max-width: 768px) {
    .luxury-header {
        padding: 1rem 5%;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .footer-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .gallery-item {
        width: 85vw;
    }

    .gallery-track {
        padding-left: 5vw;
    }

    .section-heading {
        font-size: 2rem;
    }

    .epic-content h2 {
        font-size: 2rem;
    }

    .footer-links {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .inner-banner {
        height: 50vh;
    }

    .grid-products,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 15vw;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .stat .num {
        font-size: 2rem;
    }

    .stats-row {
        gap: 2rem;
    }
}

/* HOME PAGE SPECIFIC STYLES */
.home-section {
    padding: 8rem 0;
    background: #fafafa;
}

.home-section.white-bg {
    background: #fff;
}

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

.section-header-center h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header-center p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-muted);
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    align-items: center;
}

/* Portfolio Cards */
.portfolio-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.portfolio-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.portfolio-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.portfolio-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.enquire-btn {
    align-self: center;
    padding: 0.8rem 2rem;
    border: 1px solid var(--text-main);
    border-radius: 8px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.enquire-btn:hover {
    background: var(--text-main);
    color: #fff;
}

/* Spec Cards */
.spec-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
}

.spec-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.spec-card p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.spec-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: auto;
}

/* Factory Section */
.factory-preheading {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.factory-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.factory-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.feature-icon {
    color: var(--accent-color);
}

.factory-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Inst. Solutions */
.solution-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--text-main);
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.solution-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Trusted section */
.logos-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.logo-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-main);
}

.logo-item span {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 5px;
}

/* ADDITIONAL RESPONSIVE POLISH */
@media (max-width: 1200px) {
    .grid-2 {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .home-section {
        padding: 5rem 0;
    }

    .section-header-center {
        margin-bottom: 3rem;
    }

    .grid-2, .grid-3 {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .home-section {
        padding: 4rem 0;
    }

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

    .factory-text {
        max-width: 100%;
    }

    .logos-bar {
        gap: 2rem;
    }

    .portfolio-content, .spec-card, .solution-card {
        padding: 2rem 1.5rem;
    }

    .spec-card img {
        height: 200px;
    }
}

/* ========================================================
   BACKWARDS COMPATIBILITY CSS FOR OLD HTML PAGES
   Ensures old templates adopt the very luxurious light theme.
   ======================================================== */

/* Old Sections Background Fix */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&q=80&w=2000') center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: var(--text-main);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 10vh 5%;
}

.tech-grid h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.tech-grid p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 5vh 5%;
}

.profile-card,
.product-card {
    background: #fff;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    text-align: center;
    border-radius: 12px;
    transition: var(--transition);
}

.profile-card:hover,
.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.profile-img {
    width: 100px;
    height: 100px;
    background: rgba(181, 141, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
}

.profile-card h3,
.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.product-card img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.contact-info {
    padding: 10vh 5%;
}

.contact-form {
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    padding: 1.2rem;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.marquee-container {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    overflow: hidden;
    background: #fff;
}

.client-logo strong {
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.client-logo {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

section {
    padding: 8vh 5%;
}

.btn {
    border: 1px solid var(--accent-color);
    padding: 1rem 2rem;
    color: var(--text-main);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--text-main);
    border-color: var(--text-main);
    color: #fff;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #fff;
}