:root {
    /* Elegant Palette */
    --primary-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --secondary-gradient: linear-gradient(to right, #f83600 0%, #f9d423 100%);
    --primary-dark: #2c3e50;
    --accent-color: #b91c1c;
    --white: #ffffff;
    --off-white: #fdfdfd;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --modal-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    --flow-color: #e0f2ff;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--primary-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
    /* Elegant serif for headings */
}

h2,
h4 {
    color: #000000;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 107, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-in {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* --- Navbar --- */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #2c3e50;
}

.navbar-brand span {
    color: #4facfe;
}

.navbar-brand-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .navbar-brand-logo {
        height: 50px;
        max-width: 220px;
    }
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 160px 0 120px;
    background: url("https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80")
    no-repeat center center/cover;
    color: white;
}

/* Dark overlay for readability */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 85%), rgb(0 0 0 / 80%));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-text {
    background: var(--accent-color);
    /*background: linear-gradient(to right, #ff9966, #ff5e62);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Attractive CTAs --- */
.btn-cta-pulse {
    background: var(--accent-color);
    /*background: linear-gradient(45deg, #ff6b6b, #ff8e53);*/
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    animation: pulse-glow 2s infinite;
    transition: transform 0.3s ease;
}

.btn-cta-pulse:hover {
    transform: translateY(-3px) scale(1.02);
    color: white;
    background: #022f53;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-outline-glass:hover {
    background: white;
    color: var(--primary-dark);
}

/* --- Floating Action Button --- */
.floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 198, 255, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* --- Elegant Modal --- */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--modal-shadow);
}

.modal-body {
    padding: 0;
}

.modal-left-img {
    background: url("https://images.unsplash.com/photo-1434030216411-0b793f4b4173?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80")
    center/cover;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    position: relative;
}

.modal-left-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.modal-quote {
    position: relative;
    color: white;
    z-index: 2;
    font-size: 1.1rem;
    font-style: italic;
}

.modal-form-container {
    padding: 50px 40px;
    background: #fff;
}

/* Custom Modal Transition */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

/* --- Services --- */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.2);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    color: #4facfe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: #4facfe;
    color: white;
}

.service-image-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image-box img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 100%
    );
}

.service-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h4 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-card p {
    flex: 1;
    margin-bottom: 20px;
}

/* --- Process Section --- */
#process {
    padding: 80px 0;
    background-color: #f8f9fa;
    /* Light background for contrast */
    position: relative;
}

.process-step {
    position: relative;
    padding: 20px;
    text-align: center;
    z-index: 1;
}

.process-step-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    background: #fff;
    color: var(--primary-dark);
    border-radius: 50%;
    border: 5px solid var(--flow-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-step:hover .process-step-icon {
    transform: scale(1.1);
    border-color: #4facfe;
    color: #4facfe;
}

.process-arrow {
    position: absolute;
    top: 50px;
    left: 50%;
    right: -50%;
    height: 2px;
    background-color: var(--flow-color);
    z-index: 0;
}

.process-arrow i {
    position: absolute;
    right: -10px;
    top: -12px;
    color: var(--primary-dark);
    font-size: 1.5rem;
    background: #f8f9fa;
    padding: 0 5px;
}

/* Remove arrows for the last step and on mobile */
.process-step:last-child .process-arrow {
    display: none;
}

@media (max-width: 767px) {
    .process-arrow {
        display: none;
    }
}

/* Step Counter Styling */
.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    color: white;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
}

/* --- Testimonials Section --- */
#testimonials {
    padding: 100px 0;
    /* Increased padding */
    /* Dramatic Dark Gradient Background */
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    /* Text color for the section header */
}

#testimonials h6 {
    color: #00f2fe !important;
    /* Bright cyan accent for subtitle */
}

#testimonials h2 {
    color: white;
    /* White title for contrast */
}

/* Elegant Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 25px;
    /* More rounded */
    padding: 40px;
    /* More padding */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    /* Stronger shadow against dark background */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #00f2fe;
    /* Subtle cyan accent line */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    /* Needed for quote icon positioning */
    overflow: hidden;
    /* Ensures quote icon doesn't bleed out */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    /* Lift on hover */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.2rem;
    /* Larger, more impactful quote */
    line-height: 1.6;
    color: var(--primary-dark);
    /* Ensure quote text is dark on white card */
}

/* Large quote icon overlay for elegance */
.testimonial-card::before {
    content: "\f10d";
    /* FontAwesome quote-left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10rem;
    /* Massive icon */
    color: rgba(0, 242, 254, 0.05);
    /* Very light, transparent cyan */
    z-index: 1;
}

/* Ensure content is above the overlay icon */
.testimonial-text,
.testimonial-author-circle,
.testimonial-card .d-flex {
    position: relative;
    z-index: 2;
}

/* Carousel Customization for contrast */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #00f2fe;
    /* Bright cyan */
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--accent-color);
    /* Red/Orange active color */
    transform: scale(1.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    color: #00f2fe;
    /* Bright arrows against dark background */
    font-size: 2.5rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    opacity: 1;
}

/* --- Footer --- */
/* --- Footer Redesign --- */
footer {
    position: relative;
    background: #1a1c20;
    color: #b2bec3;
    padding-top: 0;
    overflow: hidden;
    font-size: 0.95rem;
}

.footer-wave {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.footer-wave .shape-fill {
    fill: var(--off-white);
}

.footer-content {
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

.footer-brand span {
    color: #4facfe;
}

.footer-brand-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-brand-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .footer-brand-logo {
        height: 40px;
        max-width: 180px;
    }
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-heading {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    font-family: "Playfair Display", serif;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b2bec3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #4facfe;
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-links a::before {
    content: "\u203a";
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #4facfe;
}

.footer-links a:hover::before {
    /* opacity: 1; */
    left: -5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
    border-color: transparent;
}

.footer-newsletter-form {
    position: relative;
    margin-bottom: 20px;
}

.footer-newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    width: 100%;
    padding-right: 50px;
    transition: all 0.3s ease;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4facfe;
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
}

.footer-newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    background: #15171a;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #b2bec3;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom .footer-disclaimer {
    color: #979797;
}

/* Mobile Responsive Modal */
@media (max-width: 991px) {
    .modal-left-img {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* --- New #about Section Styling (WOW Factor) --- */
#about {
    padding: 100px 0;
    background-color: var(--off-white);
}

/* Elegant Feature Card with Glass effect */
.feature-card-elegant {
    background: rgba(255, 255, 255, 0.9);
    /* Subtle transparency */
    backdrop-filter: blur(10px);
    /* The glass effect */
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid;
    border-image: var(--primary-gradient) 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-elegant:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.15);
}

/* Gradient Icon Box */
.feature-icon-box {
    background: var(--primary-gradient);
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    padding: 40px 30px;
    margin-top: 60px;
    color: white;
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
}

/* Image Styling */
.about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

@media (max-width: 767px) {
    .about-image {
        margin-bottom: 30px;
    }
}

/* --- Signup Section --- */
#signup-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.signup-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.signup-content-wrapper {
    position: relative;
    z-index: 2;
}

.signup-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.signup-card:hover {
    transform: translateY(-5px);
}

.signup-image-side {
    background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80")
    center/cover;
    height: 100%;
    min-height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
}

.signup-image-side::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to top,
            rgba(79, 172, 254, 0.9),
            rgba(0, 242, 254, 0.7)
    );
}

.signup-image-content {
    position: relative;
    z-index: 2;
    color: white;
}

.signup-image-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.signup-image-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.7;
}

.signup-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.signup-stat-item {
    text-align: center;
}

.signup-stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.signup-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.signup-form-side {
    padding: 50px 40px;
    background: white;
}

.signup-form-header {
    text-align: center;
    margin-bottom: 35px;
}

.signup-form-header .badge {
    margin-bottom: 15px;
}

.signup-form-header h3 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.signup-form-header p {
    color: #6c757d;
    margin-bottom: 0;
}

.signup-benefits {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
}

.signup-benefits h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.signup-benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.signup-benefit-item i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .signup-image-side {
        min-height: 400px;
        padding: 40px 30px;
    }

    .signup-image-content h3 {
        font-size: 2rem;
    }

    .signup-stats {
        gap: 20px;
    }

    .signup-stat-number {
        font-size: 1.5rem;
    }

    .signup-form-side {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    #signup-section {
        padding: 60px 0;
    }

    .signup-image-side {
        min-height: 350px;
    }

    .signup-stats {
        flex-direction: column;
        gap: 15px;
    }

    .signup-stat-item {
        text-align: left;
    }
}

/* --- FAQ Section --- */
#faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.faq-bg-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
            circle,
            rgba(79, 172, 254, 0.15) 0%,
            transparent 70%
    );
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.faq-bg-decoration:nth-child(2) {
    top: auto;
    bottom: -100px;
    left: -100px;
    right: auto;
    animation-delay: 3s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.15);
    border-color: rgba(79, 172, 254, 0.3);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(
            135deg,
            rgba(79, 172, 254, 0.05) 0%,
            rgba(0, 242, 254, 0.05) 100%
    );
}

.faq-question h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-dark);
    padding-right: 20px;
    flex: 1;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer ul {
    margin: 15px 0 0 0;
    padding-left: 20px;
    color: #6c757d;
}

.faq-answer ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-cta-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
    color: white;
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.3);
    position: relative;
    z-index: 2;
}

.faq-cta-box h4 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.faq-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.faq-cta-box .btn {
    background: white;
    color: #4facfe;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-cta-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: #00f2fe;
}

@media (max-width: 767px) {
    #faq-section {
        padding: 60px 0;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h5 {
        font-size: 1rem;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-cta-box {
        padding: 40px 25px;
    }

    .faq-cta-box h4 {
        font-size: 1.5rem;
    }
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.iti {
    width: 100%;
    height: 100%;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"],
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="text"],
.iti--separate-dial-code input[type="tel"] {
    padding-left: 89px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: 100%;
    min-height: 58px;
    max-height: 58px;
}

small.error {
    color: red;
}