/* ===================================
   FONT FACES
   =================================== */
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

:root {
    --purple: #783BFA;
    --dark-purple: #090023;
    --white: #FFFFFF;
    --light-gray: #F5F5F7;
    --gray: #8E8E93;
    --black: #000000;
    --gradient-purple: linear-gradient(135deg, #783BFA 0%, #5B2BC9 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-purple);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

ul,
ol {
    list-style: none;
}

input,
textarea,
select {
    font-family: inherit;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    outline: none;
    border: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-tag {
    display: inline-block;
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-tag-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.section-tag-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(3144%) hue-rotate(251deg) brightness(99%) contrast(98%);
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--dark-purple);
}

.section-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    max-width: 600px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    background-color: transparent;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    justify-self: start;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    grid-column: 2;
}

.nav-link {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--purple);
}

.nav-cta {
    background: var(--gradient-purple);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-self: end;
    grid-column: 3;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(120, 59, 250, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: var(--white);
    font-size: 1.5rem;
    padding: 5px;
    grid-column: 3;
    justify-self: end;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background-color: var(--dark-purple);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(120, 59, 250, 0.3), transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 12px;
    margin-top: 50px;
    font-size: 0.75rem;
    margin-bottom: 24px;
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-title {
    font-size: 3.7rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: 0.0005rem;
    background: linear-gradient(to bottom, #FFFFFF 0%, #e6e6e6 50%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.2;
    opacity: 0.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;

    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(120, 59, 250, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-purple);
}

.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.trustpilot-badge .stars {
    color: #FFC107;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.google-badge .stars {
    color: #FFC107;
}

/* ===================================
   HERO FORM CARD
   =================================== */
.hero-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    margin-top: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 28px;
    text-align: center;
    letter-spacing: 0.0005rem;

    line-height: 0.9;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E5E7;
    border-radius: 8px;
    font-size: 0.9375rem;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Custom Select Dropdown Styling */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3e%3cpath fill='%23783BFA' d='M1 1l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 45px;
    cursor: pointer;
    font-weight: 500;
}

.form-select:hover {
    border-color: var(--purple);
    background-color: #FAFAFA;
}

.form-select option {
    padding: 12px;
    background-color: var(--white);
    color: var(--dark-purple);
    font-weight: 500;
}

.form-select option:first-child {
    color: var(--gray);
}

.form-select:invalid {
    color: var(--gray);
}

.form-select:valid {
    color: var(--dark-purple);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(120, 59, 250, 0.1);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: var(--gradient-purple);
    color: var(--white);
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(120, 59, 250, 0.4);
}

/* ===================================
   CUSTOM DROPDOWN
   =================================== */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-selected {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E5E7;
    border-radius: 8px;
    font-size: 0.9375rem;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.custom-dropdown-selected:hover {
    border-color: var(--purple);
    background-color: #FAFAFA;
}

.custom-dropdown.active .custom-dropdown-selected {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(120, 59, 250, 0.1);
}

.custom-dropdown-text {
    color: var(--gray);
    transition: color 0.3s ease;
}

.custom-dropdown.has-value .custom-dropdown-text {
    color: var(--dark-purple);
}

.custom-dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.custom-dropdown.active .custom-dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid #E5E5E7;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.custom-dropdown.active .custom-dropdown-options {
    max-height: 300px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
}

.custom-dropdown-option {
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: var(--dark-purple);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.custom-dropdown-option:first-child {
    color: var(--gray);
}

.custom-dropdown-option:hover {
    background-color: #F5F3FF;
    color: var(--purple);
}

.custom-dropdown-option.selected {
    background-color: var(--purple);
    color: var(--white);
}

.custom-dropdown-option.selected:hover {
    background-color: var(--purple);
    color: var(--white);
}

/* Custom scrollbar for dropdown options */
.custom-dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.custom-dropdown-options::-webkit-scrollbar-track {
    background: #F5F5F7;
    border-radius: 8px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 8px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #5B2BC9;
}


/* ===================================
   HERO REVIEW BADGE
   =================================== */
.hero-review-badge {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 24px;
}

.hero-review-badge img {
    width: 750px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background-color: #F8F5FF;
    padding: 100px 0;
}

.about-wrapper {
    max-width: 100%;
}

.about-header {
    margin-bottom: 48px;
}

.about-header-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-purple);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    flex-shrink: 0;
    margin-top: 4px;
}

.about-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(3144%) hue-rotate(251deg) brightness(99%) contrast(98%);
}

.about-main-title {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 500;
    line-height: 1;
    color: var(--dark-purple);
    max-width: 100%;
    letter-spacing: -0.02em;
    margin: 0;
    flex: 1;
}

/* About Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.about-feature-card {
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Grid Layout Positioning */
.about-feature-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.about-feature-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.about-feature-card:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3;
}

.about-feature-card:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
}

.about-feature-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

/* Card Color Variants */
.about-feature-card.light-purple {
    background: linear-gradient(135deg, #E9DDFF 0%, #D4C5FF 100%);
    color: var(--dark-purple);
}

.about-feature-card.purple-gradient {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    background-image: url('../images/middle box background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
}

.about-feature-card.dark {
    background: #000000;
    color: var(--white);
}

.about-feature-card.dark-purple {
    background: linear-gradient(135deg, #3B0764 0%, #2E0754 100%);
    color: var(--white);
}

.about-feature-card.image-card {
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(120, 59, 250, 0.3) 0%, rgba(120, 59, 250, 0.5) 100%);
}

/* Card Elements */
.about-feature-tag {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 32px;
    display: block;
    color: var(--dark-purple);
}

.about-feature-stat {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: var(--dark-purple);
}

.about-feature-card.dark .about-feature-stat {
    color: var(--white);
}

.about-feature-description {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-top: auto;
    max-width: 90%;
}

.about-feature-card.light-purple .about-feature-description {
    opacity: 1;
    color: var(--dark-purple);
}

.about-feature-card.dark .about-feature-description {
    opacity: 0.85;
}

.about-feature-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0;
}

.about-feature-card.dark .about-feature-title {
    margin-bottom: 32px;
}

.about-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: overlay;
}

.about-feature-card.purple-gradient .about-feature-title {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    line-height: 1.1;
    max-width: 70%;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 60px 0;
    background-color: #F8F5FF;
}

.services-header {
    margin-bottom: 56px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-purple);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.services-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(3144%) hue-rotate(251deg) brightness(99%) contrast(98%);
}

.services-main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--dark-purple);
    margin-bottom: 20px;
    max-width: 600px;
}

.services-description {
    font-size: 1.225rem;
    line-height: 1.5;
    color: var(--dark-purple);
    max-width: 550px;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: #000000;
    color: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    z-index: 1;
}

/* First purple box - lighter shade */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 20px;
    opacity: 0;
    transform: translateZ(-5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

/* Second purple box - darker shade */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6D28D9 0%, #5B21B6 100%);
    border-radius: 20px;
    opacity: 0;
    transform: translateZ(-5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -2;
}

.service-card:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-8px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3), 0 0 30px rgba(139, 92, 246, 0.2);
    background: #0a0a0a;
}

.service-card:hover::before {
    opacity: 1;
    transform: translate(-5px, 5px) rotate(-1deg) translateZ(-10px);
}

.service-card:hover::after {
    opacity: 1;
    transform: translate(-10px, 10px) rotate(-2deg) translateZ(-20px);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;

    transition: all 0.3s ease;
}

.service-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--white);
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.3;
    color: #ffffffda;
    opacity: 0.7;
    margin-top: auto;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    padding: 60px 0;
    background-color: #F8F5FF;
    overflow: visible;
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.process-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(3144%) hue-rotate(251deg) brightness(99%) contrast(98%);
}

.process-main-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--dark-purple);
    margin-bottom: 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 40px;
}

.process-card {
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 480px;
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    z-index: 1;
}

/* First purple shadow layer */
.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 24px;
    opacity: 0;
    transform: translateZ(-5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

/* Second purple shadow layer - darker */
.process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6D28D9 0%, #5B21B6 100%);
    border-radius: 24px;
    opacity: 0;
    transform: translateZ(-5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -2;
}

.process-card:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-12px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4), 0 0 40px rgba(139, 92, 246, 0.3);
    z-index: 10;
}

/* Animate shadow layers on hover */
.process-card:hover::before {
    opacity: 1;
    transform: translate(-5px, 5px) rotate(-1deg) translateZ(-10px);
}

.process-card:hover::after {
    opacity: 1;
    transform: translate(-10px, 10px) rotate(-2deg) translateZ(-20px);
}

.process-card.purple {
    background: #7C3AED;
    color: var(--white);
}

/* Purple card specific shadow layers - now BLACK/DARK */
.process-card.purple::before {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.process-card.purple::after {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.process-card.black {
    background: #000000;
    color: var(--white);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}

/* Black card specific shadow layers - now PURPLE */
.process-card.black::before {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.process-card.black::after {
    background: linear-gradient(135deg, #6D28D9 0%, #5B21B6 100%);
}

/* Black card unique hover with purple glow */
.process-card.black:hover {
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4), 0 0 40px rgba(139, 92, 246, 0.3);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.2;
}

.process-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.process-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* SVG illustration hover effects */
.process-card:hover .process-image img {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 10px 20px rgba(124, 58, 237, 0.3));
}

/* Specific sizing for card images */
.process-card:first-child .process-image {
    max-width: 160px;
    /* Smaller size for 1st card */
}

.process-card:last-child .process-image {
    max-width: 250px;
    margin-top: 30px;
    /* Bigger size for 3rd card */
}

.process-card.black .process-image {
    max-width: 280px;
    /* Bigger size for 2nd card */
    margin: 0 auto;
}

.process-description {
    font-size: 0.9375rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 300px;
    margin: 0 auto;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 60px 0;
    background-color: #F8F5FF;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.cta-image-box {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 32px;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cta-text {
    max-width: 500px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.cta-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(3144%) hue-rotate(251deg) brightness(99%) contrast(98%);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--dark-purple);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--dark-purple);
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: 60px 0;
    background-color: #F8F5FF;
    overflow: visible;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.testimonials-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--dark-purple);
    max-width: 600px;
    margin: 0;
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease;
}

.slider-btn:hover {
    transform: scale(1.05);
}

.slider-btn img {
    display: block;
    width: 40px;
    height: auto;
}

.testimonials-slider {
    position: relative;
    overflow-x: visible;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    padding-left: calc((100% - 1200px) / 2 + 20px);
    padding-right: 20px;
    scrollbar-width: none;
}

@media (max-width: 1240px) {
    .testimonials-track {
        padding-left: 20px;
    }
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 480px;
    max-width: 480px;
    background: #000000;
    color: var(--white);
    border-radius: 32px;
    padding: 56px 48px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0.5;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 360px;
}

/* Active card styling */
.testimonial-card.active {
    opacity: 1;
    background: radial-gradient(circle at bottom center, #7C3AED 0%, #000000 70%);
}

.testimonial-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.testimonial-card.active .testimonial-icon img {
    filter: none;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: auto;
    padding-top: 56px;
    color: var(--white);
    font-weight: 400;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 48px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: -3px;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: -16px;
    margin-bottom: -7px;
    color: var(--white);
}

.testimonial-role {
    font-size: 0.9375rem;
    color: var(--white);
    opacity: 0.7;
    margin-bottom: -16px;
}

.testimonial-stars {
    color: var(--white);
    font-size: 1.375rem;
    letter-spacing: 3px;
    margin-bottom: -16px;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    padding: 60px 20px;
    background-color: #F8F5FF;
}

.final-cta .container {
    background-color: #000000;
    border-radius: 32px;
    padding: 60px 80px;
}

.final-cta-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.final-cta-content {
    color: var(--white);
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--dark-purple);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 32px;
}

.final-cta-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(3144%) hue-rotate(251deg) brightness(99%) contrast(98%);
}

.final-cta-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 500px;
}

.final-cta-description {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 450px;
}

.final-cta-form {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(120, 59, 250, 0.15);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: 60px 0;
    background-color: #F8F5FF;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: var(--dark-purple);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 400;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--purple);
}

.faq-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--purple);
    color: var(--white);
}

.faq-item.active .faq-answer {
    padding: 24px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, #0a0014 0%, #1a0b2e 50%, #2a1558 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    padding-bottom: 60px;
    align-items: start;
}

.footer-info h3 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.footer-info p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
}

/* Footer tag with white background */
.footer .section-tag {
    background-color: var(--white);
    color: var(--dark-purple);
}

.footer .section-tag-icon img {
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(3144%) hue-rotate(251deg) brightness(99%) contrast(98%);
}

.footer-info-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.footer-location-info,
.footer-contact-info {
    margin-top: 0;
}

.footer-location-info h4,
.footer-contact-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    opacity: 0.7;
    color: var(--white);
}

.footer-location-info p,
.footer-contact-info p {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-map {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.interactive-map {
    width: 100%;
    height: 100%;
}

/* Leaflet Map Custom Styling - Modern Theme with Purple Tint */
.interactive-map .leaflet-tile-pane {
    filter: saturate(0.9) brightness(1.05) contrast(1.05) hue-rotate(-5deg);
    opacity: 0.95;
}

.interactive-map .leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.interactive-map .leaflet-control-zoom a {
    background: var(--white) !important;
    color: var(--dark-purple) !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.interactive-map .leaflet-control-zoom a:hover {
    background: var(--purple) !important;
    color: var(--white) !important;
    transform: scale(1.05);
}

.interactive-map .leaflet-popup-content-wrapper {
    background: var(--white) !important;
    color: var(--dark-purple) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    padding: 0 !important;
    border: 1px solid rgba(120, 59, 250, 0.1) !important;
}

.interactive-map .leaflet-popup-tip {
    background: var(--white) !important;
    border: 1px solid rgba(120, 59, 250, 0.1) !important;
}

.interactive-map .leaflet-popup-close-button {
    color: var(--dark-purple) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    padding: 6px 10px 0 0 !important;
}

.interactive-map .leaflet-popup-close-button:hover {
    color: var(--purple) !important;
}

.footer-bottom {
    background-color: var(--black);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.footer-link-inline {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: underline;
}

.footer-link-inline:hover {
    opacity: 1;
    color: var(--purple);
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* About Section Tablet */
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .about-feature-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .about-feature-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .about-feature-card:nth-child(3) {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .about-feature-card:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .about-feature-card:nth-child(5) {
        grid-column: 1 / 3;
        grid-row: 4;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        gap: 40px;
    }
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */
@media (max-width: 768px) {

    /* Navigation */
    /* Navigation - Modern Dropdown */
    .nav-menu {
        position: absolute;
        top: 80px;
        right: 20px;
        left: auto;
        width: 260px;
        height: auto;
        background: rgba(10, 0, 35, 0.6);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(120, 59, 250, 0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        align-items: stretch;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        left: auto;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        border-radius: 12px;
        transition: background 0.2s ease;
        text-align: left;
        font-size: 1rem;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--purple);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        grid-template-columns: auto 1fr auto;
    }

    .nav-cta {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }

    .hero::before {
        width: 100%;
        left: 0;
        background: radial-gradient(circle at bottom center, rgba(120, 59, 250, 0.3), transparent 70%);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-form-card {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }

    .about-header-content {
        flex-direction: column;
        gap: 20px;
    }

    .about-badge {
        font-size: 0.875rem;
        padding: 8px 16px;
        margin-top: 0;
    }

    .about-main-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.2;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-feature-card {
        padding: 32px;
    }

    .about-feature-card.purple-gradient {
        min-height: 550px;
    }

    .about-feature-card:nth-child(1),
    .about-feature-card:nth-child(2),
    .about-feature-card:nth-child(3),
    .about-feature-card:nth-child(4),
    .about-feature-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .about-feature-tag {
        font-size: 1.125rem;
    }

    .about-feature-stat {
        font-size: 4rem;
    }

    .about-feature-title {
        font-size: 1.5rem;
    }

    .about-feature-description {
        font-size: 0.9375rem;
    }

    .about-feature-icon-top svg {
        width: 36px;
        height: 36px;
    }

    .about-feature-icon-bottom svg {
        width: 64px;
        height: 64px;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-main-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }

    .services-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        min-height: 200px;
        padding: 28px 24px;
    }

    .service-card-header {
        margin-bottom: 36px;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-image-box {
        height: 350px;
        order: -1;
    }

    .cta-image {
        width: 100%;
        height: 100%;
    }

    /* Testimonials */
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
        padding: 40px 28px;
        min-height: 320px;
    }

    .testimonial-text {
        font-size: 1.125rem;
        line-height: 1.4;
        padding-top: 40px;
    }

    .testimonial-icon {
        top: 24px;
        right: 24px;
        width: 32px;
        height: 32px;
    }

    .testimonial-footer {
        margin-top: 32px;
    }

    .testimonial-author {
        font-size: 1.125rem;
    }

    .testimonial-role {
        font-size: 0.875rem;
    }

    .testimonial-stars {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    /* Final CTA */
    .final-cta {
        padding: 60px 0;
    }

    .final-cta .container {
        padding: 40px 24px;
        border-radius: 0;
    }

    .final-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .final-cta-content .section-title {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-map {
        height: 350px;
    }

    .footer-info h3 {
        font-size: 2rem;
    }

    .footer-info-sections {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-location-info,
    .footer-contact-info {
        margin-top: 0;
    }

    .footer-bottom-content {
        text-align: center;
    }

    /* Contact Page Mobile */
    .contact-grid {
        display: block;
    }

    .contact-content {
        padding: 0;
        /* Remove vertical padding from section */
    }

    /* Remove specific side padding from container inside contact page to allow full width */
    .contact-content .container {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 40px 24px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 0;
        margin-bottom: 0;
        box-shadow: none;
        /* Optional: Cleaner look for edge-to-edge */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        /* Separator */
    }

    .contact-info-card {
        background: var(--white);
        margin-bottom: 0;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .about-main-title {
        font-size: 1.5rem;
    }

    .about-feature-card {
        padding: 24px;
    }

    .about-feature-stat {
        font-size: 3.5rem;
    }

    .about-feature-title {
        font-size: 1.25rem;
    }

    .hero-form-card {
        padding: 20px;
    }

    .form-card-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .final-cta-content .section-title {
        font-size: 2rem;
    }

    /* Contact Page Small Mobile */
    .contact-info-card,
    .contact-form-card {
        padding: 24px 20px;
    }

    .page-title {
        font-size: 2rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   COOKIE POPUP
   =================================== */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 400px;
    background: rgba(10, 0, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: rgba(120, 59, 250, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(3144%) hue-rotate(251deg) brightness(99%) contrast(98%);
}

.cookie-text h3 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-cookie-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookie-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-cookie-accept {
    background: var(--purple);
    border: none;
    color: var(--white);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookie-accept:hover {
    background: #5B2BC9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 59, 250, 0.3);
}

@media (max-width: 480px) {
    .cookie-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        padding: 24px;
    }

    .cookie-buttons {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PAGE LOADER
   =================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-purple);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 64px;
    height: 64px;
    z-index: 2;
    position: relative;
    animation: loaderLogo 2s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(120, 59, 250, 0.5));
}

.loader-pulse {
    display: none;
}

.loader-logo-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    z-index: 1;
    opacity: 0.6;
    animation: ghostRipple 2s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes loaderLogo {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(120, 59, 250, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(120, 59, 250, 0.8));
    }
}

@keyframes ghostRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}