
/* ============================================
   COMMON SECTION STYLES (NOT PARENT TARGETED)
   ============================================ */
   body {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; */
    overflow-x: hidden;
     font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}
.section-headline {
    font-size: 36px;
    font-weight: 700;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 15px;
}

.section-subheadline {
    font-size: 25px;
    color: #6c6c6c;
    text-align: center;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 80px 0px;
    background-color: #f8f9fa;
}

.features-section .features-container {
    max-width: 1320px;
    margin: 0 auto;
}

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.features-section .feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.features-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.features-section .feature-card:nth-child(1) {
    background: linear-gradient(135deg, #f3e7f9 0%, #e9d5f5 100%);
}

.features-section .feature-card:nth-child(2) {
    background: linear-gradient(135deg, #e3f2fd 0%, #d1e9fc 100%);
}

.features-section .feature-card:nth-child(3) {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}

.features-section .feature-card:nth-child(4) {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

.features-section .feature-card:nth-child(5) {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.features-section .feature-card:nth-child(6) {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
}

.features-section .feature-card:nth-child(7) {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.features-section .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
}

.features-section .purple-bg {
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
}

.features-section .blue-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.features-section .cyan-bg {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.features-section .pink-bg {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.features-section .green-bg {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.features-section .yellow-bg {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.features-section .orange-bg {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.features-section .card-title {
    font-size: 21px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.features-section .card-text {
    font-size: 22px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .features-section .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
  
    
    .section-headline {
        font-size: 32px;
    }
    
    .section-subheadline {
        font-size: 25px;
        margin-bottom: 50px;
    }
    
    .features-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}


@media (max-width: 768px) {
  
    
    .section-headline {
        font-size: 28px;
    }
    
    .section-subheadline {
        font-size: 25px;
        margin-bottom: 40px;
    }
    
    .features-section .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-section .feature-card {
        padding: 30px 20px;
    }
}
/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef5f8 0%, #f8f4ff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 0;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 50%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 0;
}

.pricing-section .pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-section .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

/* ============================================
   PRICE CARD
   ============================================ */
.pricing-section .price-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.pricing-section .price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-section .price-card-featured {
    border: 2px solid #E91E63;
    background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
}

.pricing-section .price-card-featured:hover {
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.25);
}

/* Price Badge */
.pricing-section .price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.pricing-section .price-badge-featured {
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.5);
}

/* Price Header */
.pricing-section .price-header {
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.pricing-section .price-plan-name {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 6px;
}

.pricing-section .price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 5px;
}

.pricing-section .price-currency {
    font-size: 32px;
    font-weight: 600;
    color: #E91E63;
    margin-top: 5px;
}

.pricing-section .price-value {
    font-size: 42px;
    font-weight: 700;
    color: #E91E63;
    line-height: 1;
}

.pricing-section .price-duration {
    font-size: 20px;
    color: #888;
    font-weight: 500;
    margin-bottom: 12px;
}

.pricing-section .price-tagline {
    font-size: 22px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Price Features */
.pricing-section .price-features {
    margin-bottom: 25px;
}

.pricing-section .price-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 25px;
    color: #555;
    line-height: 1.4;
}

.pricing-section .price-feature-item i {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-section .price-feature-item strong {
    color: #E91E63;
    font-weight: 600;
}

/* Ideal For Section */
.pricing-section .price-ideal-for {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.pricing-section .price-ideal-label {
    font-size: 22px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.pricing-section .price-ideal-text {
    font-size: 22px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Price Button */
.pricing-section .price-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-section .price-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.pricing-section .price-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

.pricing-section .price-btn-featured {
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

.pricing-section .price-btn-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.5);
    color: #ffffff;
}

/* Price Disclaimer */
.pricing-section .price-disclaimer {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .pricing-section {
        padding: 60px 20px;
    }
    
    .pricing-section .pricing-grid {
        gap: 30px;
    }
    
    .pricing-section .price-card {
        padding: 35px 30px;
    }
    
    .pricing-section .price-value {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 50px 20px;
    }
    
    .pricing-section .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-section .price-card {
        padding: 35px 25px;
    }
    
    .pricing-section .price-plan-name {
        font-size: 24px;
    }
    
    .pricing-section .price-value {
        font-size: 48px;
    }
    
    .pricing-section .price-currency {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .pricing-section .price-card {
        padding: 30px 20px;
    }
    
    .pricing-section .price-value {
        font-size: 42px;
    }
    
    .pricing-section .price-feature-item {
        font-size: 13px;
    }
    
    .pricing-section .price-btn {
        font-size: 16px;
        padding: 14px;
    }
}
/* ==================================== */
/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fef5f8 0%, #f8f4ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: 0;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 50%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: 0;
}

.process-section .process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Timeline Wrapper */
.process-section .timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 60px auto 0;
}

/* Horizontal Line */
.process-section .timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E91E63 0%, #ff4081 50%, #E91E63 100%);
    z-index: 0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.3);
}

/* Each Step */
.process-section .timeline-step {
    position: relative;
    width: 24%;
    z-index: 1;
}

/* Circle Number */
.process-section .circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
    border: 4px solid #ffffff;
    position: relative;
}

.process-section .circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.process-section .timeline-step:hover .circle {
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.5);
}

.process-section .timeline-step:hover .circle::before {
    opacity: 0.2;
}

.process-section .circle-number {
    position: relative;
    z-index: 1;
}

.process-section .timeline-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2d2d2d;
    transition: color 0.3s ease;
}

.process-section .timeline-step:hover h3 {
    color: #E91E63;
}

.process-section .timeline-step p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Step Numbers Effects */
.process-section .timeline-step:nth-child(1) .circle {
    animation-delay: 0.1s;
}

.process-section .timeline-step:nth-child(2) .circle {
    animation-delay: 0.2s;
}

.process-section .timeline-step:nth-child(3) .circle {
    animation-delay: 0.3s;
}

.process-section .timeline-step:nth-child(4) .circle {
    animation-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet View - Same Horizontal */
@media (max-width: 1024px) {
    .process-section {
        padding: 80px 20px;
    }
    
    .process-section .timeline {
        max-width: 100%;
    }
    
    .process-section .timeline-step {
        width: 24%;
    }
    
    .process-section .circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .process-section .timeline-step h3 {
        font-size: 18px;
    }
}

/* Mobile View Only */
@media (max-width: 768px) {
    .process-section {
        padding: 60px 20px;
    }
    
    .process-section .timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .process-section .timeline::before {
        display: none;
    }
    
    .process-section .timeline-step {
        width: 100%;
        max-width: 400px;
        margin-bottom: 50px;
    }
    
    .process-section .timeline-step:last-child {
        margin-bottom: 0;
    }
    
    .process-section .circle {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .process-section .timeline-step h3 {
        font-size: 20px;
    }
    
    .process-section .timeline-step p {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 50px 15px;
    }
    
    .process-section .circle {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .process-section .timeline-step h3 {
        font-size: 26px;
    }
}
/* ================================== */
/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-section .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Accordion */
.faq-section .faq-accordion {
    margin-top: 50px;
}

/* FAQ Item */
.faq-section .faq-item {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
    border-color: #E91E63;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.1);
}

.faq-section .faq-item.active {
    border-color: #E91E63;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.15);
}

/* FAQ Question */
.faq-section .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-section .faq-question:hover {
    background: linear-gradient(135deg, #fff5f8 0%, #fef5f8 100%);
}

.faq-section .faq-item.active .faq-question {
    background: linear-gradient(135deg, #fff5f8 0%, #fef5f8 100%);
}

.faq-section .faq-question h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
    padding-right: 20px;
}

.faq-section .faq-item.active .faq-question h3 {
    color: #E91E63;
}

/* FAQ Icon */
.faq-section .faq-icon {
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-section .faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #E91E63;
}

/* FAQ Answer */
.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-section .faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-section .faq-accordion {
        margin-top: 40px;
    }
    
    .faq-section .faq-question {
        padding: 20px 20px;
    }
    
    .faq-section .faq-question h3 {
        font-size: 22px;
    }
    
    .faq-section .faq-answer {
        padding: 0 20px;
    }
    
    .faq-section .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-section .faq-answer p {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 50px 15px;
    }
    
    .faq-section .faq-question {
        padding: 18px 15px;
    }
    
    .faq-section .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-section .faq-icon {
        font-size: 16px;
    }
}
/* ============================= */
/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff5f8 0%, #fef5f8 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 50%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 0;
}

.cta-section .cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ============================================
   CTA BADGE
   ============================================ */
.cta-section .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
    animation: pulse 2s infinite;
}

.cta-section .cta-badge i {
    font-size: 18px;
    animation: flicker 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    }
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ============================================
   CTA HEADLINE
   ============================================ */
.cta-section .cta-headline {
    font-size: 42px;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.cta-section .cta-subheadline {
    font-size: 20px;
    color: #E91E63;
    font-weight: 600;
    margin-bottom: 40px;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-section .cta-btn i {
    font-size: 18px;
}

.cta-section .cta-btn-primary {
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.cta-section .cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.4);
    color: #ffffff;
}

.cta-section .cta-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.cta-section .cta-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.cta-section .cta-btn-call {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.cta-section .cta-btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.cta-section .cta-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.cta-section .cta-contact-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cta-section .cta-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cta-section .cta-contact-card i {
    font-size: 28px;
    color: #E91E63;
    flex-shrink: 0;
}

.cta-section .cta-contact-info {
    text-align: left;
}

.cta-section .cta-contact-label {
    display: block;
    font-size: 12px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.cta-section .cta-contact-info a {
    font-size: 20px;
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-section .cta-contact-info a:hover {
    color: #E91E63;
}

.cta-section .cta-contact-info span {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
}

/* ============================================
   TRUST INDICATORS
   ============================================ */
.cta-section .cta-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-section .cta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    color: #666;
    font-weight: 600;
}

.cta-section .cta-trust-item i {
    font-size: 20px;
    color: #10b981;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section .cta-headline {
        font-size: 36px;
    }
    
    .cta-section .cta-subheadline {
        font-size: 18px;
    }
    
    .cta-section .cta-contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }
    
    .cta-section .cta-headline {
        font-size: 30px;
    }
    
    .cta-section .cta-subheadline {
        font-size: 17px;
        margin-bottom: 35px;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .cta-section .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-section .cta-trust {
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .cta-section .cta-headline {
        font-size: 26px;
    }
    
    .cta-section .cta-subheadline {
        font-size: 16px;
    }
    
    .cta-section .cta-badge {
        font-size: 14px;
        padding: 10px 25px;
    }
    
    .cta-section .cta-btn {
        font-size: 16px;
        padding: 14px 30px;
    }
    
    .cta-section .cta-contact-card {
        padding: 20px 15px;
    }
    
    .cta-section .cta-trust-item {
        font-size: 14px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
}


}
/* =============================================== */
/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 80px 20px;
    background: #ffffff;
}

.services-section .services-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* Services Grid */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Service Card */
.services-section .service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    overflow: hidden;
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff4081 0%, #E91E63 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    border-color: #E91E63;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.services-section .service-card:hover::before {
    transform: scaleX(1);
}

/* Service Number Badge */
.services-section .service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Service Icon */
.services-section .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff5f8 0%, #fef5f8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.services-section .service-icon i {
    font-size: 38px;
    color: #E91E63;
    transition: transform 0.4s ease;
}

.services-section .service-card:hover .service-icon {
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
    transform: scale(1.1);
}

.services-section .service-card:hover .service-icon i {
    color: #ffffff;
    transform: rotate(10deg);
}

/* Service Title */
.services-section .service-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.services-section .service-card:hover .service-title {
    color: #E91E63;
}

/* Service Description */
.services-section .service-description {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Service List */
.services-section .service-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.services-section .service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 25px;
    color: #666;
    margin-bottom: 10px;
}

.services-section .service-list li:last-child {
    margin-bottom: 0;
}

.services-section .service-list i {
    color: #10b981;
    font-size: 14px;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .services-section .service-card {
        padding: 30px 25px;
    }
    
    .services-section .service-title {
        font-size: 25px;
    }
    
    .services-section .service-description {
        font-size: 21px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 50px 15px;
    }
    
    .services-section .service-card {
        padding: 25px 20px;
    }
    
    .services-section .service-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: 15px;
        right: 15px;
    }
    
    .services-section .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .services-section .service-icon i {
        font-size: 32px;
    }
    
    .services-section .service-title {
        font-size: 18px;
    }
}