/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #2C3E50;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.highlight {
    color: #2ECC71;
    position: relative;
}

.highlight-secondary {
    color: #F39C12;
    position: relative;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2ECC71;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2C3E50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: #2C3E50;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #2ECC71;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2ECC71;
    border-radius: 1px;
}

.nav-cta .cta-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2C3E50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-text {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ECC71;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.hero-badge i {
    color: #F39C12;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5A6C7D;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2ECC71;
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item i {
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: #F39C12;
    border: 2px solid #F39C12;
}

.cta-btn.secondary:hover {
    background: #F39C12;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2ECC71;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #5A6C7D;
    margin-top: 4px;
}

/* ===== HERO IMAGE ===== */
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* ===== FLOATING CARDS ===== */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-1 .card-icon {
    background: rgba(46, 204, 113, 0.1);
    color: #2ECC71;
}

.card-2 .card-icon {
    background: rgba(243, 156, 18, 0.1);
    color: #F39C12;
}

.card-3 .card-icon {
    background: rgba(231, 76, 60, 0.1);
    color: #E74C3C;
}

.card-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2C3E50;
    line-height: 1;
}

.card-subtitle {
    font-size: 0.8rem;
    color: #5A6C7D;
    margin-top: 2px;
}

/* ===== BACKGROUND DECORATIONS ===== */
.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: #2ECC71;
    top: 10%;
    right: 10%;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: #F39C12;
    bottom: 20%;
    left: 5%;
    animation: rotate 15s linear infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: #2ECC71;
    top: 50%;
    left: 20%;
    animation: rotate 25s linear infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== PROBLEM & SOLUTION SECTION ===== */
.problem-solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.problem-section {
    margin-bottom: 80px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5A6C7D;
    max-width: 600px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E74C3C, #F39C12);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #E74C3C;
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    background: rgba(231, 76, 60, 0.2);
    transform: scale(1.1);
}

.problem-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.problem-description {
    color: #5A6C7D;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Transition Arrow */
.transition-arrow {
    display: flex;
    justify-content: center;
    margin: 80px 0;
    position: relative;
}

.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 16px 24px;
    border-radius: 40px;
    box-shadow: 
        0 12px 24px rgba(46, 204, 113, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid #2ECC71;
    position: relative;
    overflow: hidden;
    animation: bounce 3s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.arrow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.arrow-container:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(46, 204, 113, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: #27AE60;
}

.arrow-container i {
    font-size: 1.8rem;
    color: #2ECC71;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(46, 204, 113, 0.2);
}

.arrow-container:hover i {
    color: #27AE60;
    transform: translateY(3px);
    text-shadow: 0 4px 8px rgba(46, 204, 113, 0.3);
}

.arrow-text {
    font-weight: 700;
    color: #2ECC71;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(46, 204, 113, 0.1);
    position: relative;
}

.arrow-container:hover .arrow-text {
    color: #27AE60;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(46, 204, 113, 0.2);
}

.arrow-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2ECC71, #F39C12);
    border-radius: 1px;
    transition: transform 0.3s ease;
}

.arrow-container:hover .arrow-text::after {
    transform: translateX(-50%) scaleX(1);
}

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

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Solution Section */
.solution-section {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    border-radius: 30px;
    padding: 60px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.solution-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.solution-badge i {
    color: #F39C12;
    font-size: 1rem;
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: left;
}

.solution-title br {
    display: block;
    margin-bottom: 0.3rem;
}

.solution-title .highlight {
    color: #F39C12;
    text-shadow: 0 2px 4px rgba(243, 156, 18, 0.3);
}

.solution-title .highlight-secondary {
    color: #FFE4B5;
    text-shadow: 0 2px 4px rgba(255, 228, 181, 0.3);
}

.solution-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.7;
    text-align: justify;
    max-width: 90%;
}

.solution-benefits {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.benefit-item:hover {
    padding-left: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 156, 18, 0.2);
    border: 2px solid #F39C12;
    border-radius: 50%;
    color: #F39C12;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.benefit-item:hover .benefit-icon {
    background: #F39C12;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-title {
    color: #FFE4B5;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-description {
    color: rgba(255, 255, 255, 0.95);
}

.solution-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.solution-cta .cta-btn.primary {
    background: white;
    color: #2ECC71;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.solution-cta .cta-btn.primary:hover {
    background: #e8f5e8;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: #1e7e34;
}

.solution-cta .cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.solution-cta .cta-btn.secondary:hover {
    background: white;
    color: #2ECC71;
}

/* Solution Image */
.solution-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.solution-img:hover {
    transform: scale(1.05);
}

/* Success Stats */
.success-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.success-card {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 80px;
}

.success-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2ECC71;
    line-height: 1;
}

.success-label {
    font-size: 0.8rem;
    color: #5A6C7D;
    margin-top: 4px;
    line-height: 1.2;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.service-category {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.1);
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F39C12, #E67E22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.category-icon.consultation {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.category-icon i {
    font-size: 32px;
    color: white;
}

.category-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.category-subtitle {
    font-size: 1.1rem;
    color: #7F8C8D;
    max-width: 500px;
    margin: 0 auto;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #F39C12;
}

.service-card.featured {
    border-color: #F39C12;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F39C12, #E67E22);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #F39C12, #E67E22);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.card-header {
    margin-bottom: 25px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #F39C12;
}

.price-period {
    font-size: 1rem;
    color: #7F8C8D;
    font-weight: 500;
}

.card-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.feature-item i {
    color: #27AE60;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.feature-item span {
    color: #34495E;
    font-size: 0.95rem;
    line-height: 1.4;
}

.card-duration {
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.duration-option {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 15px;
}

.duration-option:last-child {
    border-bottom: none;
}

.duration-option:hover {
    background: #f8f9fa;
}

.duration-option.active {
    background: linear-gradient(135deg, #F39C12, #E67E22);
    color: white;
}

.duration-option.active .duration-save {
    background: linear-gradient(135deg, #F39C12, #E67E22);
    color: white;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.4);
}

.duration-option:hover .duration-save {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

.duration-option.active:hover .duration-save {
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.5);
}

.duration-days {
    font-weight: 600;
    font-size: 1rem;
}

.duration-total {
    font-weight: 700;
    font-size: 1.1rem;
}

.duration-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 10px;
}

.duration-save {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #F39C12, #E67E22);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    color: white;
    text-decoration: none;
}

.consultation-card .card-cta {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.consultation-card .card-cta:hover {
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Service Benefits */
.service-benefits {
    margin-top: 60px;
    padding: 50px 0;
    background: linear-gradient(135deg, #F39C12, #E67E22);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.service-benefits::before {
    content: '';
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Services CTA */
.services-cta {
    margin-top: 60px;
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.1);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    color: #7F8C8D;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn.primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    color: white;
    text-decoration: none;
}

/* Ripple Effect for CTA Buttons */
.card-cta, .cta-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Problem & Solution Responsive */
    .problem-solution {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .solution-section {
        padding: 40px;
    }
    
    .solution-content {
        gap: 3rem;
    }
    
    .solution-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    /* Problem & Solution Mobile */
    .problem-solution {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
    
    .solution-section {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .solution-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .solution-description {
        text-align: center;
        max-width: 100%;
    }
    
    .benefit-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 0.8rem 0;
    }
    
    .benefit-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
    }
    
    .solution-title br {
        margin-bottom: 0.2rem;
    }
    
    .solution-description {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        text-align: left;
    }
    
    /* Services Mobile Responsive */
    .services {
        padding: 50px 0;
    }
    
    .services-grid {
        gap: 30px;
        margin-top: 30px;
    }
    
    .service-category {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .category-header {
        margin-bottom: 25px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 24px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-subtitle {
        font-size: 0.95rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .card-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .price-period {
        font-size: 0.9rem;
    }
    
    .feature-item {
        margin-bottom: 10px;
        padding: 6px 0;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .duration-option {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .duration-option {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .duration-info {
        justify-content: space-between;
    }
    
    .duration-save {
        align-self: flex-end;
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .card-cta {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .service-benefits {
        margin-top: 40px;
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .benefit-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .benefit-card {
        padding: 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 20px;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.85rem;
    }
    
    .services-cta {
        margin-top: 40px;
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .cta-btn.primary {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    /* Services Responsive */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        gap: 40px;
        margin-top: 40px;
    }
    
    .service-category {
        padding: 30px 20px;
    }
    
    .category-header {
        margin-bottom: 30px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon i {
        font-size: 28px;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-subtitle {
        font-size: 1rem;
    }
    
    .service-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .service-benefits {
        margin-top: 50px;
        padding: 40px 20px;
    }
    
    .benefit-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .services-cta {
        margin-top: 50px;
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .solution-cta {
        justify-content: center;
    }
    
    .success-stats {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .success-card {
        min-width: 70px;
        padding: 0.8rem 1rem;
    }
    
    .success-number {
        font-size: 1.3rem;
    }
    
    /* Transition Arrow Tablet */
    .transition-arrow {
        margin: 50px 0;
    }
    
    .arrow-container {
        padding: 14px 20px;
        gap: 6px;
    }
    
    .arrow-container i {
        font-size: 1.5rem;
    }
    
    .arrow-text {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .arrow-container:hover .arrow-text {
        letter-spacing: 1.3px;
    }
}

/* Menu Showcase Section */
.menu-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.menu-showcase::before {
    content: '';
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23000" opacity="0.02"/><circle cx="40" cy="60" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.menu-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    color: #6c757d;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-btn:hover {
    border-color: #28a745;
    color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-color: #28a745;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.filter-btn i {
    font-size: 16px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.menu-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-overlay {
    opacity: 1;
}

.menu-labels {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.diet-label {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.diet-label.keto {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.diet-label.mayo {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.diet-label.mediterania {
    background: linear-gradient(135deg, #a8e6cf, #7fcdcd);
    color: #2d3436;
}

.diet-label.vegetarian {
    background: linear-gradient(135deg, #81c784, #66bb6a);
    color: white;
}

.calorie-label {
    background: rgba(255,255,255,0.9);
    color: #2d3436;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.menu-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    color: #2d3436;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: white;
    transform: scale(1.1);
    color: #28a745;
}

.menu-content {
    padding: 25px;
}

.menu-name {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 10px;
    line-height: 1.3;
}

.menu-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.menu-nutrition {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nutrition-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 60px;
}

.nutrition-label {
    font-size: 11px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nutrition-value {
    font-size: 14px;
    font-weight: 700;
    color: #28a745;
    margin-top: 2px;
}

.menu-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.menu-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(180deg); }
}

.menu-cta-content {
    position: relative;
    z-index: 1;
}

.menu-cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.menu-cta-description {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-cta .cta-btn {
    background: white;
    color: #28a745;
    border: 2px solid white;
}

.menu-cta .cta-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Menu Filter Animation */
.menu-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item.hidden {
    display: none;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Problem & Solution Small Mobile */
    .problem-solution {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .problem-card {
        padding: 1.2rem;
    }
    
    .problem-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .problem-title {
        font-size: 1.1rem;
    }
    
    .solution-section {
        padding: 20px 15px;
    }
    
    .solution-title {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.4;
    }
    
    .solution-title br {
        margin-bottom: 0.1rem;
    }
    
    .solution-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
        padding: 0.6rem 0;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .benefit-item:hover {
        padding-left: 0.3rem;
    }
    
    .benefit-icon {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
        margin-top: 2px;
    }
    
    .benefit-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .benefit-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .solution-benefits {
        margin-bottom: 2rem;
    }
    
    .solution-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .solution-cta .cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .success-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .transition-arrow {
        margin: 50px 0;
    }
    
    .arrow-container {
        padding: 12px 18px;
        gap: 6px;
    }
    
    .arrow-container i {
        font-size: 1.4rem;
    }
    
    .arrow-text {
        font-size: 0.7rem;
        letter-spacing: 1.2px;
    }
    
    .arrow-container:hover .arrow-text {
        letter-spacing: 1.5px;
    }
    
    /* Transition Arrow Mobile */
    .transition-arrow {
        margin: 40px 0;
    }
    
    .arrow-container {
        padding: 10px 16px;
        gap: 5px;
        border-radius: 30px;
    }
    
    .arrow-container i {
        font-size: 1.2rem;
    }
    
    .arrow-text {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .arrow-container:hover {
        transform: translateY(-3px) scale(1.03);
    }
    
    .arrow-container:hover .arrow-text {
        letter-spacing: 1.3px;
    }
    
    /* Menu Showcase Mobile */
    .menu-showcase {
        padding: 50px 0;
    }
    
    .menu-filter {
        gap: 10px;
        margin: 30px 0 40px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .menu-item {
        border-radius: 15px;
    }
    
    .menu-image {
        height: 200px;
    }
    
    .menu-content {
        padding: 20px;
    }
    
    .menu-name {
        font-size: 18px;
    }
    
    .menu-description {
        font-size: 13px;
    }
    
    .nutrition-item {
        padding: 6px 8px;
        min-width: 50px;
    }
    
    .nutrition-label {
        font-size: 10px;
    }
    
    .nutrition-value {
        font-size: 12px;
    }
    
    .menu-cta {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .menu-cta-title {
        font-size: 22px;
    }
    
    .menu-cta-description {
        font-size: 14px;
    }
}

/* ===== TESTIMONIALS & SOCIAL PROOF SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,107,53,0.15) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Social Proof Stats */
.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-card.featured {
    border: 2px solid #ff6b35;
    position: relative;
}

.testimonial-card.featured::after {
    content: 'FEATURED';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.customer-photo {
    position: relative;
    flex-shrink: 0;
}

.customer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6b35;
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border: 2px solid white;
}

.customer-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.customer-title {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #ff6b35;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-results {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.result-item {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #e9ecef;
}

.result-label {
    color: #6c757d;
    font-weight: 500;
}

.result-value {
    color: #ff6b35;
    font-weight: 600;
    margin-left: 5px;
}

/* Video Testimonials */
.video-testimonials {
    margin: 80px 0;
    text-align: center;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.video-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: #ff6b35;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-customer {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.video-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Social Media Proof */
.social-media-proof {
    margin: 80px 0;
    text-align: center;
}

.social-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.social-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-width: 200px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.social-link i {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-link.instagram i {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-link.facebook i {
    background: #1877f2;
}

.social-link.tiktok i {
    background: #000;
}

.social-link.youtube i {
    background: #ff0000;
}

.social-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    display: block;
}

.social-followers {
    font-size: 0.9rem;
    color: #6c757d;
    display: block;
}

/* Testimonial CTA */
.testimonial-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.testimonial-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 4s infinite;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    min-width: 250px;
    justify-content: center;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    color: white;
}

.cta-btn.secondary {
    background: white;
    color: #2c3e50;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* ===== ABOUT SASA KITCHEN SECTION ===== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #f0fff4 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(46, 204, 113, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(243, 156, 18, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    margin-top: 60px;
}

/* Owner Image Section */
.about-image {
    position: relative;
    z-index: 2;
}

.owner-image-container {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.owner-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #2ECC71;
    box-shadow: 
        0 20px 60px rgba(46, 204, 113, 0.2),
        0 0 0 20px rgba(46, 204, 113, 0.05);
    transition: all 0.4s ease;
}

.owner-img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 30px 80px rgba(46, 204, 113, 0.3),
        0 0 0 25px rgba(46, 204, 113, 0.08);
}

.owner-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
    border: 3px solid white;
}

.owner-badge i {
    font-size: 1.1rem;
    color: #F39C12;
}

/* Credentials Cards */
.credentials-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credential-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(46, 204, 113, 0.2);
}

.credential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credential-icon i {
    font-size: 1.5rem;
    color: white;
}

.credential-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 5px;
}

.credential-info p {
    font-size: 1rem;
    color: #7F8C8D;
    margin: 0;
}

/* About Text Section */
.about-text {
    position: relative;
    z-index: 2;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(243, 156, 18, 0.1);
    color: #F39C12;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.story-badge i {
    font-size: 1.1rem;
    color: #E74C3C;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text {
    font-size: 1.1rem;
    color: #5A6C7D;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Mission & Vision */
.mission-vision {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission,
.vision {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #2ECC71;
    transition: all 0.3s ease;
}

.mission:hover,
.vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.vision {
    border-left-color: #F39C12;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision .mv-icon {
    background: linear-gradient(135deg, #F39C12, #E67E22);
}

.mv-icon i {
    font-size: 1.5rem;
    color: white;
}

.mv-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.mv-content p {
    font-size: 1rem;
    color: #5A6C7D;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values-section {
    margin: 50px 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(243, 156, 18, 0.03));
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.values-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 35px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item:nth-child(2) .value-icon {
    background: linear-gradient(135deg, #3498DB, #2980B9);
}

.value-item:nth-child(3) .value-icon {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.value-item:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #F39C12, #E67E22);
}

.value-icon i {
    font-size: 1.2rem;
    color: white;
}

.value-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
}

.value-content p {
    font-size: 0.95rem;
    color: #7F8C8D;
    margin: 0;
    line-height: 1.5;
}

/* About CTA */
.about-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.about-cta .cta-btn.primary {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: white;
}

.about-cta .cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.4);
    color: white;
}

.about-cta .cta-btn.secondary {
    background: white;
    color: #2C3E50;
    border: 2px solid #2ECC71;
}

.about-cta .cta-btn.secondary:hover {
    background: #2ECC71;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.3);
}

/* Achievement Stats */
.achievement-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #2C3E50, #34495E);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.achievement-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(243, 156, 18, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.achievement-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.achievement-item:nth-child(2) .achievement-icon {
    background: linear-gradient(135deg, #3498DB, #2980B9);
}

.achievement-item:nth-child(3) .achievement-icon {
    background: linear-gradient(135deg, #F39C12, #E67E22);
}

.achievement-item:nth-child(4) .achievement-icon {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

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

.achievement-icon i {
    font-size: 1.8rem;
    color: white;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.achievement-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .credentials-cards {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .credential-card {
        flex: 1;
        min-width: 250px;
        max-width: 300px;
    }
    
    .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .owner-img {
        width: 220px;
        height: 220px;
    }
    
    .credentials-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .credential-card {
        max-width: 100%;
        width: 100%;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta .cta-btn {
        width: 100%;
        max-width: 350px;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .owner-img {
        width: 180px;
        height: 180px;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .mission,
    .vision {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .values-section {
        padding: 30px 20px;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .achievement-stats {
        padding: 30px 15px;
    }
}

/* ===== SERVICE AREA & DELIVERY SECTION ===== */
.service-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.service-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 107, 107, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(78, 205, 196, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Service Coverage Map */
.service-coverage {
    margin: 60px 0;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-map {
    position: relative;
}

.map-container {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.map-container::before {
    content: '';
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="90" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

/* Google Maps Embed Styles */
.google-maps-embed {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.google-maps-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.map-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-link:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #4ECDC4;
}

.map-link i {
    font-size: 1rem;
}

/* Delivery Zones */
.delivery-zones {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.zone-marker {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zone-marker:hover {
    transform: scale(1.1);
}

.zone-1 { top: 20%; left: 45%; }
.zone-2 { top: 10%; left: 30%; }
.zone-3 { top: 70%; left: 40%; }
.zone-4 { top: 40%; left: 70%; }
.zone-5 { top: 50%; left: 15%; }

.marker-dot {
    width: 20px;
    height: 20px;
    background: #FF6B6B;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.marker-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.zone-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.zone-marker:hover .zone-label {
    opacity: 1;
    top: -40px;
}

/* Coverage Info */
.coverage-info {
    padding-left: 20px;
}

.coverage-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.coverage-badge i {
    font-size: 1.1rem;
}

.coverage-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.coverage-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.coverage-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

/* Specific feature icon styles */
.feature-icon.delivery-time {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.feature-icon.temperature-control {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.feature-icon.hygiene-safety {
    background: linear-gradient(135deg, #A8E6CF, #7FCDCD);
}

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

.feature-item:hover .feature-icon.delivery-time {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.feature-item:hover .feature-icon.temperature-control {
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.feature-item:hover .feature-icon.hygiene-safety {
    box-shadow: 0 8px 25px rgba(168, 230, 207, 0.4);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.feature-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Delivery Zones Grid */
.zones-grid {
    margin: 80px 0;
}

.zones-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.zones-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.zone-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.zone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.zone-card.active {
    border-color: #4ECDC4;
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    color: white;
}

.zone-card.active .zone-name,
.zone-card.active .coverage-label,
.zone-card.active .coverage-areas {
    color: white;
}

.zone-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.zone-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.zone-card.active .zone-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.zone-card:hover .zone-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.zone-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.zone-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zone-coverage {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.coverage-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coverage-areas {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.zone-delivery {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.zone-card.active .zone-delivery {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.delivery-time,
.delivery-cost {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4ECDC4;
}

.zone-card.active .delivery-time,
.zone-card.active .delivery-cost {
    color: white;
}

/* Delivery Schedule */
.delivery-schedule {
    margin: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.delivery-schedule::before {
    content: '';
    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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%234ECDC4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

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

.schedule-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.schedule-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.schedule-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.schedule-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.schedule-option:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.schedule-option:nth-child(1) .option-icon {
    background: linear-gradient(135deg, #FFD93D, #FF8E53);
}

.schedule-option:nth-child(2) .option-icon {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.schedule-option:nth-child(3) .option-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.option-icon i {
    font-size: 1.5rem;
    color: white;
}

.option-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.option-time {
    font-size: 1rem;
    font-weight: 600;
    color: #4ECDC4;
    margin-bottom: 5px;
}

.option-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Schedule Image */
.schedule-image {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.delivery-illustration {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.delivery-illustration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    pointer-events: none;
}

.delivery-truck,
.delivery-house {
    font-size: 3rem;
    color: #4ECDC4;
    position: relative;
    z-index: 2;
}

.delivery-path {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.path-dot {
    width: 8px;
    height: 8px;
    background: #4ECDC4;
    border-radius: 50%;
    animation: pathMove 2s infinite;
}

.path-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.path-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pathMove {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.delivery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4ECDC4;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Area CTA */
.service-area-cta {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.service-area-cta::before {
    content: '';
    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"><defs><pattern id="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.service-area-cta .cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-area-cta .cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-form {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.address-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 5px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.address-input i {
    color: #666;
    font-size: 1.2rem;
    margin-left: 20px;
    margin-right: 15px;
}

.address-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 0;
    font-size: 1rem;
    color: #333;
}

.address-input input::placeholder {
    color: #999;
}

.check-btn {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 45px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.service-area-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.service-area-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-area-cta .cta-btn.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-area-cta .cta-btn.primary:hover {
    background: white;
    color: #4ECDC4;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.service-area-cta .cta-btn.secondary {
    background: rgba(255, 107, 107, 0.9);
    color: white;
    border: 2px solid transparent;
}

.service-area-cta .cta-btn.secondary:hover {
    background: #FF6B6B;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.service-area-cta .cta-btn i {
    font-size: 1.1rem;
}

/* Responsive Design for Service Area */
@media (max-width: 1024px) {
    .zones-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-area {
        padding: 60px 0;
    }
    
    .coverage-content,
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .coverage-info {
        padding-left: 0;
        text-align: center;
    }
    
    /* Google Maps responsive */
    .google-maps-embed {
        height: 300px;
        border-radius: 10px;
    }
    
    .map-overlay {
        top: 10px;
        right: 10px;
    }
    
    .map-link {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    .map-link span {
        display: none;
    }
    
    .zones-container {
        grid-template-columns: 1fr;
    }
    
    .zone-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .zone-name {
        font-size: 1.2rem;
    }
    
    .delivery-schedule {
        padding: 40px 20px;
    }
    
    .schedule-options {
        gap: 15px;
    }
    
    .schedule-option {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .delivery-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .service-area-cta {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .service-area-cta .cta-title {
        font-size: 1.8rem;
    }
    
    .address-input {
        flex-direction: column;
        padding: 15px;
        border-radius: 20px;
    }
    
    .address-input input {
        text-align: center;
        padding: 10px;
    }
    
    .check-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .service-area-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-area-cta .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(78, 205, 196, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(78, 205, 196, 0.2);
}

.faq-item.active {
    border-color: #4ECDC4;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    color: white;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

.faq-toggle i {
    color: white;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 30px;
}

.faq-content {
    padding-top: 10px;
}

.faq-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.faq-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.faq-content li {
    position: relative;
    padding: 8px 0 8px 25px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.faq-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #4ECDC4;
    font-weight: bold;
    font-size: 1rem;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.faq-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.faq-content a {
    color: #4ECDC4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-content a:hover {
    color: #44A08D;
    text-decoration: underline;
}

/* FAQ CTA Section */
.faq-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    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"><defs><pattern id="faq-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.faq-cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

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

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-cta .cta-btn.primary {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    border: 2px solid transparent;
}

.faq-cta .cta-btn.primary:hover {
    background: linear-gradient(135deg, #44A08D, #4ECDC4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.faq-cta .cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.faq-cta .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.faq-cta .cta-btn i {
    font-size: 1.1rem;
}

/* FAQ Responsive Design */
@media (max-width: 1024px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-toggle {
        width: 30px;
        height: 30px;
    }
    
    .faq-toggle i {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 25px;
    }
    
    .faq-content p {
        font-size: 0.95rem;
    }
    
    .faq-content li {
        font-size: 0.9rem;
        padding-left: 22px;
    }
    
    .faq-content li::before {
        width: 16px;
        height: 16px;
        font-size: 0.7rem;
    }
    
    .faq-cta {
        padding: 40px 25px;
        margin-top: 40px;
    }
    
    .faq-cta h3 {
        font-size: 1.6rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-content li {
        font-size: 0.85rem;
        padding-left: 20px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta h3 {
        font-size: 1.4rem;
    }
    
    .faq-cta .cta-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    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"><defs><pattern id="cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-dots)"/></svg>') repeat;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* CTA Header */
.cta-header {
    margin-bottom: 60px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.cta-badge i {
    font-size: 1.1rem;
    color: #4ECDC4;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* CTA Stats */
.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat-item {
    text-align: center;
    position: relative;
}

.cta-stat-item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.cta-stat-item:last-child::after {
    display: none;
}

.cta-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4ECDC4;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(78, 205, 196, 0.3);
}

.cta-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.cta-btn.large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px 40px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-btn.large:hover::before {
    left: 100%;
}

.cta-btn.large i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.cta-btn.large span {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-btn.large small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-btn.primary.large {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: 3px solid transparent;
}

.cta-btn.primary.large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
    color: white;
}

.cta-btn.secondary.large {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary.large:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
    color: white;
}

/* CTA Guarantee */
.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.guarantee-item i {
    font-size: 1.2rem;
    color: #4ECDC4;
}

/* CTA Urgency */
.cta-urgency {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: urgency-shimmer 3s infinite;
}

@keyframes urgency-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: urgency-pulse 2s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    }
}

.urgency-badge i {
    font-size: 1rem;
    animation: tick 1s ease-in-out infinite;
}

@keyframes tick {
    0%, 50%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.urgency-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.urgency-text strong {
    color: #4ECDC4;
    font-weight: 700;
}

/* CTA Responsive Design */
@media (max-width: 1024px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-stats {
        gap: 30px;
        margin: 50px 0;
    }
    
    .cta-stat-number {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        gap: 20px;
        margin: 50px 0;
    }
    
    .cta-btn.large {
        min-width: 250px;
        padding: 22px 35px;
    }
    
    .guarantee-item {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .cta-stat-item::after {
        display: none;
    }
    
    .cta-stat-number {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 40px 0;
    }
    
    .cta-btn.large {
        width: 100%;
        max-width: 350px;
        min-width: auto;
        padding: 20px 30px;
    }
    
    .cta-btn.large span {
        font-size: 1.1rem;
    }
    
    .cta-btn.large small {
        font-size: 0.85rem;
    }
    
    .cta-guarantee {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 40px 0;
    }
    
    .guarantee-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 15px 20px;
    }
    
    .cta-urgency {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .cta-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .cta-stats {
        margin: 30px 0;
        padding: 25px 0;
    }
    
    .cta-stat-number {
        font-size: 1.8rem;
    }
    
    .cta-stat-label {
        font-size: 0.9rem;
    }
    
    .cta-btn.large {
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .cta-btn.large i {
        font-size: 1.3rem;
    }
    
    .cta-btn.large span {
        font-size: 1rem;
    }
    
    .cta-btn.large small {
        font-size: 0.8rem;
    }
    
    .guarantee-item {
        font-size: 0.9rem;
        padding: 12px 18px;
    }
    
    .guarantee-item i {
        font-size: 1.1rem;
    }
    
    .cta-urgency {
        padding: 20px 15px;
    }
    
    .urgency-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .urgency-text {
        font-size: 0.95rem;
    }
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

/* Company Info Section */
.footer-section.company-info {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #ff6b35;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-stat {
    text-align: center;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    min-width: 80px;
}

.footer-stat .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.footer-stat .stat-label {
    font-size: 0.8rem;
    color: #cccccc;
    line-height: 1.2;
}

/* Footer Sections */
.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff6b35;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 10px;
}

/* Contact Info */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.8rem;
    color: #999999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-value a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #ff6b35;
}

/* Social Media & CTA */
.footer-social-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-social h4,
.footer-cta h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.3);
    color: #e1306c;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.3);
    color: #1877f2;
}

.social-link.tiktok:hover {
    background: rgba(255, 0, 80, 0.1);
    border-color: rgba(255, 0, 80, 0.3);
    color: #ff0050;
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff0000;
}

.social-link i {
    font-size: 1.2rem;
    min-width: 20px;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer CTA */
.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-cta-btn.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
}

.footer-cta-btn.primary:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.footer-cta-btn.secondary {
    background: transparent;
    color: #ff6b35;
    border-color: #ff6b35;
}

.footer-cta-btn.secondary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0 0 8px 0;
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-tagline {
    color: #999999 !important;
    font-size: 0.8rem !important;
    font-style: italic;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #ff6b35;
}

.separator {
    color: #666666;
    font-size: 0.8rem;
}

.footer-certification {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-size: 0.85rem;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.certification-item i {
    color: #ff6b35;
    font-size: 1rem;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section.company-info {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

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

    .footer-section.company-info {
        padding-right: 0;
        text-align: center;
    }

    .footer-stats {
        justify-content: center;
        gap: 15px;
    }

    .footer-stat {
        min-width: 70px;
        padding: 12px;
    }

    .footer-social-cta {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-certification {
        gap: 15px;
    }

    .certification-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-stats {
        gap: 10px;
    }
    
    .footer-stat {
        min-width: 60px;
        padding: 10px;
    }
    
    .footer-stat .stat-number {
        font-size: 1rem;
    }
    
    .footer-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .footer-cta-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .footer-certification {
        gap: 10px;
    }
    
    .certification-item {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}