/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0c3762;
    --primary-light: #286fb5;
    --secondary-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #f4f7f6;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Scrollbar width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Thumb (scroll handle) */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 0px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
}

.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(12, 55, 98, 0.3);
}

.btn-primary:hover {
    background-color: #07223d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 55, 98, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

/* Navigation */
html {
    scroll-padding-top: 120px;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1440px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 100px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 5px;
    background: rgba(12, 55, 98, 0.04);
    border: 1px solid rgba(12, 55, 98, 0.07);
    border-radius: 50px;
}

.nav-links li {
    position: relative;
}

.nav-links a,
.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 18px;
    border-radius: 50px;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    display: inline-block;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(12, 55, 98, 0.08);
    transform: translateY(-1px);
}

.nav-links a.active,
.nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 4px 14px rgba(12, 55, 98, 0.28);
    transform: translateY(0);
}

.nav-links a.active:hover,
.nav-link.active:hover {
    color: var(--white);
    background: linear-gradient(135deg, #0a2f52, var(--primary-light));
    box-shadow: 0 6px 18px rgba(12, 55, 98, 0.35);
}

.nav-container .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #07223d);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(12, 55, 98, 0.2);
    font-size: 0.95rem;
}

.nav-container .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 55, 98, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px; /* Offset for floating navbar */
    padding-bottom: 60px;
    background-color: #f8fbff;
    background-image: 
        linear-gradient(rgba(12, 55, 98, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 55, 98, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 150px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
    z-index: 0;
}

/* Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: floatShape 10s infinite alternate ease-in-out;
}
.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(12, 55, 98, 0.4);
    top: -100px;
    right: -100px;
}
.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(40, 111, 181, 0.3);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}
.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 158, 0.2);
    top: 30%;
    left: 40%;
    animation-delay: -2s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(12, 55, 98, 0.12);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(12, 55, 98, 0.06);
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1); }
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.08;
}

.hero-gradient-text {
    display: block;
    font-size: 1.05em;
    margin: 4px 0;
}

.hero-headline-line {
    display: block;
    font-size: 0.72em;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: -0.5px;
    margin-top: 8px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-alt {
    background: linear-gradient(135deg, #4da3ff, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(12, 55, 98, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-badge.badge-light {
    background: rgba(157, 78, 221, 0.15);
    color: #c482f9;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 95%;
    line-height: 1.75;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-tag {
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(12, 55, 98, 0.07);
    border: 1px solid rgba(12, 55, 98, 0.1);
    border-radius: 6px;
    transition: all 0.25s ease;
}

.hero-tag:hover {
    background: rgba(12, 55, 98, 0.12);
    border-color: rgba(12, 55, 98, 0.2);
    transform: translateY(-1px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.hero-buttons .btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(12, 55, 98, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(12, 55, 98, 0.06);
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.hero-trust-num {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
}

.hero-trust-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-trust-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(12, 55, 98, 0.15), transparent);
}

/* Trusted Logos */
.trusted-logos-container {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(12, 55, 98, 0.1);
}

.trusted-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 600;
}

.trusted-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 1;
}

.trusted-logo {
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.trusted-logo:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.1));
}

.btn-glow {
    box-shadow: 0 0 20px rgba(12, 55, 98, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.2);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}
.btn-glow:hover::after {
    opacity: 1;
    left: 100%;
}

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    color: var(--text-color);
    border: 2px solid #ddd;
}

.btn-outline:hover {
    border-color: var(--text-color);
    background: var(--text-color);
    color: #fff;
}

.hero-form-container {
    flex: 1;
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.hero-form-glow {
    position: absolute;
    inset: -20px -16px -24px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(40, 111, 181, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(157, 78, 221, 0.22) 0%, transparent 50%);
    filter: blur(28px);
    z-index: -1;
    pointer-events: none;
    animation: heroFormGlow 6s ease-in-out infinite alternate;
}

@keyframes heroFormGlow {
    0% { opacity: 0.75; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1.02); }
}

.hero-enquiry-form {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 0;
    box-shadow:
        0 24px 60px rgba(12, 55, 98, 0.14),
        0 8px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-enquiry-form:hover {
    transform: translateY(-4px);
    box-shadow:
        0 32px 70px rgba(12, 55, 98, 0.18),
        0 12px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-enquiry-form::before {
    display: none;
}

.hero-form-top-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 45%, #9d4edd 100%);
}

.hero-form-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 32px 8px;
}

.hero-form-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(12, 55, 98, 0.1), rgba(157, 78, 221, 0.12));
    border: 1px solid rgba(12, 55, 98, 0.1);
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(12, 55, 98, 0.08);
}

.hero-form-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.hero-form-heading h3 {
    margin: 6px 0 6px;
    color: #0f172a;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-form-heading p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 10px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #15803d;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.hero-form-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
    animation: pulseDot 2s ease-in-out infinite;
}

.hero-form-fields {
    padding: 16px 32px 24px;
}

.hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-enquiry-form .input-group {
    margin-bottom: 12px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #94a3b8;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease;
    z-index: 1;
}

.input-with-icon .input-icon svg {
    width: 18px;
    height: 18px;
}

.input-with-icon .input-icon-top {
    top: 16px;
    transform: none;
}

.hero-enquiry-form .input-group input,
.hero-enquiry-form .input-group select,
.hero-enquiry-form .input-group textarea {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border-radius: 14px;
    border: 1.5px solid rgba(12, 55, 98, 0.1);
    background: rgba(255, 255, 255, 0.85);
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text-color);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-enquiry-form .input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.hero-enquiry-form .input-group textarea {
    min-height: 88px;
    resize: vertical;
}

.hero-enquiry-form .input-group input:focus,
.hero-enquiry-form .input-group select:focus,
.hero-enquiry-form .input-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(40, 111, 181, 0.12);
    background: #fff;
    transform: none;
}

.input-with-icon:focus-within .input-icon {
    color: var(--primary-light);
}

.hero-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    margin-top: 4px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5a9e 50%, var(--primary-light) 100%);
    background-size: 200% auto;
    box-shadow: 0 8px 24px rgba(12, 55, 98, 0.28);
    transition: background-position 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-form-submit:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(12, 55, 98, 0.35);
}

.hero-form-submit .btn-icon {
    transition: transform 0.25s ease;
}

.hero-form-submit:hover .btn-icon {
    transform: translateX(4px);
}

.hero-form-footer {
    padding: 0 32px 26px;
}

.hero-form-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-top: 4px;
    border-top: 1px dashed rgba(12, 55, 98, 0.12);
    margin-top: 4px;
    padding-top: 16px;
}

.hero-form-perk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero-form-perk svg {
    width: 15px;
    height: 15px;
    color: #22c55e;
    flex-shrink: 0;
}

/* Enhanced Glassmorphism Form */
.glass-form {
    /* background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    /* padding: 45px 40px; */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #8a2be2);
}

.glass-form h3 {
    margin-bottom: 10px;
    color: #111;
    font-size: 2rem;
    font-weight: 800;
}

.glass-form p {
    color: var(--text-light);
    margin-bottom: 0px;
    font-size: 1rem;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(12, 55, 98, 0.15);
    background: #fff;
    transform: translateY(-2px);
}

.glass-form .btn-primary {
    padding: 14px;
    font-size: 1.1rem;
    border-radius: 12px;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--primary-color), #07223d);
}

/* About Us Section */
.about {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
    position: relative;
    padding-left: 28px;
}

.about-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light), rgba(157, 78, 221, 0.5));
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 14px;
    background: rgba(12, 55, 98, 0.06);
    border: 1px solid rgba(12, 55, 98, 0.1);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(40, 111, 181, 0.2);
}

.about-text h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 22px;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.about-title-accent {
    display: block;
    font-size: 1.08em;
    margin: 2px 0;
}

.about-title-sub {
    display: block;
    font-size: 0.55em;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: -0.3px;
    margin-top: 10px;
}

.about-lead {
    color: var(--text-color);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 95%;
}

.about-desc {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 95%;
}

.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.about-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(12, 55, 98, 0.1), rgba(40, 111, 181, 0.12));
    color: var(--primary-color);
    border: 1px solid rgba(12, 55, 98, 0.1);
}

.about-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(12, 55, 98, 0.08);
    padding: 22px 18px;
    border-radius: 16px;
    flex: 1;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(12, 55, 98, 0.05);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    opacity: 0.85;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(12, 55, 98, 0.12);
    border-color: rgba(40, 111, 181, 0.25);
}

.stat-icon-wrap {
    margin-bottom: 14px;
}

.stat-icon {
    font-size: 1.4rem;
    background: rgba(12, 55, 98, 0.06);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.08);
    background: rgba(12, 55, 98, 0.1);
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-text {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.4;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.abstract-shape {
    width: 100%;
    aspect-ratio: 1;
    min-height: 300px;
    background-color: var(--primary-color);
    background-image: url('../images/about-team.png');
    background-size: cover;
    background-position: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(12, 55, 98, 0.2);
    border: 8px solid rgba(255, 255, 255, 0.9);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    animation: floatShape 6s infinite alternate ease-in-out;
}

.card-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #111;
}

.card-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Services Section */
.services {
    background-color: #0b1120;
    color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(40, 111, 181, 0.15), transparent 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.1), transparent 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
    pointer-events: none;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.services .section-header h2 {
    color: #fff;
}

.services .section-header .subtitle {
    color: #94a3b8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 45px 35px;
    border-radius: 24px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(40, 111, 181, 0.4), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 0;
}

.service-card:hover .card-glow {
    opacity: 1;
    transform: scale(1.8);
    background: radial-gradient(circle, rgba(157, 78, 221, 0.3), transparent 70%);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(157, 78, 221, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.05);
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(8deg);
    background: linear-gradient(135deg, var(--primary-light), #9d4edd);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
}

.service-card .icon {
    font-size: 2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: #c482f9;
}

.service-card:hover .service-link span {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: #f8fbff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(12, 55, 98, 0.05);
    border: 1px solid rgba(12, 55, 98, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(12, 55, 98, 0.1);
}

.quote-icon {
    font-size: 5rem;
    color: rgba(40, 111, 181, 0.15);
    font-family: Georgia, serif;
    line-height: 0;
    position: absolute;
    top: 55px;
    left: 20px;
    z-index: -1;
}

.feedback {
    font-size: 1.05rem;
    color: var(--text-color);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.client-info h4 {
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Call to Action Section */
.cta-section {
    padding: 120px 0;
    background-color: #0b1120;
    background-image:
        linear-gradient(rgba(11, 17, 32, 0.88), rgba(11, 17, 32, 0.94)),
        url('../images/cta-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.cta-shape-1 {
    width: 420px;
    height: 420px;
    background: rgba(12, 55, 98, 0.35);
    top: -120px;
    left: -100px;
    animation: floatShape 12s infinite alternate ease-in-out;
}

.cta-shape-2 {
    width: 360px;
    height: 360px;
    background: rgba(157, 78, 221, 0.2);
    bottom: -100px;
    right: -80px;
    animation: floatShape 10s infinite alternate ease-in-out reverse;
}

.cta-shape-3 {
    width: 240px;
    height: 240px;
    background: rgba(40, 111, 181, 0.25);
    top: 40%;
    left: 55%;
    animation: floatShape 8s infinite alternate ease-in-out;
    animation-delay: -3s;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-card {
    max-width: 780px;
    margin: 0 auto;
    padding: 52px 48px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    margin-bottom: 28px;
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
    animation: pulseDot 2s ease-in-out infinite;
}

.cta-section h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.cta-title-accent {
    display: inline;
}

.cta-subtitle {
    font-size: 1.12rem;
    color: rgba(203, 213, 225, 0.95);
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.75;
}

.cta-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.cta-perk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.cta-perk svg {
    color: #4ade80;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 28px;
}

.cta-buttons .cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
}

.cta-btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(203, 213, 225, 0.75);
    letter-spacing: 0.2px;
}

.cta-trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: #f8fbff;
    background-image:
        linear-gradient(rgba(12, 55, 98, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 55, 98, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.contact-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(12, 55, 98, 0.08);
    top: -120px;
    right: -100px;
}

.contact-shape-2 {
    width: 320px;
    height: 320px;
    background: rgba(157, 78, 221, 0.06);
    bottom: -80px;
    left: -80px;
}

.contact-header {
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(12, 55, 98, 0.1);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(12, 55, 98, 0.06);
}

.contact-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(40, 111, 181, 0.2);
}

.contact-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.12;
}

.contact-title-accent {
    display: block;
    font-size: 1.05em;
    margin-top: 4px;
}

.contact-subtitle {
    font-size: 1.12rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

.contact-container {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(12, 55, 98, 0.1);
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
    border: 1px solid rgba(12, 55, 98, 0.08);
    position: relative;
    z-index: 1;
}

.contact-details {
    flex: 1;
    background: linear-gradient(145deg, var(--primary-color) 0%, #07223d 55%, #0a2f52 100%);
    color: #ffffff;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.contact-details-shape {
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(40, 111, 181, 0.35);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    filter: blur(60px);
    pointer-events: none;
}

.contact-details::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(157, 78, 221, 0.15);
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
    filter: blur(50px);
    pointer-events: none;
}

.contact-details-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-details h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.contact-details > p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.contact-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.contact-hours svg {
    opacity: 0.85;
    flex-shrink: 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-item .contact-icon svg {
    stroke: rgba(255, 255, 255, 0.95);
}

.contact-info-item h4 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.social-links {
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.social-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(12, 55, 98, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(157, 78, 221, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-glow {
    inset: 12% 8% 10%;
    opacity: 0.9;
}

.contact-enquiry-form {
    width: 100%;
    max-width: 520px;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper .glass-form {
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-details {
        padding: 40px 28px;
    }

    .contact-form-wrapper {
        padding: 40px 24px 48px;
    }

    .contact-enquiry-form .hero-form-header,
    .contact-enquiry-form .hero-form-fields,
    .contact-enquiry-form .hero-form-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .contact-header h2 {
        font-size: 2.6rem;
    }
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
}

/* Animations */
.animate {
    opacity: 0;
    will-change: transform, opacity;
}

.animate:not(.fade-in) {
    visibility: hidden;
}

.animate.is-visible {
    opacity: 1;
    visibility: visible;
}

.slide-up {
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.is-visible {
    transform: translateY(0);
}

.fade-in {
    transition: opacity 1s ease-out;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        width: 100%;
        justify-content: center;
    }
    
    .trusted-logos-container {
        margin-top: 40px;
    }

    .trusted-logos {
        justify-content: center;
        gap: 30px;
    }

    .hero-trust-item {
        align-items: center;
    }

    .hero-form-container {
        max-width: 100%;
        width: 100%;
    }

    .hero-form-header {
        padding: 24px 24px 8px;
    }

    .hero-form-fields {
        padding: 12px 24px 20px;
    }

    .hero-form-footer {
        padding: 0 24px 22px;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-text {
        padding-left: 0;
        max-width: 100%;
    }

    .about-text::before {
        display: none;
    }

    .about-lead,
    .about-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .about-features {
        align-items: center;
    }

    .about-features li {
        justify-content: center;
        max-width: 360px;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 1 1 40%;
        align-items: center;
        text-align: center;
    }

    .about-actions {
        justify-content: center;
    }
    
    .about-image {
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 30px;
        width: 100%;
        display: block;
    }
}

@media (max-width: 1100px) {
    .nav-links a,
    .nav-link {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(165deg, #f0f6ff 0%, #ffffff 45%, #fafbff 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 100px 28px 40px;
        border-radius: 0;
        border: none;
        transform: translateY(-100%);
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, visibility 0.35s ease;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-links.nav-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links.nav-active li {
        animation: navSlideIn 0.45s ease forwards;
        opacity: 0;
    }

    .nav-links.nav-active li:nth-child(1) { animation-delay: 0.05s; }
    .nav-links.nav-active li:nth-child(2) { animation-delay: 0.1s; }
    .nav-links.nav-active li:nth-child(3) { animation-delay: 0.15s; }
    .nav-links.nav-active li:nth-child(4) { animation-delay: 0.2s; }
    .nav-links.nav-active li:nth-child(5) { animation-delay: 0.25s; }

    @keyframes navSlideIn {
        from {
            opacity: 0;
            transform: translateY(-16px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links li {
        width: 100%;
        max-width: 340px;
        text-align: center;
    }
    
    .nav-links a,
    .nav-link {
        width: 100%;
        font-size: 1.05rem;
        padding: 16px 24px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(12, 55, 98, 0.08);
        box-shadow: 0 2px 12px rgba(12, 55, 98, 0.04);
    }

    .nav-links a:hover,
    .nav-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(12, 55, 98, 0.1);
    }

    .nav-links a.active,
    .nav-link.active {
        border-color: transparent;
        box-shadow: 0 6px 20px rgba(12, 55, 98, 0.25);
    }
    
    .desktop-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px 6px 12px;
        margin-bottom: 20px;
    }

    .hero-headline-line {
        font-size: 0.68em;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-trust {
        flex-direction: row;
        gap: 16px;
        padding: 14px 20px;
    }

    .hero-form-row {
        grid-template-columns: 1fr;
    }

    .hero-form-heading h3 {
        font-size: 1.45rem;
    }

    .hero-form-icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }
    
    .trusted-logos {
        gap: 20px;
    }
    
    .trusted-logo {
        height: 20px;
    }

    .hero-trust-num {
        font-size: 1.15rem;
    }

    .hero-trust-label {
        font-size: 0.68rem;
    }

    .hero-trust-divider {
        height: 28px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .about-title-sub {
        font-size: 0.62em;
    }

    .about-lead {
        font-size: 1.05rem;
    }

    .about-desc {
        font-size: 0.98rem;
    }

    .about-features li {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .about-stats {
        flex-direction: column;
        width: 100%;
    }
    
    .stat-item {
        width: 100%;
        flex: none;
        align-items: center;
        text-align: center;
    }
    
    .floating-card {
        bottom: -20px;
        right: 0px;
        padding: 10px 15px;
    }
    
    .image-wrapper {
        margin: 0 auto;
        max-width: 300px;
    }

    .cta-section {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .cta-card {
        padding: 36px 24px;
        border-radius: 20px;
    }

    .cta-section h2 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-perks {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 8px;
    }

    .cta-trust-dot {
        display: none;
    }

    .contact-header h2 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-details h3 {
        font-size: 1.6rem;
    }

    .contact-info-item:hover {
        transform: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-intro {
        position: static;
        text-align: center;
    }

    .faq-intro h2 {
        font-size: 2.2rem;
    }

    .faq-stats {
        justify-content: center;
    }

    .faq-answer p {
        padding-left: 22px;
    }
}

/* Trusted By Section */
.trusted-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid rgba(12, 55, 98, 0.06);
}

.trusted-section .trusted-logos-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 48px;
    margin-top: 8px;
}

.trusted-section .trusted-logo {
    display: block;
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.trusted-section .trusted-logo:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.trusted-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 16px;
    background: #f8fbff;
    border: 1px solid rgba(12, 55, 98, 0.08);
    border-radius: 14px;
    min-height: 72px;
    transition: all 0.3s ease;
}

.trusted-logo span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.3;
}

.trusted-logo small {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.portfolio-card {
    background: #fff;
    border: 1px solid rgba(12, 55, 98, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(12, 55, 98, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(12, 55, 98, 0.1);
}

.portfolio-card-top {
    position: relative;
    min-height: 180px;
    background: linear-gradient(145deg, #eef4ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}

.portfolio-image,
.portfolio-image-placeholder {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.portfolio-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.portfolio-card-body {
    padding: 22px;
}

.portfolio-card-body h3 {
    margin-bottom: 10px;
}

.portfolio-card-body p {
    color: #64748b;
    margin-bottom: 14px;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.trusted-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(12, 55, 98, 0.08);
    border-color: rgba(40, 111, 181, 0.2);
    background: #fff;
}

.trusted-note {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: #f8fbff;
    background-image:
        linear-gradient(rgba(12, 55, 98, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 55, 98, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
}

.faq-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.faq-shape-1 {
    width: 360px;
    height: 360px;
    background: rgba(12, 55, 98, 0.07);
    top: -80px;
    right: -60px;
}

.faq-shape-2 {
    width: 280px;
    height: 280px;
    background: rgba(157, 78, 221, 0.06);
    bottom: -60px;
    left: -40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.35fr);
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.faq-intro {
    position: sticky;
    top: 100px;
}

.faq-intro h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.faq-intro-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(12, 55, 98, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-bottom: 32px;
}

.faq-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(12, 55, 98, 0.3);
}

.faq-contact-link svg {
    transition: transform 0.25s ease;
}

.faq-contact-link:hover svg {
    transform: translateX(4px);
}

.faq-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.faq-stat {
    flex: 1;
    min-width: 120px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(12, 55, 98, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(12, 55, 98, 0.05);
}

.faq-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.faq-stat span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
}

.faq-list {
    max-width: none;
    margin: 0;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(12, 55, 98, 0.08);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(12, 55, 98, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 32px rgba(12, 55, 98, 0.08);
}

.faq-item.active {
    border-color: rgba(40, 111, 181, 0.3);
    box-shadow: 0 12px 36px rgba(12, 55, 98, 0.1);
}

.faq-item.active .faq-q-num {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    border-color: transparent;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.25s ease;
}

.faq-question:hover {
    background: rgba(12, 55, 98, 0.02);
}

.faq-q-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(12, 55, 98, 0.06);
    border: 1px solid rgba(12, 55, 98, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-q-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: left;
    line-height: 1.45;
    transition: color 0.25s ease;
}

.faq-item.active .faq-q-text {
    color: var(--primary-color);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-light);
    transition: transform 0.35s ease, color 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 22px 22px 72px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    border-top: 1px solid rgba(12, 55, 98, 0.06);
    margin-top: 0;
    padding-top: 16px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.45);
    animation: waPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.35); opacity: 0; }
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #1e293b;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all 0.25s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Utility Pages (404, Thank You) */
.utility-page {
    min-height: 100vh;
    background: #f4f7fb;
}

.utility-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.utility-card {
    background: #fff;
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(12, 55, 98, 0.1);
    text-align: center;
    max-width: 460px;
    width: 100%;
    border: 1px solid rgba(12, 55, 98, 0.06);
}

.utility-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.utility-icon.success {
    background: #dcfce7;
    color: #16a34a;
}

.utility-icon.success svg {
    width: 36px;
    height: 36px;
}

.utility-icon.error {
    background: #fee2e2;
    color: #dc2626;
}

.utility-icon.error svg {
    width: 36px;
    height: 36px;
}

.utility-card h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.utility-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.utility-sub {
    font-size: 0.88rem;
    margin-bottom: 24px !important;
}

.utility-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

.utility-wa {
    border-color: #25d366 !important;
    color: #16a34a !important;
}

.footer-links {
    margin-top: 8px;
    font-size: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .trusted-section .trusted-logos-section {
        gap: 28px 32px;
    }

    .trusted-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .trusted-section .trusted-logos-section {
        gap: 24px;
    }

    .trusted-section .trusted-logo {
        height: 22px;
    }

    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .utility-card {
        padding: 36px 24px;
    }
}

.hero-form-fields .form-error-banner {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #b91c1c;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
