/* ===================================
   동물병원 마케팅 랜딩페이지 CSS
   PC & 모바일 반응형 최적화
=================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

.highlight {
    color: #FF6B35;
}

.emphasis {
    background: linear-gradient(120deg, #FF6B35 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #FF6B35;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.section-title.center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-outline {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.btn-outline:hover {
    background: #FF6B35;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #FF6B35;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

/* ===================================
   HERO SECTION
=================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FF6B35" stroke-width="0.3" opacity="0.1"/></svg>') repeat;
    background-size: 100px;
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    color: #FF6B35;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle-main {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: #FF6B35;
    font-weight: 700;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.cta-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 5px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 550px;
}

.hero-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    animation: bounce 2s infinite;
}

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

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
}

.animate-slide-up-delay {
    animation: slideUp 1s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   STORY SECTION
=================================== */
.story-section {
    padding: 120px 0;
    background: #f8f9fa;
}

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

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.story-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.story-badge .amount {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.story-badge .label {
    font-size: 12px;
    opacity: 0.9;
    letter-spacing: 1px;
}

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

.story-text {
    margin-top: 30px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #555;
}

.story-text .quote {
    font-size: 20px;
    color: #333;
    padding: 25px;
    background: #fff;
    border-left: 4px solid #FF6B35;
    border-radius: 0 10px 10px 0;
    margin-bottom: 25px;
}

.story-text .highlight-text {
    font-size: 22px;
    font-weight: 700;
    color: #FF6B35;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
}

/* ===================================
   TRUST SECTION
=================================== */
.trust-section {
    padding: 120px 0;
    background: #fff;
}

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

.trust-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #FF6B35;
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 32px;
    color: #fff;
}

.trust-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.trust-solution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #FF6B35;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.trust-solution i {
    font-size: 14px;
}

/* ===================================
   SERVICES SECTION
=================================== */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.services-section .section-label {
    color: #FF8C42;
}

.services-section .section-title {
    color: #fff;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 28px;
    color: #fff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ===================================
   PRICING SECTION
=================================== */
.pricing-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0;
}

.pricing-card {
    background: #fff;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 2px solid #eee;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #FF6B35;
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.plan-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.plan-price .currency {
    font-size: 16px;
    color: #666;
}

.plan-price .amount {
    font-size: 56px;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
}

.plan-price .unit {
    font-size: 18px;
    color: #666;
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #444;
}

.pricing-features li i {
    color: #FF6B35;
    font-size: 14px;
    margin-top: 4px;
}

.pricing-features li.sub-feature {
    padding-left: 26px;
    font-size: 13px;
    color: #888;
    padding-top: 0;
}

.pricing-features li.sub-feature i {
    font-size: 10px;
    color: #aaa;
}

.pricing-features li strong {
    color: #FF6B35;
}

/* ===================================
   DIFFERENCE SECTION
=================================== */
.difference-section {
    padding: 120px 0;
    background: #fff;
}

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

.difference-grid {
    margin-top: 40px;
}

.difference-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.difference-item:last-child {
    border-bottom: none;
}

.diff-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-icon.wrong {
    background: #ffe5e5;
    color: #e74c3c;
}

.diff-icon.right {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
}

.diff-icon i {
    font-size: 20px;
}

.diff-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.diff-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.diff-content p strong {
    color: #FF6B35;
}

.difference-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

/* ===================================
   CONTACT SECTION
=================================== */
.contact-section {
    padding: 120px 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-subtitle {
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
}

.contact-form {
    background: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.form-group label i {
    color: #FF6B35;
    margin-right: 5px;
}

.required {
    color: #FF6B35;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    margin-top: 10px;
    cursor: pointer;
    font-family: 'Noto Sans KR', sans-serif;
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 20px;
}

.form-note i {
    color: #FF6B35;
    margin-right: 5px;
}

.success-message {
    background: #fff;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.success-message i {
    font-size: 64px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-info-card i {
    font-size: 36px;
    color: #FF6B35;
    margin-bottom: 15px;
}

.contact-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 15px;
    color: #666;
    text-decoration: none;
    display: block;
}

.contact-info-card a {
    font-weight: 700;
    color: #FF6B35;
}

/* ===================================
   FINAL CTA SECTION
=================================== */
.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    text-align: center;
}

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

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-title .highlight {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-phone {
    margin-bottom: 30px;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.phone-number:hover {
    transform: scale(1.05);
}

.phone-number i {
    font-size: 36px;
}

.cta-buttons {
    margin-bottom: 30px;
}

.cta-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   FOOTER
=================================== */
.footer {
    padding: 40px 0;
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    text-align: center;
}

.footer-info {
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 5px;
}

.footer-info a {
    color: #FF6B35;
    text-decoration: none;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.footer-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-details p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-details i {
    color: #FF6B35;
    width: 16px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.master-link {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.master-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   FLOATING CTA (MOBILE)
=================================== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 5px 25px rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 5px 35px rgba(255, 107, 53, 0.8); }
    100% { box-shadow: 0 5px 25px rgba(255, 107, 53, 0.5); }
}

/* ===================================
   RESPONSIVE STYLES - TABLET
=================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle-main {
        font-size: 36px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .difference-section .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .difference-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===================================
   RESPONSIVE STYLES - MOBILE
=================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle-main {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Story Mobile */
    .story-section {
        padding: 80px 0;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .story-badge .amount {
        font-size: 22px;
    }
    
    .story-text .quote {
        font-size: 17px;
        padding: 20px;
    }
    
    .story-text .highlight-text {
        font-size: 18px;
    }
    
    /* Trust Mobile */
    .trust-section {
        padding: 80px 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-card {
        padding: 30px 25px;
    }
    
    /* Services Mobile */
    .services-section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    /* Pricing Mobile */
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .plan-price .amount {
        font-size: 48px;
    }
    
    /* Difference Mobile */
    .difference-section {
        padding: 80px 0;
    }
    
    .difference-image {
        max-width: 100%;
    }
    
    /* Contact Mobile */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .contact-form-wrapper {
        margin: 0 auto 40px;
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 14px 16px;
        border-radius: 10px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .form-note {
        font-size: 12px;
        margin-top: 15px;
    }
    
    .success-message {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .success-message i {
        font-size: 48px;
    }
    
    .success-message h3 {
        font-size: 20px;
    }
    
    .success-message p {
        font-size: 15px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-info-card i {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .contact-info-card h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .contact-info-card p,
    .contact-info-card a {
        font-size: 14px;
    }
    
    /* Final CTA Mobile */
    .final-cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .phone-number {
        font-size: 36px;
    }
    
    .phone-number i {
        font-size: 28px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-subtitle {
        font-size: 13px;
    }
    
    .footer-details p {
        font-size: 12px;
    }
    
    /* Floating CTA Mobile */
    .floating-cta {
        display: flex;
        bottom: 15px;
        right: 15px;
        left: 15px;
        justify-content: center;
    }
}

/* ===================================
   RESPONSIVE STYLES - SMALL MOBILE
=================================== */
@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle-main {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .btn-lg {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .story-badge .amount {
        font-size: 20px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
    }
    
    .trust-icon i {
        font-size: 24px;
    }
    
    .plan-price .amount {
        font-size: 42px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .phone-number {
        font-size: 28px;
    }
    
    .phone-number i {
        font-size: 22px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px 14px;
    }
    
    .form-group textarea {
        min-height: 90px;
    }
    
    .submit-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .contact-info-card {
        padding: 20px 15px;
    }
    
    .contact-info-card i {
        font-size: 28px;
    }
}

/* ===================================
   UTILITY CLASSES
=================================== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
