/* ===============================================
   DR-Drive-05 Theme - Red/Passion Style
   Concept: Sporty Feel, Fast Transitions
   =============================================== */

/* CSS Variables */
:root {
    --primary-color: #EF4444;
    --primary-dark: #DC2626;
    --primary-light: #FCA5A5;
    --secondary-color: #1F2937;
    --accent-color: #F59E0B;

    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;

    --white: #ffffff;
    --black: #000000;

    --gradient-primary: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    --gradient-dark: linear-gradient(135deg, #1F2937 0%, #111827 100%);

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Black Han Sans', 'Noto Sans KR', sans-serif;
    color: var(--gray-900);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition-normal);
}

/* Floating Decorations - Cherry Blossom Petals */
.floating-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-decorations .petal {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.4;
    animation: petalFloat 20s ease-in-out infinite;
}

.petal-1 { top: 10%; left: 5%; animation-delay: 0s; }
.petal-2 { top: 20%; right: 8%; animation-delay: 3s; }
.petal-3 { top: 40%; left: 3%; animation-delay: 6s; }
.petal-4 { top: 55%; right: 5%; animation-delay: 9s; }
.petal-5 { top: 70%; left: 7%; animation-delay: 12s; }
.petal-6 { top: 85%; right: 10%; animation-delay: 15s; }

@keyframes petalFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    25% { transform: translateY(-20px) rotate(10deg); opacity: 0.6; }
    50% { transform: translateY(-10px) rotate(-5deg); opacity: 0.3; }
    75% { transform: translateY(-25px) rotate(8deg); opacity: 0.5; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 15px 0;
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Black Han Sans', sans-serif;
}

.header.scrolled .navbar-brand {
    color: var(--primary-color) !important;
}

.navbar-brand i {
    color: var(--accent-color);
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.header.scrolled .navbar-nav .nav-link {
    color: var(--gray-700) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    background: rgba(255,255,255,0.1);
}

.header.scrolled .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: var(--gray-100);
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header.scrolled .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%2831, 41, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.header.scrolled .header-cta {
    background: var(--gradient-primary);
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239,68,68,0.85) 0%, rgba(31,41,55,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0;
}

.hero-text {
    color: var(--white);
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.btn-hero.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.btn-hero.btn-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

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

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Black Han Sans', sans-serif;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* About Section */
.about-section {
    background: var(--gray-50);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.about-badge i {
    font-size: 1.5rem;
}

.about-content {
    padding-left: 50px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content > p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    background: var(--gray-900);
    color: var(--white);
}

.services-section .section-badge {
    background: var(--primary-color);
    color: var(--white);
}

.services-section .section-title h2 {
    color: var(--white);
}

.services-section .section-title p {
    color: var(--gray-400);
}

.service-card {
    background: var(--gray-800);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.service-card:hover {
    transform: translateY(-10px);
    background: var(--gray-700);
}

.service-card.featured {
    background: var(--gradient-primary);
}

.service-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-400);
    margin-bottom: 25px;
}

.service-card.featured p {
    color: rgba(255,255,255,0.8);
}

.service-link {
    color: var(--primary-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--white);
}

/* Price Section */
.price-section {
    background: var(--white);
}

.price-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    height: 100%;
}

.price-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.08);
}

.price-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-header {
    padding: 40px 30px 20px;
    text-align: center;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.price-card.featured .price-icon {
    background: var(--primary-light);
}

.price-body {
    padding: 20px 30px 40px;
    text-align: center;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.price-amount .currency {
    font-size: 1rem;
    color: var(--gray-600);
}

.price-amount .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Black Han Sans', sans-serif;
}

.price-amount .unit {
    font-size: 1.5rem;
    color: var(--gray-600);
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    color: var(--primary-color);
}

.btn-price {
    width: 100%;
    padding: 14px 30px;
    background: var(--gray-100);
    color: var(--gray-800);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-price:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-price-featured {
    width: 100%;
    padding: 14px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-price-featured:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.price-note {
    padding: 15px 30px;
    background: var(--gray-50);
    font-size: 0.85rem;
    color: var(--gray-600);
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    background: var(--gray-50);
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.review-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.review-rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.review-rating i.inactive {
    color: var(--gray-300);
}

.review-content p {
    color: var(--gray-600);
    line-height: 1.8;
}

.review-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: var(--gray-900);
    color: var(--white);
}

.contact-section .section-badge {
    background: var(--primary-color);
    color: var(--white);
}

.contact-section .section-title h2 {
    color: var(--white);
}

.contact-section .section-title p {
    color: var(--gray-400);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.form-label i {
    color: var(--primary-color);
}

.form-control,
.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.1);
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 50px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Black Han Sans', sans-serif;
}

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

.footer-tel {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-desc {
    margin-bottom: 30px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
}

/* CTA Buttons */
.cta-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    height: 50px;
    padding: 0 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.cta-btn.apply {
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-btn.kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.cta-btn.tel {
    background: var(--gray-900);
    color: var(--white);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 220px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

#backToTop:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    margin: 20px 0;
}

.breadcrumb-item a {
    color: var(--gray-600);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--gray-400);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .hero-stats {
        gap: 30px;
    }

    .price-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column !important;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .navbar-nav.active {
        display: flex !important;
    }

    .navbar-nav .nav-link {
        color: var(--gray-700) !important;
        padding: 12px 16px;
        margin: 0;
    }

    .navbar-toggler {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        order: 3;
    }

    .navbar-toggler span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: var(--transition-fast);
    }

    .header.scrolled .navbar-toggler span {
        background: var(--gray-800);
    }

    .header-cta {
        order: 2;
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .header-cta span {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 100px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-image img {
        height: 350px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .cta-buttons {
        bottom: 15px;
        right: 15px;
    }

    .cta-btn {
        min-width: 120px;
        height: 45px;
        font-size: 0.85rem;
    }

    #backToTop {
        bottom: 180px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

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

    .price-amount .amount {
        font-size: 2.5rem;
    }
}

/* Utility */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background: var(--primary-color) !important; }
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition-fast);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===============================================
   BOARD PAGE STYLES - 연수후기
   =============================================== */

/* Glass Card */
.glass-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 25px;
    margin-bottom: 25px;
}

/* Search Box */
.search-box {
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.search-select {
    padding: 12px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--white);
    min-width: 120px;
    transition: var(--transition-fast);
}

.search-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Board Table */
.board-list {
    overflow-x: auto;
}

.board-table {
    width: 100%;
    border-collapse: collapse;
}

.board-table th,
.board-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.board-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
    white-space: nowrap;
}

.board-table tbody tr:hover {
    background: var(--gray-50);
}

.col-no { width: 80px; text-align: center; }
.col-title { min-width: 300px; }
.col-author { width: 100px; text-align: center; }
.col-date { width: 120px; text-align: center; }
.col-views { width: 80px; text-align: center; }

.badge-notice {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-new {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.post-title {
    color: var(--gray-800);
    font-weight: 500;
}

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

.post-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 5px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-600);
    font-weight: 500;
    transition: var(--transition-fast);
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.hide-mobile {
    display: table-cell;
}

.d-md-none {
    display: none;
}

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

    .d-md-none {
        display: block;
    }

    .col-title {
        min-width: auto;
    }

    .search-form {
        flex-direction: column;
    }

    .search-select,
    .search-input {
        width: 100%;
    }
}

/* ===============================================
   CLASS PAGE STYLES - 수업안내
   =============================================== */

.section-alt {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-description {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Class Grid */
.class-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-100);
}

.day-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.day-info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.day-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.feature-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Express Grid */
.express-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.express-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Notice Card */
.notice-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-left: 4px solid var(--primary-color);
}

.notice-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.notice-card ul {
    list-style: none;
    padding: 0;
}

.notice-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray-700);
}

.notice-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

@media (max-width: 1200px) {
    .class-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .class-grid,
    .express-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   RECOMMEND PAGE STYLES - 면허취득가이드
   =============================================== */

/* Tab Navigation */
.tab-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
    border: 2px solid var(--gray-200);
    transition: var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.process-item {
    position: relative;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.process-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    left: -50px;
    top: 25px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.process-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.process-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Recommend Grid */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.icon-premium {
    background: linear-gradient(135deg, #EF4444, #DC2626) !important;
    color: var(--white) !important;
}

.icon-budget {
    background: linear-gradient(135deg, #22C55E, #16A34A) !important;
    color: var(--white) !important;
}

.icon-flex {
    background: linear-gradient(135deg, #3B82F6, #2563EB) !important;
    color: var(--white) !important;
}

.recommend-stars {
    margin-top: 15px;
}

.recommend-stars i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Why Choose */
.why-choose {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.why-choose h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.why-item h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--gray-900);
}

.why-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

@media (max-width: 991px) {
    .recommend-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .process-timeline {
        padding-left: 40px;
    }

    .process-timeline::before {
        left: 15px;
    }

    .process-number {
        left: -40px;
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

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

    .tab-btn {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
}

/* ===============================================
   PRICE PAGE STYLES - 연수비용
   =============================================== */

.price-table-wrap {
    overflow-x: auto;
    max-width: 900px;
    margin: 0 auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.price-table thead tr {
    background: var(--gradient-primary);
}

.price-table thead th {
    padding: 20px;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}

.price-table thead th:first-child {
    text-align: left;
}

.price-table tbody td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-800);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: var(--gray-50);
}

.price-table tbody td:first-child {
    text-align: left;
}

.price-table tbody td:first-child strong {
    display: block;
    color: var(--gray-900);
    font-size: 1.05rem;
}

.price-table tbody td:first-child small {
    color: var(--gray-500);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .price-table thead th,
    .price-table tbody td {
        padding: 14px 10px;
        font-size: 0.9rem;
    }
}

/* ===============================================
   ROAD PAGE STYLES - 도로연수
   =============================================== */

/* Program Card */
.program-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.program-header {
    background: var(--gradient-primary);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.program-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.program-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.price-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.price-badge {
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
}

.price-badge.green {
    background: #22C55E;
    color: var(--white);
}

.price-badge.blue {
    background: #3B82F6;
    color: var(--white);
}

/* Schedule Table */
.schedule-table {
    padding: 30px;
}

.schedule-row {
    display: flex;
    border-bottom: 1px solid var(--gray-100);
    padding: 25px 0;
}

.schedule-row:last-child {
    border-bottom: none;
}

.day-label {
    width: 100px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.day-content {
    flex: 1;
}

.day-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-content h4 i {
    color: var(--primary-color);
}

.day-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

.program-note {
    background: var(--gray-50);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.program-note i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Weekend Grid */
.weekend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card.text-center {
    text-align: center;
}

.icon-weekend {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
    color: var(--white) !important;
}

.icon-express {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED) !important;
    color: var(--white) !important;
}

.program-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
}

/* Area Grid */
.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.area-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .program-header {
        flex-direction: column;
        text-align: center;
    }

    .price-badges {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .schedule-row {
        flex-direction: column;
    }

    .day-label {
        width: 100%;
        margin-bottom: 10px;
    }

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

    .program-header h2 {
        font-size: 1.5rem;
    }
}

/* ===== SUBPAGE COMPONENTS (공통 서브페이지 컴포넌트) ===== */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text-dark, #212121);
    margin-bottom: 12px;
}

.section-title .highlight,
.section-title .gradient-text {
    color: var(--primary, #4CAF50);
}

.section-desc {
    color: var(--text-muted, #757575);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Curriculum Grid */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.curriculum-card {
    background: var(--white, #fff);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100, #f5f5f5);
    position: relative;
    transition: all 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.curriculum-day {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #4CAF50);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.curriculum-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    border-radius: 16px;
    font-size: 1.5rem;
    margin: 20px auto 16px;
}

.curriculum-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary, #4CAF50);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-bottom: 12px;
}

.curriculum-card h3 {
    color: var(--text-dark, #212121);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.curriculum-card p {
    color: var(--text-muted, #757575);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Highlight Grid */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.highlight-item {
    background: var(--white, #fff);
    padding: 28px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-100, #f5f5f5);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    border-radius: 12px;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.highlight-item h4 {
    color: var(--text-dark, #212121);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.highlight-item p {
    color: var(--text-muted, #757575);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Option Grid */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.option-card {
    background: var(--white, #fff);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100, #f5f5f5);
    position: relative;
    transition: all 0.3s ease;
}

.option-card.featured {
    border-color: var(--primary, #4CAF50);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: scale(1.02);
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #4CAF50);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    border-radius: 16px;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.option-card h3 {
    color: var(--text-dark, #212121);
    margin-bottom: 12px;
}

.option-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    text-align: left;
}

.option-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-body, #424242);
    border-bottom: 1px dashed var(--gray-200, #eee);
    font-size: 0.95rem;
}

.option-list li:last-child {
    border-bottom: none;
}

.option-list li i {
    color: var(--primary, #4CAF50);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-light, #E8F5E9) 0%, var(--bg-cream, #FFFBF7) 100%);
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--text-dark, #212121);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted, #757575);
    margin-bottom: 24px;
}

/* Section CTA */
.section-cta {
    background: linear-gradient(135deg, var(--primary, #4CAF50) 0%, var(--primary-dark, #388E3C) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-cta .cta-box {
    background: rgba(255,255,255,0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .curriculum-grid,
    .option-grid {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .option-card.featured {
        transform: none;
    }

    .cta-box {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion */
.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-question .faq-toggle-icon {
    color: var(--primary-color, #333);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    color: #666;
    line-height: 1.8;
}

.faq-answer-inner ul {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer-inner ul li {
    margin-bottom: 4px;
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color, #333) 0%, var(--primary-dark, #222) 100%);
    border-radius: 16px;
    padding: 40px;
    color: white;
    height: 100%;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 6px;
}

.contact-info-content p {
    font-size: 18px;
    font-weight: 500;
}
