/* ===============================================
   DR-Drive-22 Theme - 세이지 그린 (Sage Green)
   오버랩 카드 레이아웃 / #9DC183 (세이지) + #6B8E23 (올리브드랩)
   =============================================== */

:root {
    --primary: #9DC183;
    --primary-dark: #7BA05B;
    --primary-light: #C8DEB5;
    --secondary: #6B8E23;
    --accent: #556B2F;

    --text-dark: #2D3B2D;
    --text-light: #5A6B5A;
    --text-muted: #8A9B8A;

    --bg-main: #F8FAF6;
    --bg-white: #FFFFFF;
    --bg-cream: #F5F8F2;
    --bg-sage-light: #EDF3E8;

    --border: #D8E5D0;
    --shadow-sm: 0 2px 10px rgba(107, 142, 35, 0.1);
    --shadow-md: 0 8px 30px rgba(107, 142, 35, 0.15);
    --shadow-lg: 0 15px 50px rgba(107, 142, 35, 0.2);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Gowun Batang', serif;
    font-weight: 700;
    line-height: 1.4;
}

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

.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 cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 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: 'Gowun Batang', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
}

.brand-leaf {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    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 18px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.3s;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary);
    background: var(--bg-sage-light);
}

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

.header-cta:hover {
    background: var(--secondary);
    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: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ===== Hero Section with Overlap Cards ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 100px;
}

.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(157, 193, 131, 0.9) 0%, rgba(107, 142, 35, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: white;
    padding: 120px 0 60px;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.25;
}

.hero-title .highlight {
    color: #FFFACD;
    display: inline-block;
}

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

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

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

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

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

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

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

/* Overlap Stats Cards */
.hero-overlap-cards {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    justify-content: center;
    padding: 0 20px;
}

.overlap-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    flex: 1;
    max-width: 280px;
}

.overlap-card:hover {
    transform: translateY(-8px);
}

.overlap-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.overlap-info {
    display: flex;
    flex-direction: column;
}

.overlap-num {
    font-family: 'Gowun Batang', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-dark);
    background: var(--bg-sage-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

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

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

/* ===== Features Section - Overlap Grid ===== */
.features-section {
    background: var(--bg-white);
    padding-top: 140px;
}

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

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

.feature-card.overlap-up {
    margin-top: -30px;
}

.feature-card.overlap-down {
    margin-top: 30px;
}

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

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

.feature-icon-wrap i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon-wrap {
    background: var(--secondary);
    transform: scale(1.1);
}

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

.feature-leaf {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
    transition: all 0.3s;
}

.feature-card:hover .feature-leaf {
    opacity: 0.5;
    transform: rotate(-15deg);
}

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

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

.about-images {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid white;
    box-shadow: var(--shadow-md);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.about-badge-float .badge-num {
    display: block;
    font-family: 'Gowun Batang', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-float .badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-content {
    padding: 20px 0;
}

.about-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

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

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

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

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

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

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

.price-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

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

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

.price-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 8px 25px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
}

.price-card.featured .price-ribbon {
    background: white;
    color: var(--secondary);
}

.price-card h3 {
    font-size: 1.4rem;
    margin: 30px 0 25px;
    color: inherit;
}

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

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

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

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

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

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

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

.price-features i {
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.price-card.featured .price-features i {
    color: #FFFACD;
}

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

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

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

.price-card.featured .price-btn:hover {
    color: var(--secondary);
    background: #f5f5f5;
}

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

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

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

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

.review-card {
    position: relative;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 40px 30px 30px;
    transition: all 0.3s;
}

.review-card:nth-child(2) {
    transform: translateY(30px);
}

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

.review-card:nth-child(2):hover {
    transform: translateY(20px);
}

.review-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

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

.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-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

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

.review-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: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    padding: 12px 28px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    transition: all 0.3s;
}

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

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

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

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

.faq-item.active .faq-question {
    background: var(--primary);
}

.faq-item.active .faq-question span,
.faq-item.active .faq-question i {
    color: white;
}

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

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

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

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

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

.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: 25px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

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

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

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

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

.contact-form {
    background: 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: 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(--primary);
    margin-right: 8px;
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: 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: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

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

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

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

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

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

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

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: 'Gowun Batang', serif;
}

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

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

.footer-col a,
.footer-col li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.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 22px;
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

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

.cta-btn.apply:hover {
    background: var(--secondary);
}

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

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

.cta-btn.tel {
    background: var(--secondary);
}

/* Back to Top */
#backToTop {
    position: fixed;
    right: 25px;
    bottom: 200px;
    width: 50px;
    height: 50px;
    background: 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;
    z-index: 998;
    color: var(--text-dark);
}

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

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

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-overlap-cards {
        gap: 20px;
    }

    .overlap-card {
        padding: 25px 30px;
    }

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

    .feature-card.overlap-up,
    .feature-card.overlap-down {
        margin-top: 0;
    }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .review-card:nth-child(2) {
        transform: none;
    }

    .review-card:nth-child(2):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; }
    .header-cta { display: none; }

    .hero-section {
        padding-bottom: 180px;
    }

    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }

    .hero-overlap-cards {
        flex-direction: column;
        bottom: -150px;
        gap: 15px;
    }

    .overlap-card {
        max-width: 100%;
    }

    .features-section {
        padding-top: 200px;
    }

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

    .about-img-float {
        width: 140px;
        height: 140px;
        right: -20px;
        bottom: -20px;
    }

    .about-badge-float {
        left: -15px;
        padding: 20px 15px;
    }

    .about-badge-float .badge-num {
        font-size: 2rem;
    }

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

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

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

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

    .hero-badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .overlap-card {
        padding: 20px 25px;
    }

    .overlap-num {
        font-size: 1.5rem;
    }

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

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