:root {
    --primary-color: #C8102E;
    --primary-light: #FF6B6B;
    --primary-dark: #9D0028;
    --secondary-color: #FF6B6B;
    --accent-color: #FFD700;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray-color: #6c757d;
    --border-color: #e9ecef;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-korean: 'Noto Sans KR', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body), var(--font-korean), sans-serif;
    color: var(--dark-color);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    width: 100%;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

.container,
.container-fluid {
    overflow-x: hidden;
    max-width: 100%;
}

::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* ============================================
   NAVIGATION - 밝은 디자인
   ============================================ */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200, 16, 46, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION - 밝은 디자인
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffe6e6 100%);
    overflow: hidden;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 16, 46, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
}

/* 데스크톱에서만 중앙 정렬 - 강화 */
@media (min-width: 992px) {
    .hero-section .row {
        justify-content: center !important;
    }
    
    /* 히어로 컬럼을 전체 너비로 확장하고 중앙 정렬 */
    .hero-section .col-lg-6:first-child {
        flex: 0 0 auto;
        width: 75%;
        max-width: 900px;
        margin: 0 auto;
    }
    
    /* 두 번째 컬럼(maple-leaf) 완전 숨김 */
    .hero-section .col-lg-6:last-child {
        display: none;
    }
    
    .hero-content {
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .hero-buttons {
        justify-content: center !important;
    }
    
    .hero-stats .row {
        justify-content: center !important;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0.15;
    z-index: -1;
    transform: skewY(-2deg);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-color);
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.25);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 16, 46, 0.35);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-light {
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--primary-color);
    background: transparent;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.25);
}

.hero-stats {
    animation: fadeInUp 1s ease 0.6s both;
    margin-top: 3rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0;
}

.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maple-leaf-decoration {
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

/* ============================================
   SECTION COMMON
   ============================================ */

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* PC에서만 Contact 섹션 설명 바로 밑에 오도록 */
@media (min-width: 992px) {
    .contact-section .section-title {
        margin-bottom: 0.5rem !important;
        text-align: left;
    }
    
    .contact-section .section-subtitle {
        text-align: left;
    }
    
    .contact-section .section-description {
        margin-top: 0 !important;
        margin-bottom: 1.5rem;
        margin-left: 0 !important;
        margin-right: auto;
        text-align: left;
    }
    
    .contact-section .section-header {
        margin-bottom: 2rem;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.1;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.about-badge i {
    font-size: 2rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.about-badge span {
    font-weight: 700;
    color: var(--dark-color);
}

.about-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 0.75rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(200, 16, 46, 0.1);
    border-color: var(--primary-color);
}

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

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    background: var(--light-color);
}

.service-tabs {
    border-bottom: none;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service-tabs .nav-link {
    border: 2px solid var(--border-color);
    border-radius: 50px;
    margin: 0 0.5rem;
    padding: 1rem 2rem;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
    background: var(--white);
}

.service-tabs .nav-link:hover,
.service-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white) !important;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(200, 16, 46, 0.2);
}

.service-tabs .nav-link i {
    margin-right: 0.5rem;
    color: inherit;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(200, 16, 46, 0.15);
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.1);
}

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

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-duration {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.service-duration-only {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.service-duration-only i {
    color: var(--primary-color);
}

/* ============================================
   PACKAGES SECTION
   ============================================ */

.packages-section {
    background: var(--white);
    padding-bottom: 3rem !important;
}

.packages-section .py-5 {
    padding-bottom: 3rem !important;
}

.package-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    height: 100%;
    border: 2px solid var(--border-color);
}

.package-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(200, 16, 46, 0.2);
    border-color: var(--primary-color);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(200, 16, 46, 0.15);
    border-color: var(--primary-color);
}

.package-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.package-price {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.package-price .currency {
    font-size: 1.5rem;
    color: var(--gray-color);
}

.package-price .amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.package-subtitle {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.package-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.btn-package {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    width: 100%;
}

.btn-package:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.3);
}

.btn-package-detail {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    width: 100%;
    margin-bottom: 1rem;
}

.btn-package-detail:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-package-detail i {
    transition: var(--transition);
}

.btn-package-detail.active i {
    transform: rotate(180deg);
}

.package-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
}

.package-details.show {
    max-height: 1000px;
    opacity: 1;
    margin-bottom: 1.5rem;
}

.package-detail-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--gray-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.package-detail-item:last-child {
    border-bottom: none;
}

.package-detail-item i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.package-detail-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--light-color);
}

.contact-info {
    display: grid;
    gap: 2rem;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--gray-color);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border-color);
    padding: 0.9rem 1.2rem;
    border-radius: 0.75rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(200, 16, 46, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--primary-color);
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 16, 46, 0.3);
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.footer-contact span {
    line-height: 1.5;
}

.footer-divider {
    margin: 3rem 0;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-trust {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.badge-trust i {
    color: var(--primary-color);
}

.badge-trust:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
    .footer-badges {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .footer-brand {
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-copyright {
        text-align: center !important;
    }
}

/* ============================================
   MODAL
   ============================================ */

.modal-content {
    border-radius: 1.5rem;
    border: none;
}

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

.modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
}

.modal-body {
    padding: 2rem;
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
    border-radius: 0.75rem;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
}

.alert-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .maple-leaf-decoration {
        font-size: 15rem;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .hero-buttons .btn {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-tabs {
        flex-direction: column;
        align-items: center !important;
        justify-content: center;
    }
    
    .service-tabs .nav-link {
        margin: 0.5rem auto;
        padding: 1rem 2rem;
        font-size: 1rem;
        text-align: center;
        max-width: none;
        width: 85%;
        min-width: 280px;
        display: block;
        white-space: nowrap;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}
