@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    /* EtheryAI Inspired Colors */
    --primary-cyan: #7838C6; /* Shifted cyan to Indigo for the brand accent */
    --primary-purple: #9d50bb;
    --secondary-magenta: #e01cd5;

    /* Theme Colors */
    --bg-main: #F3F1F8; /* Light lavander background */
    --bg-card: rgba(255, 255, 255, 0.6); /* Glass card */
    --text-main: #2D1B5E; /* Deep purple/indigo for text and headings */
    --text-muted: #5D547F; /* Soft violet for body text */
    --glass-border: rgba(255, 255, 255, 0.8); /* Brighter border for glass */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7838C6, #9d50bb);
    --gradient-glow: radial-gradient(circle, rgba(157, 80, 187, 0.15) 0%, transparent 60%);
    --container-max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E"),
        radial-gradient(circle at 10% 20%, rgba(120, 56, 198, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(157, 80, 187, 0.1) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Dynamic Background Blobs */
.bg-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    animation: move 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.blob-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: #7838C6;
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%; right: -10%;
    width: 600px; height: 600px;
    background: #e01cd5;
    animation-delay: -5s;
}

.blob-3 {
    top: 40%; left: 60%;
    width: 400px; height: 400px;
    background: #00ecff;
    animation-delay: -10s;
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -50px) scale(1.2); }
    66% { transform: translate(-50px, 100px) scale(0.8); }
    100% { transform: translate(-100px, -100px) scale(1.1); }
}

.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    background: var(--gradient-primary);
    animation: move-glow 20s infinite alternate;
}

#glow-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -5%;
    animation-duration: 25s;
}

#glow-2 {
    width: 600px;
    height: 600px;
    bottom: -15%;
    right: -10%;
    animation-delay: -5s;
}

#glow-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 50%;
    opacity: 0.1;
    animation-duration: 15s;
}

@keyframes move-glow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.step-num {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.step:hover .step-num {
    opacity: 1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.profile-card:hover .profile-caption {
    opacity: 1;
    transform: translateY(0);
}

.profile-card:hover .profile-caption p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* Scroll Reveal Base */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    background: var(--gradient-primary);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px; /* Pill shape */
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(120, 56, 198, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: 0 8px 24px rgba(120, 56, 198, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 32px rgba(120, 56, 198, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    border: 1px solid transparent;
}

.main-header.scrolled {
    top: 20px;
    width: 90%;
    max-width: 1000px;
    padding: 0.5rem 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(120, 56, 198, 0.1);
}

.main-header.scrolled .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.brand-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: invert(1) hue-rotate(180deg) brightness(0.5); /* Make logo dark to be legible on light background */
    transition: all 0.4s ease;
}

.main-header.scrolled .brand-logo-img {
    height: 48px;
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.brand-logo-img-small {
    height: 80px;
    /* Increased from 35px */
    width: auto;
    object-fit: contain;
}

.logo-accent {
    color: var(--primary-cyan);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 180px;
    padding-bottom: 150px;
    position: relative;
    overflow: hidden;
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, transparent, var(--bg-main));
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    flex: none;
    width: 100%;
    max-width: 900px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-main);
    margin: 0 auto 3rem;
    max-width: 800px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
}

.hero-visual {
    display: none;
}

.orb-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    filter: blur(50px);
    animation: pulse 8s infinite alternate;
}

.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 60%);
    filter: blur(40px);
    animation: pulse 6s infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Services */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 2rem; /* Larger border-radius */
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: white;
    border-color: rgba(120, 56, 198, 0.2);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(120, 56, 198, 0.1);
}

.service-card.active {
    background: rgba(157, 80, 187, 0.05);
    border-color: var(--primary-purple);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Agents Gallery Section */
.agents-gallery-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(157, 80, 187, 0.05) 0%, transparent 70%);
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.agent-card {
    position: relative;
    border-radius: 2.5rem;
    aspect-ratio: 4/5;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
}

.agent-card:hover {
    transform: translateY(-15px);
    border-color: rgba(120, 56, 198, 0.2);
    box-shadow: 0 30px 60px rgba(120, 56, 198, 0.15);
}

.agent-visual-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Removed padding to fulfill full-bleed request */
}

.agent-illustration {
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floating-bot 6s ease-in-out infinite;
    z-index: 1;
}

.agent-card:hover .agent-illustration {
    transform: scale(1.05);
    /* Reduced scale to keep image within card bounds nicely */
}

.agent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the card */
    border-radius: 2.5rem;
    /* Match card radius exactly */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 0 20px rgba(0, 236, 255, 0.25));
}

@keyframes floating-bot {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-8px) rotate(0.3deg);
        /* Subtle float for full-bleed images */
    }
}

/* Info Overlay */
.agent-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.8) 40%,
            rgba(255, 255, 255, 0) 100%);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    /* Use visibility + opacity for better control */
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(4px);
    z-index: 10;
    /* Highest z-index to be on top of everything */
}

.agent-card:hover .agent-info-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.agent-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(120, 56, 198, 0.3);
}

.agent-info-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main) !important;
    font-weight: 700;
}

.agent-info-overlay p {
    font-size: 1.1rem;
    color: var(--text-muted) !important;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 90%;
}

.bot-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    filter: blur(60px);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: opacity 0.5s ease;
}

.agent-card:hover .bot-glow {
    opacity: 0.4;
}

/* Process */
.process {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.step {
    flex: 1;
    position: relative;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.step:hover {
    background: white;
    border-color: rgba(120, 56, 198, 0.2);
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(120, 56, 198, 0.1);
}

.step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 236, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.step:hover::after {
    opacity: 1;
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.05;
    font-family: 'Outfit', sans-serif;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Contact form */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    border-radius: 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 40px rgba(120, 56, 198, 0.05);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(120, 56, 198, 0.15);
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 2.5rem;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-cyan), transparent, var(--primary-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-form h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper.full-width {
    margin-bottom: 1.5rem;
}

.input-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.5;
    transition: all 0.3s ease;
    pointer-events: none;
}

textarea~.input-icon {
    top: 1.5rem;
    transform: none;
}

input:focus~.input-icon,
textarea:focus~.input-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1.2) rotate(10deg);
}

textarea:focus~.input-icon {
    transform: scale(1.2) rotate(10deg);
}

input,
select,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 3.5rem 1.2rem 1.2rem;
    border-radius: 2rem;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:hover,
textarea:hover {
    background: white;
    border-color: rgba(120, 56, 198, 0.2);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: white;
    box-shadow: 0 0 20px rgba(120, 56, 198, 0.15);
}

::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.contact-form button {
    width: 100%;
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1.3rem;
    border-radius: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.4);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-info {
    max-width: 300px;
}

.footer-info p {
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.contact-info-footer {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-cyan);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: white;
    color: var(--primary-cyan);
    border-color: rgba(120, 56, 198, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(120, 56, 198, 0.15);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    padding: 3rem;
    border-radius: 2rem;
    position: relative;
    overflow-y: auto;
    margin: 2rem;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    color: var(--primary-cyan);
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    margin-top: 2rem;
    text-align: left;
}

.modal-body h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-cyan);
}

.modal-body p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.modal-body a {
    color: var(--primary-purple);
    text-decoration: none;
}

.about-brand-text {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
}

.about-brand-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.payment-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
}

.payment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(120, 56, 198, 0.2);
    background: white;
    box-shadow: 0 15px 30px rgba(120, 56, 198, 0.1);
}

.icon-container {
    width: 60px;
    height: 60px;
    background: rgba(120, 56, 198, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.2rem;
}

.payment-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-cyan);
}

.payment-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.payment-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* About Us Section */
.about-us {
    padding: 100px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-top: 1rem;
}

.about-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
}

.about-visual {
    width: 100%;
}

.about-info {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
}

.about-intro {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-main);
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-card {
    padding: 0.5rem;
    border-radius: 2rem;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-card);
    position: relative;
}

.profile-image-container {
    width: 100%;
    flex: 1;
    background: #c3d948;
    /* Matching the yellow-green background from the photo */
    border-radius: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 0.2);
}

.profile-placeholder svg {
    width: 50%;
    height: 50%;
}

.profile-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem;
    text-align: center;
    background: linear-gradient(transparent, rgba(3, 3, 3, 0.9));
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-card:hover .profile-caption {
    transform: translateY(0);
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    font-family: 'Outfit', sans-serif;
}

.ceo-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 1;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-bottom-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
    text-align: center;
}

.about-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-main);
}

.about-methodology {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.method-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--glass-border);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    backdrop-filter: blur(10px);
}

.method-item .emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.consultancy-note {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-cyan);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--bg-card);
    padding: 1rem 1.8rem;
    border-radius: 50px; /* Pill shape for benefits */
    border: 1px solid var(--glass-border);
    display: flex;
    flex: 0 1 auto;
    gap: 1rem;
    align-items: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(120, 56, 198, 0.05);
}

.benefit-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

.about-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    width: 100%;
}

.about-actions .btn {
    min-width: 200px;
}

.payment-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .container {
        padding: 0 1.5rem;
    }

    .spotlight-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        display: none;
    }

    .services-grid,
    .portfolio-grid,
    .payments-grid,
    .form-grid,
    .agents-grid,
    .profiles-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .about-methodology,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass-border);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .process-steps::before {
        display: none;
    }

    .contact-card {
        padding: 2rem;
    }

    .input-group {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero p {
        margin: 0 auto 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .contact-form h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .about-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .about-actions .btn {
        width: 100%;
    }
}