/* Reset & base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #F9FAFB;
}

/* Header */
.header {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
}

.logo-accent {
    color: #10B981;
}

/* Navigation */
.nav {
    display: flex;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: #374151;
    padding: 8px 0;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #1E40AF;
    border-bottom: 2px solid #10B981;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(90deg, #10B981, #1E40AF);
    color: #fff;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    height: 3px;
    width: 100%;
    background-color: #374151;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }

    .nav.open {
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #E5E7EB;
    }

    .header-actions {
        gap: 10px;
    }

    .mobile-menu-btn {
        display: flex;
    }
}
/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background-color: #F9FAFB;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23E0F2FE" fill-opacity="1" d="M0,224L1440,32L1440,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-chart {
    position: absolute;
    bottom: 20px;
    right: 50px;
    width: 400px;
    height: 200px;
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hero-badge i {
    color: #10B981;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #10B981, #1E40AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-outline {
    border: 2px solid #10B981;
    color: #10B981;
    background: transparent;
}

.btn-outline:hover {
    background: #10B981;
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1E40AF;
}

.stat-suffix {
    font-size: 1.25rem;
    font-weight: 600;
    color: #10B981;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background-color: #D1D5DB;
    margin: 0 15px;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
    color: #6B7280;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.25rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0);}
    40% { transform: translateY(8px);}
    60% { transform: translateY(4px);}
}

/* About Preview */
.about-preview {
    padding: 100px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
}

.about-badge-float {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: #10B981;
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-content .section-tag {
    font-weight: 600;
    color: #10B981;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.about-content .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text {
    font-size: 1rem;
    color: #4B5563;
    margin-bottom: 25px;
}

.about-values {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 200px;
}

.value-icon i {
    font-size: 1.5rem;
    color: #10B981;
}

.value-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.value-text p {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Responsive */
@media(max-width:768px){
    .hero-title {
        font-size: 2rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}
/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background-color: #F9FAFB;
}

.why-choose .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose .section-tag {
    font-weight: 600;
    color: #10B981;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 10px;
    display: inline-block;
}

.why-choose .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-choose .section-subtitle {
    font-size: 1rem;
    color: #6B7280;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #10B981;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #4B5563;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #fff;
}

.services-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.tab-btn {
    background: #F3F4F6;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tab-btn i {
    font-size: 1.25rem;
}

.tab-btn.active {
    background: #10B981;
    color: #fff;
}

.tab-btn.active i {
    color: #fff;
}

.tab-btn:hover:not(.active) {
    background: #E5E7EB;
}

.services-content {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: #F9FAFB;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-icon {
    font-size: 2rem;
    color: #10B981;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: #4B5563;
    margin-bottom: 15px;
}

.service-link {
    color: #10B981;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link i {
    margin-left: 6px;
}

.service-link:hover {
    color: #065F46;
}

/* FadeIn Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px);}
    100% { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media(max-width:768px){
    .features-grid, .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Section Header */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1F2937;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, #10B981, #1E40AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 40px;
    }
}
/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

/* Track */
.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* Card */
.testimonial-card {
    min-width: 100%;
    background: #FFFFFF;
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.testimonial-rating {
    color: #FACC15;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #1E40AF);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: #6B7280;
}

/* Controls */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.testimonial-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #10B981;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-btn:hover {
    background: #059669;
    transform: scale(1.05);
}

/* Dots */
.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dots span.active {
    background: #10B981;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 28px 22px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}
/* ===============================
   Trust Badges Section
================================ */
.trust-badges {
    padding: 60px 0;
    background: #F9FAFB;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    align-items: center;
    text-align: center;
}

.badge-item {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 18px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-item i {
    font-size: 1.8rem;
    color: #10B981;
}

.badge-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
}

.badge-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ===============================
   FAQ Section
================================ */
.faq {
    padding: 100px 0;
    background: #FFFFFF;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.faq-item {
    border-radius: 14px;
    background: #F9FAFB;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Question */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    font-size: 1rem;
    color: #10B981;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 22px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.7;
    padding-bottom: 18px;
}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .trust-badges {
        padding: 50px 0;
    }

    .faq {
        padding: 80px 0;
    }
}

/* ===============================
   Contact Section
================================ */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Info */
.contact-info .section-tag {
    margin-bottom: 12px;
}

.contact-info .section-title {
    margin-bottom: 15px;
}

.contact-text {
    font-size: 1rem;
    color: #4B5563;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    font-size: 1.1rem;
}

.contact-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-content p,
.contact-content a {
    font-size: 0.95rem;
    color: #6B7280;
    text-decoration: none;
}

.contact-content a:hover {
    color: #10B981;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #10B981;
    color: #fff;
    transform: translateY(-4px);
}

/* ===============================
   Contact Form
================================ */
.contact-form-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #D1D5DB;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

/* Submit */
.btn-block {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    margin-top: 20px;
    color: #059669;
}

.form-success i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   Footer
================================ */
.footer {
    background: #0F172A;
    color: #CBD5E1;
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 420px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E1;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #10B981;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #F8FAFC;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-column a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #10B981;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-list i {
    color: #10B981;
    margin-top: 4px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-legal a {
    margin-left: 15px;
    color: #CBD5E1;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #10B981;
}

/* ===============================
   Modal Base
================================ */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
}

.modal-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    animation: modalFade 0.4s ease;
}

.modal-sm {
    max-width: 420px;
}

@keyframes modalFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    padding: 20px 25px;
    background: #F9FAFB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
}

.modal-body {
    padding: 25px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Policy Content */
.policy-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.policy-content p,
.policy-content li {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
}

.policy-updated {
    font-size: 0.85rem;
    color: #6B7280;
}

/* ===============================
   Newsletter
================================ */
.newsletter-content {
    text-align: center;
}

.newsletter-icon {
    font-size: 2.5rem;
    color: #10B981;
    margin-bottom: 15px;
}

.newsletter-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.newsletter-success {
    display: none;
    text-align: center;
}

.newsletter-success i {
    font-size: 3rem;
    color: #10B981;
}

/* ===============================
   Back To Top
================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #10B981;
    border: none;
    border-radius: 50%;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.back-to-top.show {
    display: flex;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
}

