/* ===============================================
   DR-Drive-16 Theme - 소프트 블루 (Soft Blue)
   클린 상하 레이아웃
   Primary: #87CEEB (스카이블루) / Accent: #5DADE2 (블루)
   =============================================== */

:root {
    --primary: #87CEEB;
    --primary-dark: #6BB9DB;
    --primary-light: #B8E0F0;
    --accent: #5DADE2;
    --accent-dark: #3498DB;
    --accent-light: #85C1E9;

    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --text-muted: #95A5A6;

    --bg-main: #FFFFFF;
    --bg-light: #F8FBFD;
    --bg-soft: #EBF5FB;
    --bg-sky: #E8F6FC;

    --border: #D4E6F1;
    --shadow-sm: 0 2px 10px rgba(93, 173, 226, 0.1);
    --shadow-md: 0 8px 30px rgba(93, 173, 226, 0.15);
    --shadow-lg: 0 15px 50px rgba(93, 173, 226, 0.2);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
}

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

body {
    font-family: 'Noto Sans KR', 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-main);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

a { text-decoration: none; color: var(--accent); transition: all 0.3s ease; }
a:hover { color: var(--accent-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    padding: 18px 0;
}

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

.navbar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon i {
    color: white;
    font-size: 1.2rem;
}

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

.navbar-nav .nav-item { display: inline-block; }

.navbar-nav .nav-link {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent);
    background: var(--bg-soft);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

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

.navbar-toggler span {
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}
.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-sky) 0%, var(--bg-main) 100%);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: white;
    border-radius: 100px;
    opacity: 0.8;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
}

.cloud-1 {
    width: 200px;
    height: 60px;
    top: 15%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.cloud-1::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 30px;
}

.cloud-1::after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 40px;
}

.cloud-2 {
    width: 150px;
    height: 45px;
    top: 25%;
    right: 15%;
    animation: float 10s ease-in-out infinite 1s;
}

.cloud-2::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-2::after {
    width: 45px;
    height: 45px;
    top: -25px;
    right: 30px;
}

.cloud-3 {
    width: 120px;
    height: 35px;
    top: 40%;
    left: 5%;
    animation: float 12s ease-in-out infinite 2s;
}

.cloud-3::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 15px;
}

.cloud-3::after {
    width: 35px;
    height: 35px;
    top: -20px;
    right: 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary);
    z-index: -1;
    opacity: 0.5;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-floating-badge i {
    color: #FFC107;
    font-size: 1.3rem;
}

.hero-floating-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===== Features Section ===== */
.features-section {
    background: var(--bg-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 45px 30px;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-main);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.about-experience .exp-num {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience .exp-text {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
}

.about-content .section-badge {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-list {
    list-style: none;
    margin-bottom: 35px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    font-weight: 500;
}

.about-list i {
    color: var(--accent);
    font-size: 1.1rem;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: var(--accent-dark);
    transform: translateX(5px);
    color: white;
}

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

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.price-card {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

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

.price-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.price-badge {
    display: inline-block;
    background: var(--bg-soft);
    color: var(--accent);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-card.featured .price-badge {
    background: var(--accent);
    color: white;
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-amount {
    margin-bottom: 30px;
}

.price-amount .won {
    font-size: 1.3rem;
    color: var(--text-muted);
    vertical-align: top;
}

.price-amount .number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-card.featured .price-amount .number {
    color: var(--accent);
}

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

.price-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px dashed var(--border);
}

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

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

.price-btn {
    display: block;
    padding: 15px;
    background: var(--bg-soft);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
}

.price-card.featured .price-btn {
    background: var(--accent);
    color: white;
}

.price-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.price-card.featured .price-btn:hover {
    background: var(--accent-dark);
}

.price-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-note i { color: var(--accent); margin-right: 5px; }

/* ===== Reviews Section ===== */
.reviews-section {
    background: var(--bg-main);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: all 0.3s ease;
}

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

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

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

.review-info {
    flex: 1;
}

.review-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.review-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    color: #FFC107;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.section-more {
    text-align: center;
    margin-top: 50px;
}

.section-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent);
    padding: 12px 30px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.section-more a:hover {
    background: var(--accent);
    color: white;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--bg-soft);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-main);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--bg-main);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 1.4rem;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-content p,
.info-content a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 45px;
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--accent);
    margin-right: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-main);
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 70px 0 35px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 22px;
}

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

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a,
.footer-col li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col i {
    width: 22px;
    color: var(--primary);
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

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

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
    color: white;
}

.cta-btn.apply { background: var(--accent); }
.cta-btn.kakao { background: #FEE500; color: #3C1E1E; }
.cta-btn.kakao:hover { color: #3C1E1E; }
.cta-btn.tel { background: var(--primary-dark); }

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 200px;
    width: 50px;
    height: 50px;
    background: var(--bg-main);
    border: 2px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }

    .hero-image {
        display: none;
    }

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

    .about-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .about-experience { right: 20px; bottom: -20px; width: 120px; height: 120px; }
    .about-experience .exp-num { font-size: 2.5rem; }
    .about-content .section-badge,
    .about-content .section-title { text-align: center; }

    .price-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 30px; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-10px); }
}

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

    .navbar-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column !important;
        padding: 25px;
        box-shadow: var(--shadow-md);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .navbar-nav.active { display: flex !important; }
    .navbar-nav .nav-item { width: 100%; }
    .navbar-nav .nav-link { padding: 15px 20px; }

    .header-cta { display: none; }

    .hero-title { font-size: 2.4rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-wrap: wrap; gap: 25px; }

    .section { padding: 80px 0; }
    .section-title { font-size: 2rem; }

    .features-grid,
    .review-grid { grid-template-columns: 1fr; }

    .contact-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-links { grid-template-columns: 1fr; }
    .footer-brand { margin-bottom: 30px; }
    .footer-brand a { justify-content: center; }

    .cta-btn span { display: none; }
    .cta-btn { padding: 14px; border-radius: 50%; }

    .cloud { display: none; }
}

@media (max-width: 480px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-badge { font-size: 0.9rem; padding: 8px 16px; }

    .feature-card { padding: 35px 20px; }
    .feature-icon { width: 70px; height: 70px; }
    .feature-icon i { font-size: 1.6rem; }

    .price-card { padding: 35px 25px; }
    .price-amount .number { font-size: 2.5rem; }

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

    .about-experience { width: 100px; height: 100px; }
    .about-experience .exp-num { font-size: 2rem; }
    .about-experience .exp-text { font-size: 0.75rem; }
}

/* ===== Subpage Styles ===== */
.page-header {
    background: linear-gradient(180deg, var(--bg-sky) 0%, var(--bg-main) 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--text-light);
}

/* Review Page */
.review-section {
    padding: 80px 0;
}

.review-grid.subpage {
    grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 576px) {
    .review-grid.subpage { grid-template-columns: 1fr; }
}

.review-rating {
    color: #FFC107;
    margin-bottom: 10px;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.review-content {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.review-author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* CTA Card */
.cta-section {
    padding: 60px 0;
    background: var(--bg-soft);
}

.cta-card {
    text-align: center;
    padding: 50px;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Price Page Notice */
.price-notice {
    text-align: center;
    padding: 20px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    color: var(--text-light);
    margin-top: 30px;
}
