:root {
    --primary: #073E64;
    --secondary: #ECEFF1;
    --background: #F8FCFF;
    --notification: #1b5882;
    --primary-text: #000000;
    --secondary-text: #64748B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--primary-text);
    overflow-x: hidden;
}

/* ===== NAVBAR STYLES ===== */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo-img {
    height: 90px;
    object-fit: contain;
    width: auto;
}

.navbar-nav .nav-link {
    text-decoration: none;
    color: var(--primary-text);
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 16px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(61, 89, 108, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4456 50%, #1f3340 100%);
    color: white;
    padding: 150px 40px 200px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero .container-fluid {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    max-width: 600px;
}

.hero-logo-container img {
    max-width: 100%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    line-height: 1.7;
}

/* ===== CTA BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-primary {
    background: white;
    color: #0f2027;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: #0f2027;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.cta-white {
    background: white;
    color: var(--notification);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: var(--notification);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--background);
    padding: 80px 40px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.stats-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 60px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--secondary-text);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===== SECTIONS COMMON ===== */
.features-section,
.workflow-section,
.roles-section,
.benefits-section,
.testimonial-section {
    padding: 120px 0;
}

.features-section .container-fluid,
.workflow-section .container-fluid,
.roles-section .container-fluid,
.benefits-section .container-fluid,
.testimonial-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-text);
    max-width: 700px;
    line-height: 1.7;
    font-weight: 400;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 16px;
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 600;
}

.feature-card p {
    color: var(--secondary-text);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
}

/* ===== WORKFLOW SECTION ===== */
.workflow-section {
    background: var(--background);
}

.workflow-timeline {
    position: relative;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
}

.workflow-step {
    position: relative;
    padding-left: 90px;
    margin-bottom: 60px;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.workflow-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(61, 89, 108, 0.3);
}

.workflow-content {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.workflow-content h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.workflow-content p {
    color: var(--secondary-text);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* ===== ROLES SECTION ===== */
.roles-section {
    background: white;
}

.role-card {
    background: var(--primary);
    color: white;
    padding: 35px 25px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(61, 89, 108, 0.3);
    position: relative;
    overflow: hidden;
}

.role-card i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.role-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transition: transform 0.6s;
}

.role-card:hover::before {
    transform: translate(-25%, -25%);
}

.role-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(61, 89, 108, 0.4);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
}

.benefits-section .container-fluid {
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background: var(--background);
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-text);
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 400;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--primary-text);
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 1rem;
}

.author-info p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* ===== CTA FINAL SECTION ===== */
.cta-final {
    background: var(--notification);
    color: white;
    text-align: center;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-final-content {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

/* ===== FOOTER ===== */
footer {
    background: #fff;
    color: #073e64;
    padding: 80px 0 0px;
}

footer .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.logo-footer {
    height: 100px;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
}

.footer-col h4 {
    font-size: 25px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col p {
    color: #000;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: white;
}

/* .footer-bottom {
    border-top: 1px solid rgb(0 0 0 / 10%);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.footer-bottom ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.footer-bottom ul li a {
    list-style: none;
    padding: 0;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: opacity 0.3s;
}
.footer-bottom{
    background: #1b5882;
}
.footer-policy li a {
    color: #fff !important;
}

/* ===== ABOUT & CONTACT PAGES ===== */

/* About Hero */
.about-hero,
.contact-hero {
    margin-top: 106px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4456 50%, #1f3340 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.about-hero .container,
.contact-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero .hero-title,
.contact-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero .hero-subtitle,
.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Section Text */
.section-text {
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* About Image */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Stats */
.mission-stat {
    background: var(--secondary);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
}

.mission-stat i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.mission-stat h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.mission-stat p {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    background: var(--background);
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--secondary-text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    background: white;
}

.team-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--secondary);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
}

/* Timeline Section */
.timeline-section {
    background: var(--background);
}

.timeline-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.timeline-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 10px;
}

.timeline-card p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
    background: var(--notification);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn.cta-primary {
    background: white;
    color: var(--notification);
}

.cta-btn.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Option Cards */
.contact-option-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
    height: 100%;
}

.contact-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-option-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-option-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.contact-option-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 15px;
}

.contact-option-card p {
    color: var(--secondary-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-option-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.contact-option-link:hover {
    color: var(--notification);
    gap: 12px;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--secondary-text);
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(7, 62, 100, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

/* Contact Info */
.contact-info-wrapper {
    background: var(--secondary);
    padding: 50px;
    border-radius: 20px;
    height: 100%;
}

.contact-info-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 10px;
}

.info-subtitle {
    color: var(--secondary-text);
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-info-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.social-links {
    margin-top: 40px;
}

.social-links h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--notification);
    color: white;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    background: var(--background);
}

.accordion-item {
    background: white;
    border: none;
    border-radius: 12px !important;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-text);
    padding: 20px 25px;
    background: white;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 0 25px 20px;
    color: var(--secondary-text);
    line-height: 1.8;
}

/* ===== LEGAL PAGES (Privacy & Terms) ===== */
.legal-hero {
    margin-top: 106px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4456 50%, #1f3340 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.legal-hero .container {
    position: relative;
    z-index: 1;
}

.legal-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.legal-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.legal-update {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.legal-content {
    background: var(--background);
}

.legal-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #f0f0f0;
}

.legal-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.legal-section p {
    color: var(--secondary-text);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--secondary-text);
    line-height: 1.7;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.legal-list li strong {
    color: var(--primary-text);
}

.legal-contact {
    background: var(--secondary);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.legal-contact p {
    margin-bottom: 10px;
    color: var(--primary-text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

.legal-contact i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.legal-cta {
    background: var(--secondary);
    padding: 80px 0;
}

.legal-cta h3 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.legal-cta p {
    color: var(--secondary-text);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.sec-thanks {
    min-height: 100vh;
    align-content: center;
}
.sec-thanks .desc {
    text-align: center;
}
.sec-thanks .desc .logo {
    height: 100px;
    object-fit: contain;
    object-position: center;
    margin: 0 0 20px 0;
}
.sec-thanks .desc h1 {
    text-transform: capitalize;
    font-size: clamp(24px,8vw,70px);
    color: var(--theme);
    margin: 0 0 20px 0;
}
.sec-thanks .desc h6 {
    text-transform: capitalize;
    font-size: clamp(16px,2vw,40px);
    margin: 0 0 20px 0;
}

.iti--allow-dropdown {
    width: 100%;
}
label.error {
    color: red;
    font-size: 12px;
    font-weight: 500;
}
.desc a{
    background: var(--primary) !important;
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 8px;
}
.store-img img {
    width: 100%;
    margin-bottom: 10px;
}

/* Legal Pages Responsive */



/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero {
        margin-top: 80px;
        padding: 80px 20px 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .stats-section {
        padding: 40px 15px;
    }
    
    .stats-container {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .feature-card,
    .benefit-card,
    .testimonial-card {
        padding: 25px;
    }
    
    .workflow-timeline::before {
        left: 15px;
    }
    
    .workflow-step {
        padding-left: 60px;
        margin-bottom: 40px;
    }
    
    .workflow-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .workflow-content {
        padding: 20px;
    }
    
    .workflow-content h4 {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .cta-final {
        padding: 80px 20px;
    }
    
    .cta-final h2 {
        font-size: 2rem;
    }
    
    .cta-final p {
        font-size: 1.1rem;
    }
    
    footer {
        padding: 60px 0 30px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero {
        margin-top: 90px;
        padding: 100px 30px 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .stats-container {
        padding: 40px;
    }
    
    .workflow-timeline::before {
        left: 20px;
    }
    
    .workflow-step {
        padding-left: 70px;
    }
    
    .workflow-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero {
        margin-top: 100px;
        padding: 120px 40px 100px;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .logo-img {
        height: 70px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .logo-img {
        height: 80px;
    }
    .hero p {
    font-size: 14px;
    line-height: 1.8;
}
.cta-primary {
    font-size: 16px;
    padding: 20px;
}
.cta-secondary {
    font-size: 16px;
    padding: 20px;
}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .hero h1 {
        font-size: 45px;
    }
    .hero p {
    font-size: 16px;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
}

/* XXL devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Responsive for About/Contact Pages */
@media (max-width: 575.98px) {
    .about-hero,
    .contact-hero {
        margin-top: 70px;
        padding: 60px 0 50px;
    }
    
    .about-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero .hero-subtitle,
    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .value-card,
    .team-card,
    .timeline-card,
    .contact-option-card {
        padding: 25px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }
    
    .mission-stat {
        padding: 20px 15px;
    }
    
    .mission-stat h4 {
        font-size: 1.5rem;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .about-hero,
    .contact-hero {
        margin-top: 80px;
        padding: 70px 0 60px;
    }
    
    .about-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .about-hero,
    .contact-hero {
        margin-top: 90px;
        padding: 80px 0 70px;
    }
    
    .about-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 2.25rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .about-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 90px 0;
    }
}

@media (min-width: 1200px) {
    .about-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 575.98px) {
    .legal-hero {
        margin-top: 70px;
        padding: 60px 0 50px;
    }
    
    .legal-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .legal-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .legal-section {
        padding: 25px;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .legal-cta {
        padding: 60px 0;
    }
    
    .legal-cta h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .legal-hero {
        margin-top: 80px;
        padding: 70px 0 60px;
    }
    
    .legal-hero .hero-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .legal-hero {
        margin-top: 90px;
        padding: 80px 0 70px;
    }
    
    .legal-hero .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .legal-hero .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .legal-hero .hero-title {
        font-size: 3rem;
    }
}