/* ============================================
   CSS VARIABLES & BASE STYLES
   ============================================ */
:root {
    --color-primary: #1E1B4B;    /* Dark Blue */
    --color-secondary: #5EEAD4;  /* Mint */
    --color-accent: #A78BFA;     /* Purple */
    --color-light: #CCFBF1;      /* Light Mint */
    --color-white: #ffffff;
    --color-gray: #6B7280;
    --whatsapp-green: #25D366;
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    color: var(--color-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary, .btn-main, .submit-btn {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover, .btn-main:hover, .submit-btn:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 27, 75, 0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Free Assessment Button - Image 4 Style */
.btn-assessment {
    display: inline-block;
    background: #1E1B4B;
    color: #A78BFA !important;
    padding: 12px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-assessment:hover {
    background: #2D2A5C;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 27, 75, 0.3);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-badge {
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.desktop-nav a {
    color: #4B5563;
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--color-primary);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4B5563;
}

.dropdown li a:hover {
    background: #F3F4F6;
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background: var(--color-primary);
    padding: 1rem;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav a {
    display: block;
    color: white;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a.active {
    color: var(--color-secondary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tagline {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stats-bar {
    display: flex;
    gap: 2rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
}

.image-wrapper {
    position: relative;
}

.main-image {
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-content i {
    color: #10B981;
    font-size: 1.5rem;
}

.card-content strong {
    display: block;
    color: var(--color-primary);
    font-size: 0.875rem;
}

.card-content span {
    font-size: 0.75rem;
    color: var(--color-gray);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #FCD34D;
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #5EEAD4;
    bottom: -50px;
    left: -50px;
}

/* ============================================
   WHY MALAYSIA SECTION
   ============================================ */
.why-malaysia {
    padding: 5rem 0;
    background: var(--color-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-gray);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-light);
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 27, 75, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--color-gray);
}

/* ============================================
   VISA PROCESS SECTION
   ============================================ */
.visa-process {
    padding: 5rem 0;
    background: var(--color-primary);
    color: white;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.text-mint {
    color: var(--color-secondary);
}

.process-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-info h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.alert-box {
    margin-top: 3rem;
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-secondary);
}

.alert-box p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.document-mockup {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.doc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.doc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.doc-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.9);
}

.doc-list i {
    color: var(--color-secondary);
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.support {
    padding: 5rem 0;
    background: var(--color-light);
}

.tag {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.support-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
    text-align: center;
}

.support-item:hover {
    box-shadow: 0 20px 40px rgba(30, 27, 75, 0.1);
    transform: translateY(-5px);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--color-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.support-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.support-item p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background-color: #5EEAD4;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-title {
    text-align: center;
    color: #1E1B4B;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.testimonial-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    margin-bottom: 30px;
    opacity: 0.9;
}

.chat-bubble {
    width: 80px;
    height: 80px;
}

.testimonial-text p {
    color: #1E1B4B;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial-author strong {
    display: block;
    color: #1E1B4B;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #1E1B4B;
    font-size: 1rem;
    opacity: 0.8;
}

.testimonial-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.squiggle-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.squiggle {
    position: absolute;
    top: 50%;
    left: -20%;
    width: 140%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.squiggle-2 {
    position: absolute;
    top: 30%;
    right: -10%;
    width: 120%;
    height: 80%;
    z-index: 1;
    pointer-events: none;
}

.testimonial-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(30, 27, 75, 0.15);
    background: white;
    padding: 10px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(30, 27, 75, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: #1E1B4B;
    width: 40px;
    border-radius: 6px;
}

.dot:hover {
    background: #1E1B4B;
    transform: scale(1.2);
}

/* ============================================
   CONTENT HUB - Read | Watch | Listen
   ============================================ */
.content-hub {
    width: 100%;
    display: flex;
    overflow: hidden;
}

.hub-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    min-height: 400px;
}

.hub-column {
    padding: 60px 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hub-read {
    background-color: #F9C6D8; /* Soft pink */
}

.hub-watch {
    background-color: #60E0F7; /* Cyan */
}

.hub-listen {
    background-color: #FDE68A; /* Soft yellow */
}

.hub-content {
    position: relative;
    z-index: 2;
    max-width: 350px;
}

.hub-vertical-text {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    text-transform: lowercase;
    pointer-events: none;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.hub-desc {
    color: #1E1B4B;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
    padding-right: 60px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 5rem 0;
    background: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--color-secondary);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(30, 27, 75, 0.15);
}

.contact-info {
    background: var(--color-primary);
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    color: var(--color-secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.office-locations {
    margin-bottom: 2rem;
}

.office {
    margin-bottom: 1.5rem;
}

.office h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office i {
    color: var(--color-secondary);
}

.office address {
    font-style: normal;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.phone-link {
    color: var(--color-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    padding: 4rem;
    background: var(--color-secondary);
}

.contact-form {
    max-width: 100%;
}

.form-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--color-primary);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.75rem;
    background: white;
    font-family: var(--font-main);
    color: var(--color-primary);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(30, 27, 75, 0.6);
    margin-top: 1rem;
}

/* ============================================
   FLOATING ACTION BUTTONS (WhatsApp + Scroll)
   ============================================ */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    align-items: center;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Icon Centering Fix - Applies to ALL icons inside .fab */
.fab i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-style: normal;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
}

/* Scroll to Top Button */
.fab.scroll-top {
    background: white;
    color: #1E1B4B;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    font-size: 1.2rem;
}

.fab.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.fab.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* WhatsApp Button */
.fab.whatsapp-modern {
    background: #25D366;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.fab.whatsapp-modern:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Pulse Animation Ring */
.fab.whatsapp-modern::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================
   FOOTER SOCIAL ICONS (FIXED CENTERING)
   ============================================ */
.footer-social-modern {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Flexbox for the container */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* THE FIX: Center icons inside footer social circles */
.social-circle i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 1rem;
    font-style: normal;
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free";
    font-weight: 400;
}

.social-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(94, 234, 212, 0.3);
    background: #5EEAD4;
    color: #1E1B4B;
    border-color: #5EEAD4;
}

/* ============================================
   FOOTER LAYOUT (Rest of your footer styles)
   ============================================ */
.main-footer {
    background: #1E1B4B;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.footer-badge {
    background: #5EEAD4;
    color: #1E1B4B;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: #5EEAD4;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #5EEAD4;
    margin-top: 8px;
    opacity: 0.6;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.footer-links-list a:hover {
    color: #5EEAD4;
    transform: translateX(5px);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    gap: 10px;
}

.contact-list i {
    color: #5EEAD4;
    margin-top: 3px;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-line-main {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-line-main a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 10px;
}

.footer-line-main a:hover {
    color: #5EEAD4;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social-modern {
        justify-content: center;
    }
    
    .footer-col h4::after {
        margin: 8px auto 0;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .fab {
        width: 50px;
        height: 50px;
    }
    
    .fab.whatsapp-modern {
        font-size: 1.5rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   FOOTER - FIXED LAYOUT
   ============================================ */
.main-footer {
    background: #1E1B4B;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Brand Column */
.footer-brand {
    max-width: 300px;
}

.footer-logo-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.footer-badge {
    background: #5EEAD4;
    color: #1E1B4B;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Social Icons */
.footer-social-modern {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(94, 234, 212, 0.3);
    background: #5EEAD4;
    color: #1E1B4B;
    border-color: #5EEAD4;
}

/* Footer Columns */
.footer-col h4 {
    color: #5EEAD4;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #5EEAD4;
    margin-top: 8px;
    opacity: 0.6;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #5EEAD4;
    transform: translateX(5px);
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-list i {
    color: #5EEAD4;
    margin-top: 3px;
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-line-main {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-line-main a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 10px;
}

.footer-line-main a:hover {
    color: #5EEAD4;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.4);
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 5px;
}

/* CHAT WIDGET - Image 8 Style */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: transform 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-button::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social-modern {
        justify-content: center;
    }
    
    .footer-col h4::after {
        margin: 8px auto 0;
    }
    
    .footer-links-list a:hover {
        transform: none;
    }
    
    .contact-list li {
        justify-content: center;
        text-align: left;
    }
    
    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid,
    .process-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-bar {
        justify-content: center;
    }
    
    .testimonial-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .squiggle,
    .squiggle-2 {
        display: none;
    }
    
    .hub-container {
        grid-template-columns: 1fr;
    }
    
    .hub-column {
        padding: 40px 30px;
        min-height: 300px;
    }
    
    .hub-vertical-text {
        font-size: 4rem;
        right: 10px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social-modern {
        justify-content: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-list li {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-main, .btn-outline, .btn-assessment {
        width: 100%;
        justify-content: center;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .fab.whatsapp-modern {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
/* ============================================
   CHAT WIDGET (Main WhatsApp Button)
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

/* Center icon perfectly */
.chat-button i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Pulse ring animation */
.chat-button::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

/* ============================================
   FLOATING ACTION BUTTONS (Scroll + WhatsApp)
   ============================================ */
.floating-actions {
    position: fixed;
    bottom: 100px; /* Positioned above the chat widget */
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    align-items: center;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Icon centering fix for all FAB icons */
.fab i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 1.2rem;
}

/* Scroll to Top Button */
.fab.scroll-top {
    background: white;
    color: #1E1B4B;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    font-size: 1.1rem;
}

/* Visible state when scrolled */
.fab.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab.scroll-top:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Button in FAB group */
.fab.whatsapp {
    background: #25D366;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.fab.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.fab.whatsapp i {
    font-size: 1.4rem;
}

/* Animation */
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 90px;
        right: 15px;
        gap: 10px;
    }
    
    .fab {
        width: 45px;
        height: 45px;
    }
    
    .fab i {
        font-size: 1rem;
    }
    
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}
