/* ===============================================
   DR-DRIVE-15 - Ocean Breeze Theme
   풀스크린 섹션 스크롤 디자인
   Color: #4682B4 (Steel Blue) + #87CEEB (Sky Blue)
   =============================================== */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    /* Primary - Ocean Blue */
    --ocean-50: #F0F7FC;
    --ocean-100: #D6EAF8;
    --ocean-200: #AED6F1;
    --ocean-300: #87CEEB;
    --ocean-400: #5DADE2;
    --ocean-500: #4682B4;
    --ocean-600: #2874A6;
    --ocean-700: #1B4F72;

    /* Accent - Sky Blue */
    --sky-light: #E8F4FD;
    --sky-medium: #B3D9F2;
    --sky-dark: #5CACEE;

    /* Neutral */
    --warm-50: #FAFCFD;
    --warm-100: #F5F8FA;
    --warm-200: #E8EEF2;
    --warm-300: #D0DBE2;
    --warm-400: #9EADB8;
    --warm-500: #6B7D8A;
    --warm-600: #4A5A66;
    --warm-700: #2D3A42;
    --warm-800: #1A252D;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Noto Sans KR', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(70, 130, 180, 0.12);
    --shadow-medium: 0 8px 30px rgba(70, 130, 180, 0.18);
    --shadow-large: 0 15px 50px rgba(70, 130, 180, 0.22);

    /* Transitions */
    --transition-soft: 0.3s ease;
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-snap-type: y proximity;
}

body {
    font-family: var(--font-body);
    color: var(--warm-700);
    line-height: 1.8;
    background: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--warm-800);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
    color: var(--warm-600);
    font-size: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-soft);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition-soft);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    padding: 14px 0;
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-soft);
}

.header.scrolled .navbar-brand {
    color: var(--ocean-600);
}

.brand-icon {
    font-size: 1.6rem;
    color: var(--ocean-300);
}

.header.scrolled .brand-icon {
    color: var(--ocean-500);
}

.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: block;
}

.nav-link {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    transition: var(--transition-soft);
}

.header.scrolled .nav-link {
    color: var(--warm-600);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.header.scrolled .nav-link:hover {
    background: var(--ocean-100);
    color: var(--ocean-600);
}

.navbar-toggler {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

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

.header.scrolled .navbar-toggler span {
    background: var(--warm-700);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--white);
    color: var(--ocean-600);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition-soft);
}

.header.scrolled .header-cta {
    background: var(--ocean-500);
    color: var(--white);
}

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

/* Section Indicator */
.section-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-soft);
}

.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.indicator-dot.active {
    background: var(--ocean-300);
    border-color: var(--white);
    transform: scale(1.2);
}

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

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.85) 0%, rgba(135, 206, 235, 0.7) 50%, rgba(70, 130, 180, 0.8) 100%);
}

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

.hero-content {
    max-width: 650px;
    color: var(--white);
}

.hero-wave {
    width: 100px;
    height: 30px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    animation: waveFloat 3s ease-in-out infinite;
}

@keyframes waveFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.15;
}

.hero-title .highlight {
    color: var(--ocean-200);
    display: block;
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

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

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-soft);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    color: var(--ocean-600);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--ocean-600);
    border-color: var(--white);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease 0.5s both;
}

.scroll-hint span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    animation: bounce 2s infinite;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.section-title {
    font-weight: 700;
    color: var(--warm-800);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--warm-500);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.section-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--ocean-500);
    padding: 12px 24px;
    border: 2px solid var(--ocean-300);
    border-radius: var(--radius-full);
    transition: var(--transition-soft);
}

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

/* ===== FEATURES SECTION ===== */
.features-section {
    background: linear-gradient(180deg, var(--ocean-50) 0%, var(--white) 100%);
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--ocean-100);
    transition: var(--transition-soft);
    position: relative;
    overflow: hidden;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ocean-400), var(--ocean-300));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 24px;
    transition: var(--transition-soft);
}

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

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--warm-700);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.feature-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--ocean-300), var(--ocean-400), var(--ocean-300));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-wave {
    transform: scaleX(1);
}

/* Features Stats */
.features-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 50px 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--ocean-500);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ocean-400);
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
    color: var(--warm-500);
    font-weight: 500;
}

/* ===== PRICE SECTION ===== */
.price-section {
    background: var(--white);
}

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

.price-card {
    background: var(--ocean-50);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-soft);
    border: 2px solid transparent;
}

.price-card.featured {
    background: linear-gradient(135deg, var(--ocean-500), var(--ocean-400));
    color: var(--white);
    transform: scale(1.05);
    border: none;
}

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

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

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--ocean-500);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
}

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

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

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

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

.price-amount .won {
    font-size: 1.2rem;
    color: var(--warm-400);
}

.price-card.featured .won {
    color: rgba(255, 255, 255, 0.7);
}

.price-amount .number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--ocean-600);
}

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

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

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--warm-600);
}

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

.price-features li i {
    color: var(--ocean-400);
    font-size: 0.9rem;
}

.price-card.featured .price-features li i {
    color: var(--white);
}

.price-btn {
    display: block;
    padding: 14px 28px;
    background: var(--ocean-500);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: var(--transition-soft);
}

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

.price-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    color: var(--white);
}

.price-card.featured .price-btn:hover {
    color: var(--ocean-500);
}

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

.price-note i {
    color: var(--ocean-400);
    margin-right: 6px;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--ocean-50) 100%);
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border: 1px solid var(--ocean-100);
    transition: var(--transition-soft);
    position: relative;
}

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

.review-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--ocean-200);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #FFD700;
    font-size: 1rem;
}

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

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

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

.review-avatar {
    background: linear-gradient(135deg, var(--ocean-400), var(--ocean-300));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.review-author strong {
    display: block;
    font-size: 1rem;
    color: var(--warm-700);
    margin-bottom: 4px;
}

.review-author span {
    font-size: 0.85rem;
    color: var(--warm-400);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, var(--ocean-500) 0%, var(--ocean-400) 100%);
    position: relative;
    overflow: hidden;
}

.wave-decoration {
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    color: var(--white);
}

.wave-decoration.top {
    top: 0;
}

.wave-decoration svg {
    width: 100%;
    height: 100%;
}

.contact-section .section-badge,
.contact-section .section-title,
.contact-section .section-desc {
    color: var(--white);
}

.contact-section .section-badge {
    opacity: 0.8;
}

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

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

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--ocean-500);
    flex-shrink: 0;
}

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

.info-content p,
.info-content a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.info-content a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-large);
}

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

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--ocean-100);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--warm-700);
    background: var(--white);
    transition: var(--transition-soft);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--ocean-400);
    box-shadow: 0 0 0 4px rgba(70, 130, 180, 0.15);
}

.form-group input::placeholder {
    color: var(--warm-300);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234682B4' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--ocean-500), var(--ocean-400));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--warm-800);
    color: var(--warm-300);
    padding: 70px 0 30px;
}

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

.footer-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

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

.footer-brand p {
    color: var(--warm-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 22px;
    font-weight: 700;
}

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

.footer-links li {
    list-style: none !important;
    margin-bottom: 14px;
    color: var(--warm-400);
    font-size: 0.95rem;
}

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

.footer-links li i {
    width: 20px;
    color: var(--ocean-300);
    margin-right: 8px;
}

.footer-links a {
    color: var(--warm-400);
    transition: var(--transition-soft);
}

.footer-links a:hover {
    color: var(--ocean-300);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--warm-700);
    text-align: center;
}

.footer-bottom p {
    color: var(--warm-500);
    font-size: 0.9rem;
}

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

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-soft);
    box-shadow: var(--shadow-medium);
}

.cta-btn.apply {
    background: linear-gradient(135deg, var(--ocean-500), var(--ocean-400));
    color: var(--white);
}

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

.cta-btn.tel {
    background: var(--white);
    color: var(--ocean-600);
    border: 2px solid var(--ocean-200);
}

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

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 200px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--ocean-200);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--ocean-500);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 998;
    transition: var(--transition-soft);
}

#backToTop.visible {
    display: flex;
}

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

/* ===== PAGE HEADER (Sub Pages) ===== */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--ocean-100) 0%, var(--ocean-50) 100%);
}

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-header h1 {
    color: var(--warm-800);
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--warm-500);
}

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    list-style: none;
    margin: 24px 0 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--warm-400);
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--warm-500);
}

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

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

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--warm-300);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-stats {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    html {
        scroll-snap-type: none;
    }

    .fullscreen-section {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-section {
        min-height: 100vh;
    }

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

    .price-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

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

    .review-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-indicator {
        display: none;
    }

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

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

    .navbar-nav .nav-link {
        color: var(--warm-600) !important;
        padding: 12px 16px;
    }

    .navbar-toggler {
        display: flex;
    }

    .header-cta {
        display: none;
    }
}

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

    .features-stats {
        flex-direction: column;
        gap: 30px;
    }

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

    .hero-buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

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

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .cta-btn span {
        display: none;
    }

    .cta-btn {
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
    }

    #backToTop {
        bottom: 170px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .hero-title { font-size: 2.2rem; }

    .feature-card,
    .price-card,
    .review-card {
        padding: 28px 22px;
    }

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

/* ===== SUB PAGE STYLES ===== */

/* Review Section */
.review-section {
    padding: var(--section-padding);
    background: var(--ocean-50);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    list-style: none !important;
    padding: 0 !important;
    margin: 40px 0 0 !important;
}

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

.pagination li::before,
.pagination li::marker {
    content: none !important;
    display: none !important;
}

.page-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--ocean-200);
    border-radius: var(--radius-md);
    color: var(--warm-600);
    font-weight: 600;
    transition: var(--transition-soft);
}

.page-link:hover {
    background: var(--ocean-100);
    border-color: var(--ocean-400);
    color: var(--ocean-600);
}

.page-item.active .page-link {
    background: var(--ocean-500);
    border-color: var(--ocean-500);
    color: var(--white);
}

/* FAQ Styles */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.faq-item {
    background: var(--white);
    border: 2px solid var(--ocean-100);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition-soft);
}

.faq-item:hover {
    border-color: var(--ocean-300);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    cursor: pointer;
    transition: var(--transition-soft);
}

.faq-question:hover {
    background: var(--ocean-50);
}

.faq-question h3 {
    font-size: 1.05rem;
    color: var(--warm-700);
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--ocean-400);
    transition: var(--transition-soft);
}

.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: 500px;
}

.faq-answer-content {
    padding: 0 26px 26px;
    color: var(--warm-600);
    line-height: 1.9;
}

/* CTA Card */
.cta-section {
    padding: var(--section-padding);
    background: var(--ocean-50);
}

.cta-card {
    background: linear-gradient(135deg, var(--ocean-500), var(--ocean-400));
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--ocean-600);
}

/* Price Table (Sub Page) */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.price-table thead {
    background: linear-gradient(135deg, var(--ocean-500), var(--ocean-400));
}

.price-table th {
    padding: 20px 22px;
    text-align: center;
    color: var(--white);
    font-weight: 700;
}

.price-table td {
    padding: 18px 22px;
    text-align: center;
    border-bottom: 1px solid var(--ocean-100);
    color: var(--warm-600);
}

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

/* Responsive Sub Pages */
@media (max-width: 768px) {
    .cta-card {
        padding: 40px 28px;
    }
}
