* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Update the logo styles to handle the image */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: #0a2540;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(15%) sepia(89%) saturate(1740%) hue-rotate(205deg) brightness(95%) contrast(101%);
    transition: all 0.3s ease;
}

/* Header transparent state - white logo */
.full-width-header:not(.scrolled) .logo {
    color: #ffffff;
}

.full-width-header:not(.scrolled) .logo img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Header scrolled state - dark logo */
.full-width-header.scrolled .logo {
    color: #0a2540;
}

.full-width-header.scrolled .logo img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(89%) saturate(1740%) hue-rotate(205deg) brightness(95%) contrast(101%);
}

/* Logo hover effect */
.logo:hover img {
    transform: scale(1.08) rotate(-3deg);
}

.logo:hover {
    color: #0a2540;
}

/* Hero overlay - logo remains white */
.hero-content-overlay .logo,
.hero-content-overlay .logo img {
    /* These are already handled by the header state */
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
        gap: 0.4rem;
    }
    
    .logo img {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 1rem;
        gap: 0.3rem;
    }
    
    .logo img {
        width: 22px;
        height: 22px;
    }
}

/* ----- FOOTER LOGO STYLES ----- */
.footer-col .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-col .footer-brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(15%) sepia(89%) saturate(1740%) hue-rotate(205deg) brightness(95%) contrast(101%);
    transition: transform 0.3s ease;
}

.footer-col .footer-brand:hover img {
    transform: scale(1.08) rotate(-3deg);
}

.footer-col .footer-brand .brand-text {
    font-weight: 700;
    font-size: 1.4rem;
    color: #0a2540;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.footer-col .footer-brand:hover .brand-text {
    color: #2a7de1;
}

/* Alternative: With subtle background like FA icon style */
.footer-col .footer-brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    padding: 4px;
    background: rgba(42, 125, 225, 0.08);
    filter: brightness(0) saturate(100%) invert(15%) sepia(89%) saturate(1740%) hue-rotate(205deg) brightness(95%) contrast(101%);
    transition: all 0.3s ease;
}

.footer-col .footer-brand:hover img {
    transform: scale(1.08) rotate(-3deg);
    background: rgba(42, 125, 225, 0.15);
    box-shadow: 0 4px 12px rgba(42, 125, 225, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-col .footer-brand img {
        width: 30px;
        height: 30px;
    }
    
    .footer-col .footer-brand .brand-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer-col .footer-brand img {
        width: 28px;
        height: 28px;
        padding: 3px;
    }
    
    .footer-col .footer-brand .brand-text {
        font-size: 1.1rem;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: #fafcff;
    color: #0a1a2f;
    line-height: 1.5;
    width: 100%;
    overflow-x: hidden;
    padding-top: 0;
}

.full-width-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: 72px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.full-width-header.scrolled {
    position: fixed;
    background: rgba(250, 252, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 40, 80, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Header text colors - transparent state */
.full-width-header:not(.scrolled) .logo {
    color: #ffffff;
}

.full-width-header:not(.scrolled) .logo i {
    color: #ffffff;
}

.full-width-header:not(.scrolled) .nav-actions .login-link {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
}

.full-width-header:not(.scrolled) .nav-actions .login-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.full-width-header:not(.scrolled) .nav-actions .signup-link {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.full-width-header:not(.scrolled) .nav-actions .signup-link:hover {
    background: #ffffff;
    color: #0a2540;
    border-color: #ffffff;
    transform: scale(1.02);
}

/* Header text colors - scrolled state */
.full-width-header.scrolled .logo {
    color: #0a2540;
}

.full-width-header.scrolled .logo i {
    color: #2a7de1;
}

.full-width-header.scrolled .nav-actions .login-link {
    color: #1a4b7a;
    border-color: #dce5ef;
}

.full-width-header.scrolled .nav-actions .login-link:hover {
    background: #eef4fa;
    border-color: #b0c8dd;
    color: #1a4b7a;
}

.full-width-header.scrolled .nav-actions .signup-link {
    background: #0a2540;
    color: white;
    border: 1px solid #0a2540;
}

.full-width-header.scrolled .nav-actions .signup-link:hover {
    background: #1a3b5e;
    border-color: #1a3b5e;
    transform: scale(1.02);
    color: white;
}

.full-width-footer {
    width: 100%;
    background: #fafcff;
    border-top: 1px solid #dbe5f0;
    padding: 3rem 0 2rem 0;
}

/* ----- FULL-WIDTH DIVIDERS (HR) ----- */
hr.full-width-hr {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border: 0;
    border-top: 1px solid #e6eff8;
    opacity: 1;
}

/* ----- MAIN CONTENT CONTAINER (centered) ----- */
.container-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 600px) {
    .container-main {
        padding: 0 1.2rem;
    }
}

/* ----- NAVIGATION (inside full-width) ----- */
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 0 1rem;
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 0 0.8rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.3rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: #0a2540;
    text-decoration: none;
    flex-shrink: 0;
}

.logo i {
    color: #2a7de1;
    font-size: 1.6rem;
}

.logo:hover {
    color: #0a2540;
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }
    .logo i {
        font-size: 1.3rem;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.nav-actions a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    border-radius: 40px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .nav-actions a {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
}

@media (max-width: 360px) {
    .nav-actions a {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    .nav-actions {
        gap: 0.3rem;
    }
}

.nav-actions .login-link {
    color: #1a4b7a;
    background: transparent;
    border: 1px solid #dce5ef;
}

.nav-actions .login-link:hover {
    background: #eef4fa;
    border-color: #b0c8dd;
    color: #1a4b7a;
}

.nav-actions .signup-link {
    background: #0a2540;
    color: white;
    border: 1px solid #0a2540;
}

.nav-actions .signup-link:hover {
    background: #1a3b5e;
    border-color: #1a3b5e;
    transform: scale(1.02);
    color: white;
}

/* ============================================
   FULL-WIDTH HERO WITH BACKGROUND IMAGE
   ============================================ */
.hero-full-width {
    position: relative;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    background: #0a1a2f;
    overflow: hidden;
}

.hero-full-width .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-full-width::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.88) 0%, rgba(10, 26, 47, 0.5) 50%, rgba(10, 26, 47, 0.3) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 36px;
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 1.5rem;
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
        margin-top: 30px;
    }
}

@media (max-height: 600px) {
    .hero-container {
        margin-top: 20px;
    }
}

.hero-content-overlay {
    max-width: 680px;
    color: white;
    text-align: left;
}

@media (max-width: 768px) {
    .hero-content-overlay {
        max-width: 100%;
    }
}

.hero-content-overlay .badge {
    display: inline-block;
    background: rgba(212, 226, 252, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    letter-spacing: 0.3px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 480px) {
    .hero-content-overlay .badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-content-overlay .badge {
        margin-bottom: 0.8rem;
    }
}

.hero-content-overlay h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: white;
    text-align: left;
}

@media (max-width: 768px) {
    .hero-content-overlay h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

@media (max-width: 480px) {
    .hero-content-overlay h1 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 360px) {
    .hero-content-overlay h1 {
        font-size: 1.5rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-content-overlay h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
}

.hero-content-overlay h1 span {
    color: #5b9cf5;
    background: linear-gradient(145deg, #5b9cf5, #8bb8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content-overlay p {
    font-size: clamp(0.95rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin-bottom: 1.8rem;
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 768px) {
    .hero-content-overlay p {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content-overlay p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-content-overlay p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

.hero-content-overlay .cta-group {
    justify-content: flex-start;
}

@media (max-width: 480px) {
    .hero-content-overlay .cta-group {
        flex-direction: column;
        width: 100%;
    }
    .hero-content-overlay .cta-group .btn-primary-custom,
    .hero-content-overlay .cta-group .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }
}

.hero-content-overlay .btn-primary-custom {
    background: white;
    color: #0a2540;
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.3);
}

.hero-content-overlay .btn-primary-custom:hover {
    background: #eef4fc;
    transform: translateY(-3px);
    color: #0a2540;
}

.hero-content-overlay .btn-outline-custom {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.hero-content-overlay .btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
}

.hero-content-overlay .hero-badges {
    color: rgba(255, 255, 255, 0.9);
    justify-content: flex-start;
}

.hero-content-overlay .hero-badges i {
    color: #5b9cf5;
}

@media (max-width: 480px) {
    .hero-content-overlay .hero-badges {
        font-size: 0.85rem;
        gap: 0.8rem !important;
    }
    .hero-content-overlay .hero-badges div {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-content-overlay .hero-badges {
        margin-top: 0.5rem !important;
        gap: 0.5rem !important;
    }
}

/* ----- Floating Stats ----- */
.hero-full-width .floating-stats {
    position: absolute;
    right: 2.5rem;
    bottom: 2.5rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 1.2rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    display: flex;
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .hero-full-width .floating-stats {
        right: 1.5rem;
        bottom: 1.5rem;
        padding: 0.8rem 1.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-full-width .floating-stats {
        right: 1rem;
        bottom: 1rem;
        padding: 0.6rem 1rem;
        gap: 0.8rem;
        border-radius: 12px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-full-width .floating-stats {
        padding: 0.4rem 1rem;
        gap: 0.8rem;
    }
}

.hero-full-width .floating-stats .stat-item {
    text-align: center;
}

.hero-full-width .floating-stats .stat-item .number {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    background: linear-gradient(145deg, #ffffff, #b0c8dd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .hero-full-width .floating-stats .stat-item .number {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-full-width .floating-stats .stat-item .number {
        font-size: 1rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-full-width .floating-stats .stat-item .number {
        font-size: 1rem;
    }
}

.hero-full-width .floating-stats .stat-item .label {
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .hero-full-width .floating-stats .stat-item .label {
        font-size: 0.55rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-full-width .floating-stats .stat-item .label {
        font-size: 0.5rem;
    }
}

/* ----- BUTTONS ----- */
.btn-primary-custom {
    background: #0a2540;
    color: white;
    border: none;
    padding: 0.9rem 2.6rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 12px 18px -8px rgba(10, 37, 64, 0.15);
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: #1a3b5e;
    transform: translateY(-3px);
    box-shadow: 0 20px 24px -10px rgba(10, 37, 64, 0.25);
    color: white;
}

@media (max-width: 480px) {
    .btn-primary-custom {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
}

.btn-outline-custom {
    background: transparent;
    border: 1.5px solid #c8d8e9;
    color: #1a4b7a;
    padding: 0.8rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: #e5eefa;
    border-color: #8fb0d3;
    transform: translateY(-2px);
    color: #1a4b7a;
}

@media (max-width: 480px) {
    .btn-outline-custom {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* ----- FEATURES SECTION ----- */
.features-section {
    padding: 3rem 0 4rem 0;
}

.feature-card {
    background: white;
    border-radius: 28px;
    padding: 2rem 1.8rem;
    border: 1px solid #e6eff8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 20, 40, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -16px rgba(10, 37, 64, 0.12);
    border-color: #c8ddf5;
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e3edfc, #d4e2fc);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #2a7de1;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #2a7de1, #1f6bc9);
    color: white;
    transform: scale(1.05);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1f35;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: #4a6b89;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.3rem 0;
    color: #2f4b6b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.feature-list li i {
    color: #2a7de1;
    width: 1.2rem;
    font-size: 0.85rem;
}

/* ----- FEATURE ITEMS (simple strip) ----- */
.feature-item i {
    font-size: 1.8rem;
    color: #2a7de1;
    background: #e3edfc;
    padding: 0.5rem;
    border-radius: 20px;
    width: 3.2rem;
    text-align: center;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    color: #143452;
}

.feature-item small {
    display: block;
    color: #547393;
    font-weight: 400;
    font-size: 0.85rem;
}

/* ============================================
   CONTACT US SECTION (NEW)
   ============================================ */
.contact-section {
    padding: 2rem 0 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e6eff8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 20, 40, 0.04);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -12px rgba(10, 37, 64, 0.12);
    border-color: #c8ddf5;
}

.contact-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3edfc, #d4e2fc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #2a7de1;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-circle {
    background: linear-gradient(135deg, #2a7de1, #1f6bc9);
    color: white;
    transform: scale(1.05);
}

.contact-icon-circle.whatsapp {
    background: linear-gradient(135deg, #e0f7e9, #c8f0d9);
    color: #25D366;
}

.contact-card:hover .contact-icon-circle.whatsapp {
    background: linear-gradient(135deg, #25D366, #1da85a);
    color: white;
}

.contact-card h5 {
    font-weight: 600;
    font-size: 1rem;
    color: #0a1f35;
    margin-bottom: 0.4rem;
}

.contact-link {
    display: inline-block;
    font-weight: 600;
    font-size: 1.05rem;
    color: #2a7de1;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 0.2rem;
}

.contact-link:hover {
    color: #1a5bb5;
    text-decoration: underline;
}

.contact-address {
    font-style: normal;
    font-size: 0.95rem;
    color: #1a3b5e;
    line-height: 1.5;
    margin-bottom: 0.2rem;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: #6a8aaa;
    margin-top: 0.2rem;
}

/* Contact social row */
.contact-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1rem;
    flex-wrap: wrap;
}

.follow-text {
    font-weight: 500;
    color: #1a3b5e;
    font-size: 0.95rem;
}

.follow-text i {
    color: #2a7de1;
    margin-right: 0.4rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef4fa;
    color: #1a4b7a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: #2a7de1;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px -6px rgba(42, 125, 225, 0.35);
}

/* ----- FEEDBACK SECTION ----- */
.feedback-section {
    background: #f0f6fe;
    border-radius: 48px;
    padding: 3rem 2.5rem;
    margin: 2rem 0 2.5rem 0;
    border: 1px solid #d8e6f7;
}

.feedback-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0a1f35;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feedback-section h2 i {
    color: #2a7de1;
}

.feedback-card {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 28px;
    box-shadow: 0 8px 16px -10px rgba(0, 20, 40, 0.08);
    border: 1px solid #e6eefa;
    transition: all 0.2s ease;
    height: 100%;
}

.feedback-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 28px -14px rgba(10, 37, 64, 0.12);
}

.feedback-card .stars {
    color: #fbbf24;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.feedback-card p {
    font-size: 0.98rem;
    color: #1f3d5a;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.feedback-card .author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.feedback-card .author .avatar {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1a4b7a;
    background: #d4e2fc;
    flex-shrink: 0;
}

.feedback-card .author .name {
    font-weight: 600;
    color: #0a1f35;
}

.feedback-card .author .role {
    font-size: 0.8rem;
    color: #547393;
}

/* ----- FEEDBACK FORM ----- */
.feedback-form-wrapper {
    margin-top: 2.8rem;
    background: white;
    border-radius: 32px;
    padding: 2rem 2.2rem;
    border: 1px solid #dde8f5;
    box-shadow: 0 6px 14px rgba(0, 20, 40, 0.04);
}

.feedback-form-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1f35;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.feedback-form-wrapper h3 i {
    color: #2a7de1;
}

.feedback-form-wrapper .sub {
    color: #4a6b89;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.85rem;
    color: #143452;
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 40px;
    border: 1.5px solid #dce5ef;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: white;
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2a7de1;
    box-shadow: 0 0 0 4px rgba(42, 125, 225, 0.08);
}

.form-group textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 90px;
}

.btn-submit {
    background: #0a2540;
    color: white;
    border: none;
    padding: 0.8rem 2.8rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-submit:hover {
    background: #1a3b5e;
    transform: translateY(-2px);
    box-shadow: 0 12px 18px -8px rgba(10, 37, 64, 0.2);
    color: white;
}

/* ----- BETA CTA ----- */
.beta-cta {
    background: #0a1f35;
    border-radius: 48px;
    padding: 3rem 3.5rem;
    margin: 2rem 0 4rem 0;
    background-image: radial-gradient(circle at 10% 20%, #1d3d60, #091c2e);
    color: white;
    border: 1px solid #395b7a;
}

.beta-cta h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.beta-cta p {
    opacity: 0.8;
    margin-top: 0.3rem;
    font-size: 1.05rem;
}

.beta-cta .btn-primary-custom {
    background: white;
    color: #0a2540;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.beta-cta .btn-primary-custom i {
    color: #0a2540;
}

.beta-cta .btn-primary-custom:hover {
    background: #eef4fc;
    transform: scale(1.02);
    color: #0a2540;
}

.beta-cta .btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.beta-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* ============================================
   IMPROVED FOOTER - NO FLICKERING
   ============================================ */

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    width: 100%;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0a1f35;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

/* ----- FIX: Footer link hover without flickering ----- */
.footer-col ul li a {
    color: #4a6b89;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    cursor: pointer;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #2a7de1;
    transition: width 0.25s ease;
}

.footer-col ul li a:hover {
    color: #2a7de1;
    padding-left: 6px;
}

.footer-col ul li a:hover::before {
    width: 100%;
}

.footer-col p {
    color: #4a6b89;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* ----- FIX: Contact item hover without flickering ----- */
.footer-col .contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #4a6b89;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.footer-col .contact-item i {
    color: #2a7de1;
    width: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.footer-col .contact-item a {
    color: #4a6b89;
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-block;
    cursor: pointer;
}

.footer-col .contact-item a:hover {
    color: #2a7de1;
}

.footer-col .contact-item:hover i {
    transform: scale(1.15);
}

/* ----- FIX: Social icons without flickering ----- */
.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eef4fa;
    color: #1a4b7a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    will-change: transform, background, color;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
}

.footer-social a:hover {
    background: #2a7de1;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px -6px rgba(42, 125, 225, 0.35);
}

.footer-social a:active {
    transform: scale(0.95);
}

/* ----- FIX: Footer bottom links without flickering ----- */
.footer-bottom {
    border-top: 1px solid #e6eff8;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: #4a6b89;
    font-size: 0.85rem;
    width: 100%;
}

.footer-bottom a {
    color: #4a6b89;
    text-decoration: none;
    transition: color 0.25s ease;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: #2a7de1;
    transition: width 0.25s ease;
}

.footer-bottom a:hover {
    color: #2a7de1;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 1.5rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Tablets & smaller laptops */
@media (max-width: 992px) {
    .hero-full-width {
        min-height: 100vh;
        height: 100vh;
        max-height: 100vh;
    }

    .hero-content-overlay h1 {
        font-size: 3.2rem;
    }

    .hero-full-width .floating-stats {
        padding: 1.2rem 2rem;
        gap: 2rem;
    }
}

/* Mobile landscape & tablets */
@media (max-width: 768px) {
    .full-width-header {
        height: 64px;
    }

    .full-width-header .nav-inner {
        padding: 0 1rem;
    }

    .hero-full-width {
        min-height: 100vh;
        height: 100vh;
        max-height: 100vh;
    }

    .hero-content-overlay {
        max-width: 100%;
    }

    .hero-content-overlay h1 {
        font-size: 2.6rem;
    }

    .hero-content-overlay p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-full-width .floating-stats {
        right: 1.5rem;
        bottom: 1.5rem;
        padding: 0.8rem 1.5rem;
        gap: 1.5rem;
    }

    .hero-full-width .floating-stats .stat-item .number {
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom .legal-links {
        justify-content: center;
    }

    .beta-cta {
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .feedback-section {
        padding: 2rem 1.2rem;
    }

    .feedback-form-wrapper {
        padding: 1.5rem;
    }

    .features-section {
        padding: 2rem 0;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    /* Contact section responsive */
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .full-width-header {
        height: 60px;
    }

    .full-width-header .nav-inner {
        padding: 0 0.8rem;
    }

    .hero-full-width {
        min-height: 100vh;
        height: 100vh;
        max-height: 100vh;
    }

    .hero-content-overlay h1 {
        font-size: 2rem;
    }

    .hero-content-overlay p {
        font-size: 0.9rem;
    }

    .hero-content-overlay .badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-full-width .floating-stats {
        right: 1rem;
        bottom: 1rem;
        padding: 0.6rem 1rem;
        gap: 0.8rem;
        border-radius: 12px;
    }

    .hero-full-width .floating-stats .stat-item .number {
        font-size: 1rem;
    }

    .hero-full-width .floating-stats .stat-item .label {
        font-size: 0.55rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .cta-group .btn-primary-custom,
    .cta-group .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .beta-cta .action-buttons a {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        padding: 0 1rem;
    }

    .feedback-section {
        border-radius: 32px;
        padding: 1.5rem 1rem;
    }

    .feedback-form-wrapper {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .beta-cta {
        border-radius: 32px;
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-card .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .hero-content-overlay .hero-badges {
        font-size: 0.85rem;
        gap: 0.8rem !important;
    }

    .hero-content-overlay .hero-badges div {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    /* Contact section responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .contact-icon-circle {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .contact-social-row {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .hero-content-overlay h1 {
        font-size: 1.6rem;
    }

    .hero-content-overlay p {
        font-size: 0.8rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }

    .hero-full-width .floating-stats .stat-item .number {
        font-size: 0.85rem;
    }

    .hero-full-width .floating-stats .stat-item .label {
        font-size: 0.5rem;
    }

    .hero-full-width .floating-stats {
        padding: 0.4rem 0.8rem;
        gap: 0.6rem;
    }

    .nav-actions a {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .nav-actions {
        gap: 0.3rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo i {
        font-size: 1.2rem;
    }

    .contact-card h5 {
        font-size: 0.9rem;
    }

    .contact-link {
        font-size: 0.95rem;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-full-width {
        min-height: 100vh;
        height: auto;
        max-height: none;
        padding: 3rem 0;
    }

    .hero-content-overlay h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-content-overlay p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-content-overlay .badge {
        margin-bottom: 0.8rem;
    }

    .hero-content-overlay .hero-badges {
        margin-top: 0.5rem !important;
        gap: 0.5rem !important;
    }

    .hero-full-width .floating-stats {
        padding: 0.4rem 1rem;
        gap: 0.8rem;
    }

    .hero-full-width .floating-stats .stat-item .number {
        font-size: 1rem;
    }

    .hero-full-width .floating-stats .stat-item .label {
        font-size: 0.5rem;
    }

    .hero-container {
        padding: 0 1.5rem;
        margin-top: 16px;
    }
}

/* Tall screens (like mobile with notch) */
@media (min-height: 800px) and (max-width: 480px) {
    .hero-container {
        margin-top: 40px;
    }
}