/* ===============================================
   DR-Drive-19 Theme - Minimal Rose
   Fullscreen Section Layout
   Primary: #F4C2C2 (Rose) + #FFFFFF (White)
   =============================================== */

:root {
    --primary: #F4C2C2;
    --primary-dark: #E5A3A3;
    --primary-light: #FBE4E4;
    --accent: #D4A5A5;
    --accent-dark: #C08080;

    --text-dark: #3D3D3D;
    --text-light: #6B6B6B;
    --text-muted: #9E9E9E;

    --bg-main: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-rose: #FDF5F5;
    --bg-soft: #FAF0F0;

    --border: #F0E0E0;
    --shadow-sm: 0 2px 10px rgba(244, 194, 194, 0.15);
    --shadow-md: 0 8px 25px rgba(244, 194, 194, 0.2);
    --shadow-lg: 0 15px 50px rgba(244, 194, 194, 0.25);

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

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

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

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

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    backdrop-filter: blur(10px);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

.navbar-nav .nav-item {
    display: inline-block !important;
    margin: 0 !important;
}

.navbar-nav .nav-link {
    display: block !important;
    padding: 10px 18px !important;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    white-space: nowrap !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-dark);
    background: var(--primary-light);
}

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

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

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

.navbar-toggler span {
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 3px;
    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(7px, -7px); }

/* ===== Fullscreen Sections ===== */
.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    scroll-snap-align: start;
}

.section-content {
    width: 100%;
    padding: 100px 0;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, var(--bg-rose) 0%, var(--bg-white) 100%);
}

.hero-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 35px;
}

.hero-badge i { font-size: 1.1rem; }

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.2;
}

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

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

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

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

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

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--accent-dark);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.scroll-hint span { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
.scroll-hint i { font-size: 1rem; }

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

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

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

.about-image {
    position: relative;
}

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

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text { font-size: 0.9rem; }

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

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

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

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

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

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

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

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

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

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

.feature-card {
    text-align: center;
    padding: 45px 30px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

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

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

.feature-icon i {
    font-size: 1.8rem;
    color: var(--accent-dark);
}

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

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

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

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

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

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

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

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

.price-card.featured {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

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

.price-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--text-dark);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.price-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 8px 22px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

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

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

.price-card.featured h3 { color: white; }

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

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

.price-card.featured .currency { color: rgba(255, 255, 255, 0.8); }

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

.price-card.featured .number { color: white; }

.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-dark);
    border-bottom: 1px solid var(--border);
}

.price-card.featured .price-features li {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

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

.price-features i { color: var(--accent-dark); font-size: 1rem; }
.price-card.featured .price-features i { color: white; }

.price-btn {
    display: block;
    padding: 16px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

.review-stars {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.review-stars i { margin-right: 2px; }

.review-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.author-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 3px;
}

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

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

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

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

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

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

.faq-item {
    background: var(--bg-rose);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
}

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

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

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

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 22px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    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-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

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

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

.info-icon.kakao { background: #FEE500; }
.info-icon.kakao i { color: #3C1E1E; }

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

.info-content p,
.info-content a {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.info-content span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.contact-form {
    background: var(--bg-white);
    padding: 45px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

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

.form-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.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-rose);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(244, 194, 194, 0.2);
}

.form-group input::placeholder { color: var(--text-muted); }

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

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

.form-notice {
    text-align: center;
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-notice i { margin-right: 6px; }

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

.footer-content {
    display: grid !important;
    grid-template-columns: 1.3fr 2fr !important;
    gap: 60px !important;
    margin-bottom: 50px;
    text-align: left !important;
}

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

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

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

.footer-col h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-col li {
    list-style: none !important;
    margin-bottom: 14px !important;
}

.footer-col li::before,
.footer-col li::marker {
    content: none !important;
    display: none !important;
}

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

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    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;
    font-size: 0.95rem;
    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(--primary); }
.cta-btn.kakao { background: #FEE500; color: #3C1E1E; }
.cta-btn.kakao:hover { color: #3C1E1E; }
.cta-btn.tel { background: var(--accent); }

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

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

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

/* ===== Section Navigation Dots ===== */
.section-nav {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot:hover {
    background: var(--primary-light);
    transform: scale(1.2);
}

.nav-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.nav-dot::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
    padding: 5px 12px;
    background: var(--text-dark);
    color: white;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* ===== Page Header (for subpages) ===== */
.page-header {
    background: linear-gradient(135deg, var(--bg-rose) 0%, var(--bg-soft) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

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

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

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

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb li { color: var(--text-light); }
.page-header .breadcrumb a { color: var(--accent-dark); }

/* ===== Review Page Styles ===== */
.review-section { padding: 80px 0; background: var(--bg-main); }

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

.review-card .review-rating { color: var(--primary); margin-bottom: 15px; }
.review-card .review-title { font-size: 1.1rem; margin-bottom: 10px; }
.review-card .review-content { color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-name { font-weight: 600; }

.pagination-wrapper { text-align: center; margin-top: 50px; }

.pagination {
    display: inline-flex;
    gap: 8px;
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.pagination li { list-style: none !important; }
.pagination li::before { content: none !important; }

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

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

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

.cta-card {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    color: white;
}

.cta-card h2 { color: white; margin-bottom: 15px; }
.cta-card p { margin-bottom: 30px; opacity: 0.9; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .price-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .price-card.featured { transform: none; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .about-badge { bottom: -20px; right: 20px; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .section-nav { display: none; }
}

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

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

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

    .navbar-nav .nav-item {
        display: block !important;
        width: 100% !important;
    }

    .navbar-nav .nav-link {
        color: var(--text-dark) !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid var(--border);
    }

    .header-cta { display: none; }

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

@media (max-width: 768px) {
    .fullscreen-section { min-height: auto; }
    .section-content { padding: 80px 0; }
    .section-title { font-size: 2.2rem; }

    .hero-title { font-size: 2.5rem; }
    .hero-desc { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; }
    .scroll-hint { display: none; }

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

    .contact-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 30px 25px; }

    .footer-content { grid-template-columns: 1fr !important; text-align: center !important; }
    .footer-links { grid-template-columns: 1fr !important; text-align: center !important; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .footer-brand a { justify-content: center; }

    .cta-btn span { display: none; }
    .cta-btn { padding: 14px; border-radius: 50%; width: 55px; height: 55px; justify-content: center; }
    #backToTop { bottom: 180px; }
}

@media (max-width: 480px) {
    .section-content { padding: 60px 0; }
    .section-title { font-size: 1.9rem; }
    .hero-title { font-size: 2rem; }

    .feature-card { padding: 35px 25px; }

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

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

    .cta-card { padding: 40px 25px; }
}
