/* ===============================================
   DR-DRIVE-18 - 캔디 팝 (Candy Pop)
   플로팅 카드 레이아웃 / 둥근 모서리
   Primary: #FF69B4 (Hot Pink), Accent: #FFB6C1 (Light Pink)
   =============================================== */

:root {
    --primary: #FF69B4;
    --primary-dark: #FF1493;
    --primary-light: #FFB6C1;
    --secondary: #FF85C1;
    --accent: #FFC0CB;

    --text-dark: #4A3545;
    --text-light: #8B6B80;
    --text-muted: #A89098;

    --bg-main: #FFF5F8;
    --bg-white: #FFFFFF;
    --bg-cream: #FFF0F5;
    --bg-gradient: linear-gradient(135deg, #FFF5F8 0%, #FFE4EC 100%);

    --border: #FFD6E7;
    --shadow-sm: 0 4px 15px rgba(255, 105, 180, 0.12);
    --shadow-md: 0 8px 30px rgba(255, 105, 180, 0.18);
    --shadow-lg: 0 15px 50px rgba(255, 105, 180, 0.25);
    --shadow-float: 0 20px 60px rgba(255, 105, 180, 0.2);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-full: 50px;
    --radius-circle: 50%;
}

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

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

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

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

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s;
    padding: 15px 0;
}

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

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Pacifico', cursive;
    font-size: 1.6rem;
    color: var(--primary);
}

.brand-icon { font-size: 1.8rem; }

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

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

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

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

.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: 700;
    box-shadow: var(--shadow-sm);
}

.header-cta:hover {
    transform: translateY(-3px);
    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;
}

.navbar-toggler span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--bg-gradient);
}

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

.shape {
    position: absolute;
    border-radius: var(--radius-circle);
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: 10%;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary);
    top: 40%;
    right: 10%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    bottom: 20%;
    right: 30%;
    opacity: 0.3;
    animation: float 7s ease-in-out infinite reverse;
}

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

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

/* Hero Floating Cards */
.hero-cards {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-float);
    animation: cardFloat 6s ease-in-out infinite;
    z-index: 2;
}

.floating-card.card-1 {
    top: 5%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 35%;
    right: 0;
    animation-delay: -2s;
}

.floating-card.card-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: -4s;
}

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

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
}

.floating-card .card-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.floating-card .card-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image-card {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

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

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary-light);
}

.btn-secondary:hover {
    background: var(--bg-cream);
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

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

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--bg-cream);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 15px;
}

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

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

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--bg-white);
}

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

.feature-card {
    text-align: center;
    padding: 45px 30px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card.floating:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}

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

.feature-card h3 {
    font-size: 1.2rem;
    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-gradient);
}

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

.about-image {
    position: relative;
}

.about-image .image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    display: block;
}

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

.about-badge .badge-icon { font-size: 1.5rem; }
.about-badge .badge-text { font-weight: 700; }

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

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

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

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

.about-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

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

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

.price-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.price-card.featured {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

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

.price-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

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

.price-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

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

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

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

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

.price-amount .number {
    font-size: 2.8rem;
    font-weight: 800;
    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: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.price-card.featured .price-features li { color: white; }

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

.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: 700;
    transition: all 0.3s;
}

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

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

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

.price-note {
    text-align: center;
    color: var(--text-light);
    background: var(--bg-cream);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    display: inline-block;
}

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

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

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

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

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

.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 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: var(--bg-white);
}

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

.review-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card.floating:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

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

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

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

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

.section-more a {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-more a:hover {
    color: var(--primary-dark);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--bg-gradient);
}

.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-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-emoji {
    font-size: 2.5rem;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p, .info-item a {
    color: var(--text-light);
}

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

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

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

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
}

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

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

/* ===== FOOTER ===== */
.footer {
    background: #4A3545;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand a {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: white;
    display: block;
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

.footer-col i {
    width: 20px;
    color: var(--primary-light);
}

.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 ===== */
.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: 700;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

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

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

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

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

/* ===== PAGE HEADER (Sub Pages) ===== */
.page-header {
    padding: 160px 0 70px;
    background: var(--bg-gradient);
    text-align: center;
}

.page-header-content { max-width: 700px; margin: 0 auto; }
.page-emoji { font-size: 3rem; margin-bottom: 15px; }

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    list-style: none;
    margin-top: 25px;
    box-shadow: var(--shadow-sm);
}

/* ===== REVIEW PAGE ===== */
.review-section { padding: 100px 0; background: var(--bg-white); }

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

.review-content {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .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); }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-cards { display: none; }
    .about-wrapper { grid-template-columns: 1fr; }
    .about-content { text-align: center; }
    .about-content .section-title { text-align: center; }
    .about-list { display: inline-block; text-align: left; }
}

@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: 20px;
        box-shadow: var(--shadow-md);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }
    .navbar-nav.active { display: flex !important; }
    .header-cta { display: none; }

    .hero-title { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; }

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

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

    .footer-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; text-align: center; }

    .cta-btn span { display: none; }
    .cta-btn { padding: 14px; border-radius: var(--radius-circle); }
}

@media (max-width: 480px) {
    .section { padding: 70px 0; }
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2rem; }
    .contact-form { padding: 30px 20px; }
    .feature-card { padding: 35px 25px; }
}
