/* =====================
   RESET & BASE STYLES
   ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =====================
   NAVIGATION
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #5786ff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0;
}

.nav-brand .logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #5786ff;
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 25px 20px;
    display: block;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 0;
    height: 3px;
    background: #5786ff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #5786ff;
}

.nav-link:hover::after {
    width: calc(100% - 40px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-close {
    display: none;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    margin-top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(background.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.65) 0%, rgba(8, 8, 8, 0.45) 50%, rgba(87, 134, 255, 0.15) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 10px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
    animation: slideUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    animation: slideUp 0.8s ease-out 0.1s backwards;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.hero-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    animation: slideUp 0.8s ease-out 0.3s backwards;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
}

.info-item i {
    color: #5786ff;
    font-size: 18px;
}

.info-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.info-item a:hover {
    color: #5786ff;
}

.info-item a span {
    display: inline;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections start hidden before animation */
section[data-scroll] {
    opacity: 0;
}

.scroll-animate {
    animation: fadeInUp 0.8s ease-out forwards !important;
    opacity: 1 !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    padding: 14px 35px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #5786ff, #5786ff);
    color: #fff;
    box-shadow: 0 6px 20px rgba(87, 134, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(87, 134, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #5786ff;
    border: 2px solid #5786ff;
}

.btn-secondary:hover {
    background: #5786ff;
    color: #000;
    transform: translateY(-2px);
}

/* =====================
   CONTAINER
   ===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.scroll-animate {
    animation: fadeInUp 0.8s ease-out forwards !important;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

/* =====================
   SERVICES SECTION
   ===================== */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff, #fff);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(87, 134, 255, 0.15);
    border-top-color: #5786ff;
}

.service-icon {
    font-size: 48px;
    color: #5786ff;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff, #f5f7ff);
}

.about-content {
    display: grid;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #333;
    align-items: flex-start;
}

.benefit-title {
    display: flex;
    gap: 12px;
    align-items: center;
}

.benefit-title strong {
    color: #1a1a1a;
}

.benefits-list p {
    margin: 0;
    padding-left: 32px;
    color: #666;
    line-height: 1.6;
}

/* =====================
   STATS SECTION
   ===================== */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(87, 134, 255, 0.1), rgba(87, 134, 255, 0.05));
    border-radius: 10px;
    border: 1px solid rgba(87, 134, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    border: 1px solid rgba(87, 134, 255, 0.1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(87, 134, 255, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #5786ff;
    margin-bottom: 0.5rem;
    display: block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    margin: 0;
}

.benefit-title i {
    color: #5786ff;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-title strong {
    color: #1a1a1a;
}

/* =====================
   TESTIMONIALS SECTION
   ===================== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff, #fff);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #5786ff;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(87, 134, 255, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5786ff 0%, #7fa4ff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.stars {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.stars i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

/* =====================
   MAPS SECTION
   ===================== */
.maps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff, #f5f7ff);
}

.maps-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(87, 134, 255, 0.2);
}

.maps-container iframe {
    display: block;
    width: 100%;
    height: 500px;
}

@media (max-width: 768px) {
    .maps-container iframe {
        height: 350px;
    }
}

/* =====================
   GALLERY SECTION
   ===================== */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff, #fff);
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 50px auto;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(87, 134, 255, 0.3);
}

.slide {
    display: none;
    position: relative;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 60vh;
    object-fit: cover;
}

.slide.fade {
    animation: fade 1s;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background: rgba(87, 134, 255, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 26px;
    transition: 0.3s ease;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    z-index: 10;
}

.prev:hover, .next:hover {
    background-color: rgba(87, 134, 255, 0.8);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.fullscreen-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(87, 134, 255, 0.8);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
    z-index: 10;
}

.fullscreen-btn:hover {
    background: #5786ff;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.dots-container {
    text-align: center;
    padding: 20px;
    background: #f5f7ff;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #5786ff;
}

/* Fullscreen Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.modal-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.modal-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background: rgba(87, 134, 255, 0.8);
    padding: 15px 30px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 10;
}

.close:hover {
    color: #5786ff;
}

.modal-prev, .modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 32px;
    transition: 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    z-index: 10;
    border: none;
}

.modal-prev:hover, .modal-next:hover {
    background-color: rgba(87, 134, 255, 0.8);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff, #f5f7ff);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #5786ff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-box h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box h3 i {
    color: #5786ff;
    font-size: 16px;
    flex-shrink: 0;
}

.info-box p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.info-box a {
    color: #5786ff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-box a:hover {
    color: #1a1a1a;
}

.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #5786ff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5786ff;
}

.form-group.checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 30px 0;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-group.checkbox label {
    font-size: 13px;
    color: #666;
    cursor: pointer;
    line-height: 1.6;
}

.form-group.checkbox a {
    color: #5786ff;
}

.form-message {
    display: block;
    margin-top: 20px;
    padding: 12px 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
}

.form-message.sending {
    background: #e3f2fd;
    color: #1565c0;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #5786ff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #999;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #5786ff;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(87, 134, 255, 0.1);
    border: 2px solid #5786ff;
    border-radius: 50%;
    color: #5786ff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #5786ff;
    color: #1a1a1a;
}

.footer-bottom {
    border-top: 1px solid rgba(87, 134, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.design-credit {
    color: #5786ff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.design-credit:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: #999;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5786ff;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        gap: 0;
        border-bottom: 3px solid #5786ff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        height: auto;
        margin: 0;
        border-bottom: 1px solid rgba(87, 134, 255, 0.1);
    }

    .nav-link {
        padding: 15px 20px;
        display: block;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .nav-link::after {
        display: none;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        color: #5786ff;
        cursor: pointer;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 250px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1, h2, h3 {
        font-size: 90%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0 15px;
    }

    .brand-name {
        display: none;
    }

    .nav-brand .logo {
        width: 40px;
        height: 40px;
    }

    .hero {
        height: calc(100vh - 70px);
    }

    .hero-background {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        margin-bottom: 30px;
    }

    .hero-info {
        gap: 20px;
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .container {
        padding: 0 10px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        font-size: 14px;
    }
}

/* =====================
   FAQ SECTION STYLES
   ===================== */
.faq-hero {
    background: linear-gradient(135deg, #5786ff, #7aa3ff);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-hero-content p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    background: linear-gradient(135deg, #fff, #f5f7ff);
    padding: 60px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-left: 4px solid #5786ff;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.faq-question:hover {
    background-color: rgba(87, 134, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
}

.faq-question i {
    color: #5786ff;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(87, 134, 255, 0.03);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 600px) {
    .faq-hero-content h1 {
        font-size: 32px;
    }

    .faq-hero-content p {
        font-size: 16px;
    }

    .faq-question {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-question h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .faq-question i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}
