@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy-900: #0e2a47;
    --navy-800: #15395e;
    --navy-700: #1f4d7a;
    --navy-600: #285f95;

    --blue-600: #2f6da5;
    --blue-500: #4e86c5;
    --blue-400: #72a8df;
    --blue-300: #a9cdef;

    --bg-light: #f4f8fc;
    --bg-light-2: #edf4fb;
    --bg-light-3: #f8fbff;
    --bg-card: rgba(255, 255, 255, 0.96);

    --text-dark: #173958;
    --text-main: #2f587d;
    --text-soft: #72839a;

    --text-white: rgba(255, 255, 255, 0.96);
    --text-white-soft: rgba(255, 255, 255, 0.80);

    --accent: #4d84ff;
    --accent-hover: #3d73ea;
    --accent-soft: #6cb7ff;

    --accent-coral: #ff7f73;
    --accent-coral-hover: #f06d61;

    --border: rgba(25, 63, 99, 0.10);
    --border-soft: rgba(255, 255, 255, 0.14);

    --shadow-sm: 0 8px 22px rgba(14, 42, 71, 0.08);
    --shadow-md: 0 16px 36px rgba(14, 42, 71, 0.12);
    --shadow-lg: 0 24px 60px rgba(14, 42, 71, 0.18);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;

    --transition-fast: 0.25s ease;
    --transition: 0.35s ease;
    --transition-slow: 0.55s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: color var(--transition-fast);
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

/* =========================
   CONTAINER
========================= */
.container,
.hero-container {
    width: min(1180px, 92%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* =========================
   GLOBAL SECTION STYLES
========================= */
.section-dark,
.dark-info-strip,
.services-section,
.about-section,
.why-section,
.process-section,
.faq-section,
.cta-section {
    position: relative;
    padding: 90px 0;
}

.section-header {
    margin-bottom: 54px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
    transition: all var(--transition);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 14px;
}

.section-header p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* =========================
   BACKGROUNDS
========================= */
.hero-black,
.why-section,
.process-section,
.cta-section {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 52%, var(--navy-700) 100%);
    overflow: hidden;
}

.dark-info-strip,
.services-section,
.about-section,
.faq-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light-2) 100%);
}

.hero-black::before,
.why-section::before,
.process-section::before,
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255,255,255,0.05), transparent 22%);
    pointer-events: none;
}

.hero-black::after,
.why-section::after,
.process-section::after,
.cta-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -120px;
    right: -80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    pointer-events: none;
}

.page-cursor-glow,
.hero-glow,
.hero-grid {
    position: absolute;
    pointer-events: none;
}

.page-cursor-glow {
    width: 300px;
    height: 300px;
    left: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(109, 154, 255, 0.12);
    filter: blur(32px);
}

.hero-glow-1 {
    width: 260px;
    height: 260px;
    right: -70px;
    top: 40px;
    border-radius: 50%;
    background: rgba(114, 168, 223, 0.10);
    filter: blur(28px);
}

.hero-glow-2 {
    width: 220px;
    height: 220px;
    left: 16%;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(255, 127, 115, 0.07);
    filter: blur(26px);
}

.hero-grid {
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 42px 42px;
   }

/* =========================
   TEXT BY SECTION
========================= */
.hero-black .section-tag,
.why-section .section-tag,
.process-section .section-tag,
.cta-section .section-tag {
    background: rgba(255,255,255,0.08);
    color: #dce8ff;
    border: 1px solid var(--border-soft);
}

.dark-info-strip .section-tag,
.services-section .section-tag,
.about-section .section-tag,
.faq-section .section-tag {
    background: rgba(47, 109, 165, 0.08);
    color: var(--blue-600);
    border: 1px solid rgba(47, 109, 165, 0.10);
}

.hero-black .section-header h2,
.why-section .section-header h2,
.process-section .section-header h2,
.cta-section .section-header h2 {
    color: #ffffff;
}

.hero-black .section-header p,
.why-section .section-header p,
.process-section .section-header p,
.cta-section .section-header p {
    color: var(--text-white-soft);
}

/* changed second image issue: headings white on dark sections */
.about-section .section-header h2 {
    color: #ffffff;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.about-section .section-header p {
    color: rgba(255,255,255,0.85);
}

.about-section .section-tag {
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.14);
}

.dark-info-strip .section-header h2,
.services-section .section-header h2,
.faq-section .section-header h2,
.faq-intro h2 {
    color: var(--text-dark);
}

.dark-info-strip .section-header p,
.services-section .section-header p,
.faq-section .section-header p,
.faq-intro p {
    color: var(--text-soft);
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition),
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: translateX(-120%);
    transition: transform 0.8s ease;
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(77, 132, 255, 0.20);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--accent-hover) 0%, #59a7f0 100%);
    box-shadow: 0 18px 34px rgba(77, 132, 255, 0.28);
}

.btn-secondary {
    background: rgba(255,255,255,0.96);
    color: var(--text-dark);
    border: 1px solid rgba(25, 63, 99, 0.12);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: #eef5fc;
    color: var(--navy-900);
    border-color: rgba(47, 109, 165, 0.18);
    box-shadow: var(--shadow-md);
}

.cta-box .btn-primary {
    background: #ffffff;
    color: var(--navy-900);
    box-shadow: none;
}

.cta-box .btn-primary:hover {
    background: #eef5fc;
    color: var(--navy-900);
    transform: translateY(-3px);
}

.cta-box .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.42);
    box-shadow: none;
}

.cta-box .btn-secondary:hover {
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    border-color: rgba(255,255,255,0.70);
    transform: translateY(-3px);
}

/* =========================
   HERO
========================= */
.hero-black {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0 36px;
    background-size: 200% 200%;
    animation: gradientMove 10s ease infinite;
}

.hero-full-carousel {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-full-track {
    display: flex;
}

.hero-full-slide {
    min-width: 100%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 50px;
    align-items: center;
}

.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.02;
    font-weight: 800;
    color: #ffffff;
    margin: 18px 0;
}

.hero-left .subtitle {
    max-width: 640px;
    font-size: 1.04rem;
    color: var(--text-white-soft);
    margin-bottom: 26px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #dce8ff;
    border: 1px solid var(--border-soft);
    font-size: 14px;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-points {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.88);
    font-weight: 500;
}

.hero-point i {
    color: var(--accent-coral);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 520px;
}

.hero-stat {
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(255,255,255,0.98);
    border-radius: 20px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.hero-stat:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-md);
    border-color: rgba(77, 132, 255, 0.18);
}

.hero-stat h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--blue-600);
}

.hero-stat p {
    color: var(--text-soft);
    font-size: 0.93rem;
}

.hero-main-visual {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 500px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.hero-main-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-main-visual:hover img {
    transform: scale(1.05);
}

.hero-main-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(14,42,71,0.92), rgba(14,42,71,0.10));
    color: #fff;
}

.hero-slide-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-coral) 0%, #ff9a8a 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-main-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.hero-main-overlay p {
    color: rgba(255,255,255,0.86);
}

.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.94);
    color: var(--navy-900);
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        background-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.hero-carousel-btn:hover {
    background: #ffffff;
    color: var(--blue-600);
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--shadow-md);
}

.hero-carousel-prev {
    left: 14px;
}

.hero-carousel-next {
    right: 14px;
}

.hero-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.hero-carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.34);
    cursor: pointer;
    transition: all var(--transition);
}

.hero-carousel-dots .dot.active,
.hero-carousel-dots .dot:hover {
    width: 34px;
    border-radius: 999px;
    background: #ffffff;
}

/* =========================
   GRIDS
========================= */
.info-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* =========================
   CARD BASE
========================= */
.info-card,
.service-item,
.why-card,
.process-card,
.about-main-card,
.about-side-card,
.faq-item,
.faq-extra-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

/* =========================
   INFO CARDS
========================= */
.info-card {
    border-radius: 28px;
    padding: 34px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(77,132,255,0.06), rgba(108,183,255,0.03));
    opacity: 0;
    transition: opacity var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(47, 109, 165, 0.14);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card i {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--accent-soft) 100%);
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 10px 22px rgba(47,109,165,0.18);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    z-index: 1;
}

.info-card:hover i {
    transform: scale(1.08);
    box-shadow: 0 12px 26px rgba(77,132,255,0.22);
}

.info-card h3,
.info-card p {
    position: relative;
    z-index: 1;
}

.info-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

/* =========================
   SERVICES
========================= */
.service-item {
    position: relative;
    border-radius: 28px;
    padding: 30px 26px;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--accent-soft), var(--accent-coral));
    transition: left 0.45s ease;
}

.service-item:hover {
    transform: translateY(-10px) rotate(-0.3deg);
    box-shadow: var(--shadow-lg);
    border-color: rgba(47, 109, 165, 0.14);
}

.service-item:hover::before {
    left: 0;
}

.service-item .icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(47,109,165,0.10), rgba(108,183,255,0.16));
    margin-bottom: 18px;
    transition: transform var(--transition), background var(--transition);
}

.service-item:hover .icon {
    transform: rotate(-6deg) scale(1.08);
}

.service-item .icon i {
    font-size: 1.8rem;
    color: var(--accent-coral);
    transition: color var(--transition);
}

.service-item:hover .icon i {
    color: var(--accent-coral-hover);
}

.service-item h3 {
    color: var(--text-dark);
    font-size: 1.28rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-item p {
    color: var(--text-soft);
    margin-bottom: 16px;
    line-height: 1.8;
}

.service-link {
    color: var(--blue-600);
    font-weight: 600;
}

.service-link:hover {
    color: var(--accent-hover);
}

/* =========================
   ABOUT SECTION
   improved + smaller main card + white heading
========================= */
.about-section {
    position: relative;
    background:
        linear-gradient(135deg, #123a64 0%, #174a79 55%, #205a8f 100%);
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06), transparent 20%),
        radial-gradient(circle at 88% 14%, rgba(255,255,255,0.09), transparent 18%);
    pointer-events: none;
}

.about-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    top: -70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: start;
}

/* smaller and more balanced */
.about-main-card {
    border-radius: 30px;
    padding: 30px 28px;
    max-width: 720px;
    margin: 0 auto 0 0;
    background: rgba(255,255,255,0.98);
    position: relative;
    overflow: hidden;
}

.about-main-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(77,132,255,0.05), rgba(255,127,115,0.04));
    pointer-events: none;
}

.about-main-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(8, 32, 57, 0.22);
}

.about-main-card h3 {
    color: var(--text-dark);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.about-main-card p {
    color: var(--text-soft);
    margin-bottom: 14px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.about-side-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-side-card {
    border-radius: 24px;
    padding: 24px 20px;
    background: rgba(255,255,255,0.97);
}

.about-side-card:hover {
    transform: translateY(-8px);
    border-color: rgba(77,132,255,0.30);
    box-shadow: 0 20px 42px rgba(8, 32, 57, 0.22);
}

.about-side-card i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
    color: #fff;
    font-size: 1.45rem;
    margin-bottom: 14px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-side-card:hover i {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 24px rgba(31, 77, 122, 0.18);
}

.about-side-card h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.08rem;
    font-weight: 700;
}

.about-side-card p {
    color: var(--text-soft);
    line-height: 1.75;
    font-size: 0.96rem;
}

/* =========================
   WHY
========================= */
.why-card {
    border-radius: 28px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    transition: width var(--transition);
    transform: translateX(-50%);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(47, 109, 165, 0.14);
}

.why-card:hover::after {
    width: 100%;
}

.why-card i {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue-600), var(--accent-soft));
    color: #fff;
    font-size: 1.55rem;
    margin-bottom: 18px;
    box-shadow: 0 10px 22px rgba(47,109,165,0.16);
    transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover i {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 14px 28px rgba(47,109,165,0.22);
}

.why-card h3 {
    color: var(--text-dark);
    font-size: 1.28rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.85;
}

/* =========================
   PROCESS
========================= */
.process-card {
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(47, 109, 165, 0.14);
}

.step-number {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(21,57,94,0.18);
    transition: transform var(--transition), box-shadow var(--transition);
}

.process-card:hover .step-number {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 16px 30px rgba(47,109,165,0.25);
}

.process-card h3 {
    color: var(--text-dark);
    font-size: 1.28rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.process-card p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.85;
}

/* =========================
   FAQ
========================= */
.faq-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 32px;
    align-items: start;
}

.faq-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 14px 0;
    line-height: 1.15;
}

.faq-intro p {
    margin-bottom: 24px;
}

.faq-extra-card {
    border-radius: 24px;
    padding: 28px;
}

.faq-extra-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.faq-extra-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-extra-card p {
    color: var(--text-soft);
    margin-bottom: 18px;
}

.faq-container {
    display: grid;
    gap: 18px;
}

.faq-item {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.96);
}

.faq-item:hover,
.faq-item.active {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(14,42,71,0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f3f8fe 100%);
    border-color: rgba(77,132,255,0.18);
}

.faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: color var(--transition);
}

.faq-item:hover .faq-toggle {
    color: var(--blue-600);
}

.faq-question {
    flex: 1;
}

.faq-toggle .icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
    color: #fff;
    font-size: 0.95rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.faq-item:hover .faq-toggle .icon {
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(21,57,94,0.18);
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

.faq-answer {
    padding: 0 22px 22px;
    color: var(--text-soft);
    line-height: 1.8;
}

/* =========================
   CTA
========================= */
.cta-section {
    padding-top: 70px;
    padding-bottom: 90px;
}

.cta-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 72px 30px;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 52%, var(--navy-700) 100%);
    box-shadow: var(--shadow-lg);
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    top: -100px;
    right: -60px;
    background: rgba(255,255,255,0.08);
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
    background: rgba(255,255,255,0.05);
}

.cta-box .section-tag {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 4vw, 4rem);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.08;
    font-weight: 800;
}

.cta-box p {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: 0 auto 28px;
    color: var(--text-white);
    font-size: 1.06rem;
}

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* =========================
   FORM
========================= */
input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(25,63,99,0.10);
    border-radius: 14px;
    background: #fff;
    color: var(--text-main);
    outline: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background-color var(--transition);
    box-shadow: 0 6px 18px rgba(14,42,71,0.04);
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(77,132,255,0.32);
    box-shadow: 0 0 0 4px rgba(77,132,255,0.10);
    background: #fff;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

/* =========================
   FOOTER
========================= */
footer {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: rgba(255,255,255,0.86);
    padding: 24px 0;
    text-align: center;
}

footer p,
footer a {
    color: rgba(255,255,255,0.82);
}

/* =========================
   ANIMATIONS
========================= */
.fade-in-up,
.fade-in-left,
.fade-in-right {
    animation-duration: 0.9s;
    animation-fill-mode: both;
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in-left {
    animation-name: fadeInLeft;
}

.fade-in-right {
    animation-name: fadeInRight;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .hero-container,
    .about-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .info-grid,
    .services-grid,
    .why-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-main-visual,
    .hero-main-visual img {
        min-height: 440px;
        height: 440px;
    }

    .about-main-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-dark,
    .dark-info-strip,
    .services-section,
    .about-section,
    .why-section,
    .process-section,
    .faq-section,
    .cta-section {
        padding: 76px 0;
    }

    .hero-black {
        min-height: auto;
        padding-top: 40px;
    }

    .hero-stats,
    .info-grid,
    .services-grid,
    .about-side-grid,
    .why-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-main-visual,
    .hero-main-visual img {
        min-height: 360px;
        height: 360px;
    }

    .hero-carousel-btn {
        width: 44px;
        height: 44px;
    }

    .cta-box {
        padding: 52px 22px;
    }

    .about-main-card {
        padding: 24px 22px;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }

    .hero-cta,
    .cta-actions {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 1.95rem;
    }

    .section-header h2,
    .faq-intro h2,
    .cta-box h2 {
        font-size: 1.85rem;
    }

    .hero-main-overlay {
        padding: 20px;
    }

    .about-main-card {
        padding: 22px 18px;
    }
}