@font-face {
    font-family: 'Clash Grotesk Variable';
    src: url('fonts/ClashGrotesk-Variable.woff2') format('woff2'),
        url('fonts/ClashGrotesk-Variable.woff') format('woff'),
        url('fonts/ClashGrotesk-Variable.ttf') format('truetype');
    font-weight: 200 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Grotesk';
    src: url('fonts/ClashGrotesk-Regular.woff2') format('woff2'),
        url('fonts/ClashGrotesk-Regular.woff') format('woff'),
        url('fonts/ClashGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Grotesk';
    src: url('fonts/ClashGrotesk-Medium.woff2') format('woff2'),
        url('fonts/ClashGrotesk-Medium.woff') format('woff'),
        url('fonts/ClashGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Grotesk';
    src: url('fonts/ClashGrotesk-Semibold.woff2') format('woff2'),
        url('fonts/ClashGrotesk-Semibold.woff') format('woff'),
        url('fonts/ClashGrotesk-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Grotesk';
    src: url('fonts/ClashGrotesk-Bold.woff2') format('woff2'),
        url('fonts/ClashGrotesk-Bold.woff') format('woff'),
        url('fonts/ClashGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

:root {
    --bg-primary: #0E1A2B;
    --bg-secondary: #1C2F4A;
    --text-primary: #F7F9FC;
    --accent-primary: #4F6BFF;
    --accent-secondary: #FF6B5E;
    --text-muted: #9FB0C9;

    --font-main: 'Clash Grotesk Variable', 'Clash Grotesk', sans-serif;
    --transition: all 0.3s ease;

    /* Golden Ratio Typographic Scale (1.618) */
    --text-base: 1rem;
    --text-md: clamp(1.2rem, 1.5vw, 1.618rem);
    /* For h3 */
    --text-lg: clamp(1.618rem, 3vw, 2.618rem);
    /* For h2 */
    --text-xl: clamp(2.618rem, 5vw, 4.236rem);
    /* For h1 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 300;
    cursor: none;
}

a,
button,
.service-row,
input,
select,
textarea,
.process-item,
.nav-links a {
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1 {
    font-size: var(--text-xl);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-lg);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-md);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.highlight {
    color: var(--accent-secondary);
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 400;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.btn-primary {
    background-color: var(--accent-secondary);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    /* Glow effect with 4F6BFF */
    background-color: var(--accent-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
}

.btn-secondary:hover {
    color: var(--accent-primary);
}

.btn-outline {
    border: 1px solid var(--text-muted);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(28, 47, 74, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.split-text {
    overflow: hidden;
}

.split-text .word {
    overflow: hidden;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
    transform-origin: bottom;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-primary);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(159, 176, 201, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(159, 176, 201, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
}

.hero-content h1 {
    font-size: var(--text-xl);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-content p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    max-width: 900px;
}

.hero-benefits {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-primary) !important;
    margin-bottom: 2.5rem !important;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-benefits .separator {
    color: var(--accent-secondary);
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.hero-btns .fa-arrow-right {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.btn-primary:hover .fa-arrow-right {
    transform: translateX(5px);
}


/* Hero Strip */
.hero-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-primary);
    padding: 1rem 0;
    transform: rotate(-2deg) scale(1.05) translateY(10px);
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-strip-track {
    display: flex;
    gap: 3rem;
    animation: scroll-strip 20s linear infinite;
    white-space: nowrap;
}

.strip-item {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.strip-item span {
    color: var(--accent-secondary);
    font-size: 1.5rem;
}

@keyframes scroll-strip {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

/* Process Framework */
.process {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.process-item {
    padding: 4rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.process-item:last-child {
    border-right: none;
}

.process-number {
    font-size: var(--text-xl);
    color: rgba(0, 0, 0, 0.1);
    font-weight: 200;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-item h3 {
    font-size: var(--text-lg);
    font-weight: 400;
    color: #111111;
    margin-bottom: 1rem;
}

.process-item h4 {
    font-size: var(--text-md);
    font-weight: 400;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.process-item p {
    font-size: 1.05rem;
    font-style: italic;
    color: #666666;
    line-height: 1.6;
}

.process .section-header h2,
.process .section-header p {
    color: #111111;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1A1F35 0%, #151829 100%);
    text-align: center;
    position: relative;
    z-index: 5;
}

.stats-header {
    font-size: 0.9rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 4rem;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 500;
    color: var(--accent-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
}

/* Services */
.services {
    padding: 8rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services .section-header h2,
.services .section-header p {
    color: #111111;
}

.services-list {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #111111;
    transition: background-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    position: relative;
}

/* Z-index stacking so cards correctly unfold from behind the ones above */
.services .section-header {
    position: relative;
    z-index: 20;
    background-color: #ffffff;
}

.service-row:nth-child(1) {
    z-index: 10;
}

.service-row:nth-child(2) {
    z-index: 9;
}

.service-row:nth-child(3) {
    z-index: 8;
}

.service-row:nth-child(4) {
    z-index: 7;
}

.service-row:nth-child(5) {
    z-index: 6;
}

.service-row:nth-child(6) {
    z-index: 5;
}

/* Base states for cards before GSAP animates them */
.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #111111;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    /* Remove transform/opacity here since GSAP handles initial state */
}

.service-row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-row:hover {
    background-color: #f8f9fa;
}

.sr-title {
    flex: 1;
}

.sr-title h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    color: #111111;
    transition: color 0.4s ease;
}

.sr-content {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-row:hover .sr-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sr-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555555;
    max-width: 400px;
    margin: 0;
}

.sr-content .btn-outline {
    border-color: #FF6B5E;
    color: #FF6B5E;
}

.sr-content .btn-outline:hover {
    background-color: #FF6B5E;
    color: #ffffff;
    border-color: #FF6B5E;
}

.sr-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.sr-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-row:hover .sr-bg {
    opacity: 0.4;
}

.sr-title,
.sr-content,
.sr-arrow {
    position: relative;
    z-index: 1;
    transition: text-shadow 0.4s ease;
}

.service-row:hover .sr-title h3,
.service-row:hover .sr-content p,
.service-row:hover .sr-arrow i {
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.8);
    color: #111111;
}

.sr-arrow i {
    font-size: 2rem;
    color: #111111;
    transition: transform 0.4s ease;
}

.service-row:hover .sr-arrow i {
    transform: translateX(10px) rotate(-45deg);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-primary), #1A2235);
}

.why-choose-us .section-header {
    max-width: 1200px;
}

.why-choose-us .section-header h2 {
    font-size: clamp(1.8rem, 4vw, var(--text-lg));
    font-weight: 500;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(159, 176, 201, 0.15);
    border-radius: 8px;
    background-color: transparent;
}

.why-card {
    padding: 4rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(159, 176, 201, 0.15);
    border-bottom: 1px solid rgba(159, 176, 201, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Remove borders on edges to keep the grid clean */
.why-card:nth-child(3n) {
    border-right: none;
}

.why-card:nth-last-child(-n+3) {
    border-bottom: none;
}

/* Hover Gradient Effect */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 94, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card i {
    font-size: 1.8rem;
    color: var(--accent-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.why-card p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-primary), rgba(28, 47, 74, 0.3));
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.image-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.image-placeholder:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-secondary);
    padding: 2rem;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255, 107, 94, 0.4);
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 400;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(159, 176, 201, 0.2);
}

.stat-item h4 {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    position: relative;
    background-color: var(--bg-primary);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding-bottom: 5rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
    margin-bottom: 2.5rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-details i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    color: var(--text-primary);
}

.social-links a:hover {
    background-color: var(--accent-primary);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--bg-secondary);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-primary);
    border: 1px solid rgba(159, 176, 201, 0.2);
    color: var(--text-primary);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(79, 107, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(159, 176, 201, 0.5);
}

/* New Global Footer */
.new-footer {
    background-color: #1a1a1e;
    color: #a0a5b1;
    padding: 3rem 0 1rem 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 25px;
    width: auto;
}

.footer-desc {
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 95%;
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #a0a5b1;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: #FF5555;
    color: #FF5555;
    background-color: rgba(255, 85, 85, 0.05);
    transform: translateY(-2px);
}

.footer-heading {
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: #a0a5b1;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-contact-list .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    background-color: rgba(255, 85, 85, 0.05);
    border: 1px solid rgba(255, 85, 85, 0.1);
    color: #FF5555;
    border-radius: 6px;
    flex-shrink: 0;
}

.footer-contact-list .text {
    line-height: 1.5;
    color: #a0a5b1;
    font-size: 0.8rem;
}

.footer-contact-list .sub-text {
    font-size: 0.75rem;
    color: #7a7f8a;
    display: block;
    margin-top: 0.2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: #7a7f8a;
    font-size: 0.8rem;
}

.copyright .highlight-text {
    color: #FF5555;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #7a7f8a;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {

    .hero-container,
    .about-container,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .sr-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .sr-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .sr-arrow {
        align-self: flex-end;
        margin-left: 0;
    }

    .process-item {
        border-right: none;
        border-bottom: 1px solid rgba(159, 176, 201, 0.2);
    }

    .process-item:last-child {
        border-bottom: none;
    }

    .hero-content {
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card:nth-child(3n) {
        border-right: 1px solid rgba(159, 176, 201, 0.15);
        /* Restore default */
    }

    .why-card:nth-child(2n) {
        border-right: none;
    }

    .why-card:nth-last-child(-n+3) {
        border-bottom: 1px solid rgba(159, 176, 201, 0.15);
        /* Restore default */
    }

    .why-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card,
    .why-card:nth-child(2n),
    .why-card:nth-child(3n) {
        border-right: none;
        border-bottom: 1px solid rgba(159, 176, 201, 0.15);
    }

    .why-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-secondary);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
}

/* Split Layout Contact Section */
.contact-split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.contact-left-panel,
.contact-right-panel {
    flex: 1 1 50%;
    padding: 6rem 5rem;
    box-sizing: border-box;
}

.contact-left-panel {
    background-color: #111111;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-right-panel {
    background-color: #fafafa;
    color: #333333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-text-content {
    max-width: 550px;
    margin: 0 auto;
}

.contact-left-panel .badge {
    display: inline-flex;
    align-items: center;
    color: #FF5555;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 85, 85, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.contact-left-panel .badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #FF5555;
    border-radius: 50%;
    margin-right: 10px;
}

.contact-left-panel h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #a0a5b1;
    line-height: 1.6;
    margin-bottom: 3rem;
    border-left: 2px solid #FF5555;
    padding-left: 1.5rem;
}

.contact-checklist h4 {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.contact-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.contact-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.contact-checklist .check-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 85, 85, 0.1);
    border: 1px solid #FF5555;
    color: #FF5555;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-checklist p {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.contact-footer-text p {
    font-size: 0.95rem;
    color: #7a7f8a;
    line-height: 1.6;
}

.contact-footer-text strong {
    color: #ffffff;
    font-weight: 500;
}

.form-container {
    max-width: 550px;
    margin: 0 auto;
}

.form-heading {
    font-size: 3rem;
    line-height: 1.1;
    color: #111;
    margin-bottom: 1rem;
}

.form-subheading {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.rd-contact-form .form-row {
    display: flex;
    gap: 1.5rem;
}

.rd-contact-form .input-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.rd-contact-form .input-group.full-width {
    flex: 0 0 100%;
}

.rd-contact-form label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.rd-contact-form input[type="text"],
.rd-contact-form input[type="email"],
.rd-contact-form select,
.rd-contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background-color: #f3f4f6;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    font-family: inherit;
    transition: all 0.3s;
    outline: none;
    box-sizing: border-box;
}

.rd-contact-form input:focus,
.rd-contact-form select:focus,
.rd-contact-form textarea:focus {
    background-color: #ffffff;
    border-color: #111;
}

.rd-contact-form .checkbox-group {
    margin: 1rem 0 2rem 0;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f3f4f6;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.2s;
}

.custom-checkbox:hover input~.checkmark {
    background-color: #e5e7eb;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #111;
    border-color: #111;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid transparent;
    border-right-color: white;
    border-bottom-color: white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox .label-text {
    padding-left: 32px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
}

.custom-checkbox .privacy-link {
    color: #FF5555;
    text-decoration: none;
}

.submit-btn {
    background-color: #111;
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #FF5555;
}

@media (max-width: 992px) {

    .contact-left-panel,
    .contact-right-panel {
        flex: 1 1 100%;
        padding: 4rem 2rem;
    }

    .contact-left-panel h2,
    .form-heading {
        font-size: 2.5rem;
    }

    .rd-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* RIVORA Premium Bento Grid Section */
.rivora-values-section {
    background-color: #0b111a;
    padding: 8rem 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background Ambient Glows */
.values-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.values-bg-glow.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 85, 85, 0.15) 0%, transparent 70%);
    top: -100px;
    left: -200px;
}

.values-bg-glow.glow-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(50, 100, 255, 0.1) 0%, transparent 70%);
    bottom: -300px;
    right: -200px;
}

.rivora-values-section .section-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.rivora-values-section .stats-header {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 3px;
    font-size: 0.85rem;
}

.rivora-values-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 5rem;
    letter-spacing: -0.5px;
}

.rivora-values-section h2 .highlight {
    color: #FF5555;
    font-weight: 600;
    background: linear-gradient(90deg, #FF5555, #ff8888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Bento Grid */
.values-bento-container {
    display: grid;
    /* 4 columns for the asymmetric layout on desktop */
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
    position: relative;
}

/* Glassmorphism Cards */
.bento-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Asymmetric Span Classes */
.bento-wide {
    grid-column: span 2;
}

.bento-square {
    grid-column: span 1;
}

/* Massive Typographic Watermarks */
.watermark {
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 14rem;
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    transition: all 0.6s ease;
    user-select: none;
    pointer-events: none;
}

.bento-wide .watermark {
    font-size: 16rem;
    right: 30px;
    top: -30px;
}

/* Content inside card */
.bento-content {
    position: relative;
    z-index: 2;
}

.bento-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}

.bento-wide .bento-content h3 {
    font-size: 2rem;
}

.bento-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
    transition: color 0.4s ease;
}

/* Premium Hover Interactions */
.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 85, 85, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 85, 85, 0.1) inset;
}

.bento-card:hover .watermark {
    color: rgba(255, 85, 85, 0.1);
    transform: scale(1.05) translate(-10px, 10px);
}

.bento-card:hover .bento-content h3 {
    color: #FF5555;
}

.bento-card:hover .bento-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Subtle Gradient overlay element */
.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.bento-card:hover::after {
    opacity: 1;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .rivora-values-section h2 {
        font-size: 2.5rem;
    }

    .values-bento-container {
        /* Drop to 2 columns on tablet */
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(240px, auto);
    }

    .bento-wide {
        /* Wide cards span both columns */
        grid-column: span 2;
    }

    .bento-square {
        /* Square cards sit 50/50 side by side */
        grid-column: span 1;
    }

    .watermark {
        font-size: 10rem;
        top: 0px;
    }

    .bento-wide .watermark {
        font-size: 12rem;
    }
}

@media (max-width: 768px) {
    .rivora-values-section {
        padding: 5rem 1.5rem;
    }

    .values-bg-glow {
        display: none;
        /* Strip out heavy blur filters on mobile */
    }

    .rivora-values-section h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .values-bento-container {
        /* Stack everything into 1 column */
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .bento-wide,
    .bento-square {
        /* Reset span entirely */
        grid-column: span 1 !important;
        padding: 2.5rem 2rem;
        min-height: 200px;
    }

    .watermark {
        font-size: 8rem;
        top: 50%;
        transform: translateY(-50%);
        right: -10px;
    }

    .bento-card:hover .watermark {
        transform: translateY(-50%) translate(-10px, 0);
    }

    .bento-content h3 {
        font-size: 1.4rem;
    }

    .bento-wide .bento-content h3 {
        font-size: 1.4rem;
    }

    .bento-content p {
        font-size: 1rem;
        max-width: 100%;
    }
}

/* Learning Program Dark Section */
.lp-dark-section {
    background-color: #383b43;
    /* Slate grey background */
    padding: 8rem 0;
    color: #ffffff;
    font-family: var(--font-main);
}

.lp-dark-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.lp-dark-kicker {
    display: block;
    color: #888d98;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.lp-dark-heading {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: serif;
}

.lp-dark-heading .text-highlight {
    color: #e56b55;
}

.lp-dark-subheading {
    font-size: 1.15rem;
    color: #b0b4bd;
    line-height: 1.6;
}

.lp-audience-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #d1d4db;
    background: transparent;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.lp-features-grid-wrapper {
    max-width: 1000px;
    margin: 0 auto 5rem auto;
    /* This creates the thin border effect internally */
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    /* The gap shows the grid wrapper background acting as borders */
}

.lp-feature-card {
    background-color: #3f434d;
    /* Slightly lighter than the main bg */
    padding: 3rem 2.5rem;
    transition: background-color 0.3s ease;
}

.lp-feature-card:hover {
    background-color: #454954;
}

.lp-feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lp-feature-icon {
    font-size: 1.2rem;
}

.lp-feature-card h3 {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.lp-feature-card p {
    font-size: 0.95rem;
    color: #b0b4bd;
    line-height: 1.6;
    margin: 0;
}

.lp-dark-action {
    text-align: center;
}

.lp-register-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.lp-register-btn:hover {
    background-color: #ffffff;
    color: #383b43;
}

.lp-limited-seats {
    font-size: 0.85rem;
    color: #797d87;
}

@media (max-width: 992px) {
    .lp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-dark-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .lp-dark-section {
        padding: 5rem 0;
    }

    .lp-features-grid {
        grid-template-columns: 1fr;
    }

    .lp-dark-heading {
        font-size: 2.2rem;
    }

    .lp-feature-card {
        padding: 2.5rem 1.5rem;
    }

    .lp-audience-badges {
        margin-bottom: 3rem;
    }
}

/* Custom Cursor Variables */
.custom-cursor {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.3s ease, border-width 0.3s ease;
    mix-blend-mode: exclusion;
}

.custom-cursor.hovering {
    width: 50px;
    height: 50px;
    background-color: var(--accent-secondary);
    border-width: 0px;
    opacity: 0.6;
}

/* Hide fallback on small tactile devices without native hover */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none;
    }

    body,
    a,
    button,
    .service-row,
    input,
    select,
    textarea,
    .process-item,
    .nav-links a {
        cursor: auto !important;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-col {
        margin-bottom: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    text-align: center;
}

.team-section .section-header {
    margin-bottom: 4rem;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.team-section .text-style-overline {
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
    color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-member {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    margin-bottom: 1rem;
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.team-member p.designation {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

@media screen and (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Our Client Section */
.our-client-section {
    background-color: #FBD9D9;
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.our-client-section .section-header h2 {
    color: #111111;
    margin-bottom: 2rem;
}

.client-strips-container {
    position: relative;
    width: 100%;
    margin: 4rem 0 2rem 0;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    overflow: hidden;
}

.client-strip {
    position: relative;
    left: -5%;
    width: 110%;
    background-color: #000000;
    padding: 1rem 0;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.strip-1 {
    transform: rotate(3deg);
}

.strip-2 {
    transform: rotate(0deg);
    z-index: 11;
}

.strip-3 {
    transform: rotate(-3deg);
}

.client-strip-track {
    display: flex;
    gap: 3rem;
    animation: scroll-strip-client 40s linear infinite;
    white-space: nowrap;
}

.client-strip-track.reverse-track {
    animation-direction: reverse;
}

.client-item {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.client-item span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.7;
}

@keyframes scroll-strip-client {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-contact:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.fc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.fc-call {
    color: #007AFF;
    /* iOS Blue */
}

.fc-whatsapp {
    color: #25D366;
    /* WhatsApp Green */
}

.fc-instagram {
    color: #E1306C;
    /* Instagram Pink */
}

/* Icon specific colors for hover */
.fc-call:hover {
    background: #007AFF;
    /* iOS Blue */
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.4);
}

.fc-whatsapp:hover {
    background: #25D366;
    /* WhatsApp Green */
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.fc-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.fc-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    pointer-events: none;
}

.fc-text::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 5px 5px 5px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
}

.fc-btn:hover .fc-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mobile Responsiveness */
@media screen and (max-width: 480px) {
    .floating-contact {
        bottom: 1.5rem;
        padding: 0.6rem 1.2rem;
        gap: 1rem;
    }

    .fc-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}