/* 팜랜드 산양산삼 랜딩 페이지 스타일 */

/* ============================================
   0. CSS Reset & Variables
   ============================================ */
:root {
    /* Colors */
    --primary-color: #2d5016;
    --primary-dark: #1a3009;
    --primary-light: #4a7c2a;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #787878;
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #faf8f5;
    
    --border-light: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    
    /* Typography */
    --font-main: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   1. Utilities & Layout
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background: var(--bg-light);
}

.bg-cream {
    background: var(--bg-cream);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.section-note {
    margin-top: 40px;
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.section-note p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   2. Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-normal);
    white-space: nowrap;
}

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

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

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

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

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    width: 100%;
    max-width: 500px;
}

.btn-call {
    background: #10b981;
    color: white;
}

.btn-call:hover {
    background: #059669;
}

.btn-sms {
    background: #3b82f6;
    color: white;
}

.btn-sms:hover {
    background: #2563eb;
}

/* ============================================
   3. Header
   ============================================ */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo .tagline {
    font-size: 13px;
    color: var(--text-medium);
}

.header-cta {
    display: flex;
    gap: 12px;
}

/* ============================================
   4. Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    /* background-image: url('../images/hero-bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.9) 0%, rgba(74, 124, 42, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.hero-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

/* ============================================
   5. Forms
   ============================================ */
.quick-form, .detail-form {
    width: 100%;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 15px;
}

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

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

.required {
    color: #ef4444;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-fast);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio Buttons (Chip Style) */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-group input[type="radio"] {
    display: none;
}

.btn-radio {
    padding: 12px 20px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
    background: white;
    color: var(--text-dark);
}

.btn-group input[type="radio"]:checked + .btn-radio {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-radio:hover {
    border-color: var(--primary-color);
}

/* Radio Cards */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.radio-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    background: white;
    font-weight: 500;
    text-align: center;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-card input[type="radio"]:checked + span,
.radio-card:has(input[type="radio"]:checked) {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-color);
}

.radio-card:hover {
    border-color: var(--primary-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.checkbox-group {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.privacy-note {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.6;
}

.form-note,
.form-bottom-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 12px;
}

/* ============================================
   6. Cards & Grids
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ============================================
   7. Trust Section (Grid with Image Sliders)
   ============================================ */
.trust-grid {
    display: grid;
    gap: 40px;
}

.trust-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.trust-item:hover {
    box-shadow: var(--shadow-md);
}

.trust-item:nth-child(even) {
    direction: rtl;
}

.trust-item:nth-child(even) > * {
    direction: ltr;
}

/* Trust Image Slider */
.trust-image {
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
    aspect-ratio: 4/3;
    position: relative;
}

.trust-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.trust-image-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.trust-image-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Navigation */
.trust-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
}

.trust-image-slider:hover .trust-slider-nav {
    opacity: 1;
}

.trust-slider-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.trust-slider-prev {
    left: 10px;
}

.trust-slider-next {
    right: 10px;
}

/* Slider Indicators */
.trust-slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.trust-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.trust-slider-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.trust-content {
    object-fit: cover;
}

/* Placeholder image style */
.placeholder-image {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.placeholder-image::after {
    content: attr(data-placeholder);
}

.trust-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.trust-content p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.trust-desc {
    font-size: 14px !important;
    color: var(--text-light) !important;
    line-height: 1.6;
}

/* ============================================
   7.5. Gallery Section
   ============================================ */
.gallery {
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition-normal);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.gallery-count {
    color: white;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10000;
}

.lightbox-close:hover {
    color: #ddd;
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 24px;
    border-radius: 8px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 36px;
    font-weight: bold;
    background: rgba(45, 80, 22, 0.8);
    border: none;
    cursor: pointer;

/* ============================================
   6. Product Gallery (간단구매)
   ============================================ */
.product-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    max-width: 600px;
    margin: 0 auto;
}

/* 상품 아이템 - 가로 리스트 스타일 */
.product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.product-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(74, 124, 42, 0.15);
}

.product-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #f0f0f0;
}

.product-details {
    flex: 1;
    min-width: 0;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}

.product-price::before {
    content: '🌿 ';
    font-size: 14px;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 110px;
}

.btn-buy {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff5722 0%, #d84315 100%);
}

.btn-inquiry {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(74, 124, 42, 0.3);
}

.btn-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 124, 42, 0.4);
}

@media (max-width: 480px) {
    .product-item {
        flex-wrap: wrap;
    }

    .product-thumb {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .product-buttons {
        width: 100%;
        flex-direction: row;
        min-width: auto;
    }

    .btn-buy, .btn-inquiry {
        flex: 1;
    }
}
    padding: 16px 20px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(45, 80, 22, 1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
}

/* ============================================
   8. Scenarios
   ============================================ */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.scenario-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

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

.scenario-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.scenario-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.scenario-card p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ============================================
   9. Process Steps
   ============================================ */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.process-arrow {
    font-size: 32px;
    color: var(--primary-light);
    font-weight: 700;
}

.process-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.process-note p {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 8px 0;
}

/* ============================================
   10. Contact Form Section
   ============================================ */
.instant-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.btn-call-large,
.btn-sms-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.btn-call-large {
    background: #10b981;
    color: white;
}

.btn-call-large:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sms-large {
    background: #3b82f6;
    color: white;
}

.btn-sms-large:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-call-large svg,
.btn-sms-large svg {
    flex-shrink: 0;
}

.cta-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

.cta-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-light);
}

.divider span {
    position: relative;
    background: var(--bg-light);
    padding: 0 20px;
    color: var(--text-medium);
    font-size: 14px;
}

.detail-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

/* ============================================
   11. FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    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 p {
    padding: 0 24px 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    margin: 4px 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
    margin: 8px 0;
}

.footer-disclaimer {
    font-size: 12px !important;
    opacity: 0.6 !important;
    margin-top: 16px !important;
}

/* ============================================
   13. Floating Buttons (Mobile)
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.floating-btn span {
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
}

.btn-call-float {
    background: #10b981;
    color: white;
}

.btn-sms-float {
    background: #3b82f6;
    color: white;
}

.floating-btn:active {
    transform: scale(0.95);
}

/* ============================================
   14. Responsive Design
   ============================================ */
@media (max-width: 968px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .header-cta {
        display: none;
    }
    
    .floating-buttons {
        display: flex;
    }
    
    .trust-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-item:nth-child(even) {
        direction: ltr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-form-card {
        padding: 30px 24px;
    }
    
    .detail-form {
        padding: 30px 24px;
    }
    
    .instant-cta {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 28px;
        padding: 12px 16px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .btn-group {
        flex-direction: column;
    }
    
    .radio-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .card-grid,
    .scenario-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   15. Print Styles
   ============================================ */
@media print {
    .header-sticky,
    .floating-buttons,
    .hero-form-card,
    .instant-cta,
    .detail-form {
        display: none;
    }
}
