/* ===================================
   Service Page Shared Styles
   Color Theme: Orange (#ff6b35), Purple (#e8d5f2), Gold (#fbbf24)
   =================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: #ff6b35;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b35;
}

/* ===================================
   Hero Section (supports both .hero and .service-hero)
   =================================== */
.hero,
.service-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #e8d5f2 0%, #d4c5e8 50%, #f5e6d3 100%);
    overflow: hidden;
    min-height: 600px;
}

.hero-background,
.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(232, 213, 242, 0.3) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Hero content - supports both centered and grid layouts */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Service hero with grid layout */
.service-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
}

.hero-text {
    text-align: left;
}

.service-hero .hero-text {
    text-align: left;
}

.breadcrumb {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    animation: fadeInDown 0.6s ease;
}

.breadcrumb a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
    font-weight: 600;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
}

/* Hero titles - supports both .hero-title and .service-title */
.hero-title,
.service-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

/* Centered hero uses gradient text */
.hero .hero-title {
    font-size: clamp(36px, 6vw, 56px);
    background: linear-gradient(135deg, #1a1a1a 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero subtitles - supports both classes */
.hero-subtitle,
.service-description {
    font-size: clamp(16px, 2vw, 18px);
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease;
}

.hero .hero-subtitle {
    font-size: clamp(18px, 2.5vw, 20px);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Hero CTA buttons - supports both .hero-cta and .hero-buttons */
.hero-cta,
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

.hero .hero-cta {
    justify-content: center;
}

.trust-indicators {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1.4s ease;
}

.indicator {
    display: flex;
    flex-direction: column;
}

.indicator-number {
    font-size: 32px;
    font-weight: 800;
    color: #ff6b35;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 5px;
}

.indicator-label {
    font-size: 14px;
    color: #666;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 10%;
    left: 50%;
    animation-delay: 4s;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.2s ease;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8c5a 0%, #fbbf24 100%);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: white;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2), transparent);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(232, 213, 242, 0.3), transparent);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ===================================
   Benefits Section (supports both .benefits and .benefits-section)
   =================================== */
.benefits,
.benefits-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInUp 0.8s ease;
}

/* Section titles - supports both h2 and .section-title */
.section-header h2,
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after,
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #fbbf24);
    border-radius: 2px;
}

/* Section subtitles - supports both p and .section-subtitle */
.section-header p,
.section-subtitle {
    font-size: 19px;
    color: #666;
    margin-top: 25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 45px 35px;
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

/* Benefit icons - supports both emoji and SVG */
.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
    font-size: 36px;
}

.benefit-icon svg {
    color: white;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(360deg);
    background: white;
}

.benefit-card:hover .benefit-icon svg {
    color: #ff6b35;
}

/* For emoji icons */
.benefit-card:hover .benefit-icon {
    filter: none;
}

/* Benefit titles - supports both h3 and .benefit-title */
.benefit-card h3,
.benefit-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.5s;
    position: relative;
    z-index: 1;
}

.benefit-card:hover h3,
.benefit-card:hover .benefit-title {
    color: white;
}

/* Benefit descriptions - supports both p and .benefit-description */
.benefit-card p,
.benefit-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    transition: color 0.5s;
    position: relative;
    z-index: 1;
}

.benefit-card:hover p,
.benefit-card:hover .benefit-description {
    color: rgba(255, 255, 255, 0.95);
}

/* ===================================
   Features Section (supports both .features and .features-section)
   =================================== */
.features,
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef3e8 0%, #f5e6d3 50%, #e8d5f2 100%);
    position: relative;
}

/* Features grid/list - supports both .features-list and .features-grid */
.features-list,
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b35, #fbbf24);
    transform: scaleY(0);
    transition: transform 0.4s;
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover {
    transform: translateX(15px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

/* Feature icons and numbers - supports both */
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    min-width: 80px;
    transition: transform 0.4s;
    flex-shrink: 0;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item:hover .feature-number {
    transform: scale(1.2);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.feature-item:hover .feature-content h3 {
    color: #ff6b35;
}

.feature-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* ===================================
   Process Section
   =================================== */
.process {
    padding: 100px 0;
    background: white;
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, #ff6b35, #fbbf24);
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    animation: fadeInLeft 0.8s ease;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s;
    font-family: 'Poppins', sans-serif;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

/* Process step titles - supports both structures */
.step-content h3,
.process-step h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.process-step:hover .step-content h3,
.process-step:hover h3 {
    color: #ff6b35;
}

/* Process step descriptions */
.step-content p,
.process-step p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* ===================================
   CTA Section (supports both .cta and .cta-section)
   =================================== */
.cta,
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta::before,
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-content .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #fbbf24 100%);
    font-size: 18px;
    padding: 20px 50px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: orangered;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }
    
    .section-header h2 {
        font-size: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero,
    .service-hero {
        padding: 140px 20px 80px;
        min-height: auto;
    }
    
    .service-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text,
    .service-hero .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-cta,
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .feature-number {
        margin: 0 auto;
    }
    
    .process-timeline {
        padding-left: 0;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 17px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-icon {
        font-size: 20px;
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .hero,
    .service-hero {
        padding: 120px 15px 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 15px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .benefit-card h3 {
        font-size: 20px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-number {
        font-size: 36px;
        min-width: 60px;
    }
    
    .feature-content h3 {
        font-size: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-content p {
        font-size: 15px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .cta-content .btn-primary {
        font-size: 16px;
        padding: 16px 35px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 18px 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ===================================
   Additional Footer Styles
   =================================== */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}


/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: visible;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s;
    user-select: none;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    color: #ff6b35;
}

.faq-question:focus {
    outline: none;
}

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-icon {
        font-size: 20px;
        margin-left: 15px;
    }
}


