/* ==========================================================================
   AXIO Apps Global Stylesheet - Modern Light Tech / SaaS Theme
   ========================================================================== */


/* --- Custom Properties / Design Tokens --- */

:root {
    /* Color Palette */
    --bg-main: #ffffff;
    --bg-secondary: #f8fafc;
    /* Slate 50 */
    --bg-card: #ffffff;
    --color-blue-primary: #2563eb;
    --color-blue-light: #0284c7;
    /* Darker cyan for light background readability */
    --color-blue-dark: #1e3a8a;
    --color-blue-glow: rgba(37, 99, 235, 0.06);
    --color-orange-primary: #ea580c;
    /* Darker orange for readability */
    --color-orange-light: #f97316;
    --color-orange-dark: #9a3412;
    --color-orange-glow: rgba(234, 88, 12, 0.06);
    --border-glass: rgba(15, 23, 42, 0.08);
    --border-glass-active: rgba(37, 99, 235, 0.25);
    --text-primary: #0f172a;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-muted: #64748b;
    /* Slate 500 */
    /* Typography */
    --font-headings: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    /* Spacing & Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --max-width: 1200px;
    /* Transition Defaults */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}


/* --- Base & Reset --- */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}


/* --- Ambient Glowing Accents --- */

.glow-accent {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.06;
    /* Lower opacity for subtle glow on white background */
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    top: -100px;
    left: -200px;
    background: radial-gradient(circle, var(--color-blue-primary), transparent 70%);
}

.glow-2 {
    top: 600px;
    right: -200px;
    background: radial-gradient(circle, var(--color-orange-primary), transparent 70%);
}


/* --- Layout Utilities --- */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

section {
    padding: 100px 0;
    position: relative;
}


/* --- Typography Styles --- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

.paragraph {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.accent-text {
    color: var(--color-blue-primary);
}

.text-orange {
    color: var(--color-orange-primary) !important;
}

.text-blue {
    color: var(--color-blue-primary) !important;
}


/* Gradient Text */

.gradient-text-blue {
    background: linear-gradient(135deg, var(--color-blue-light) 0%, var(--color-blue-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-orange {
    background: linear-gradient(135deg, var(--color-orange-light) 0%, var(--color-orange-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* --- Buttons & UI Elements --- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    /* Official WhatsApp green */
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    filter: brightness(1.05);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.07);
    border-color: var(--color-blue-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: var(--border-radius-md);
}


/* Badge */

.badge-container {
    margin-bottom: 20px;
}

.hero-badge {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: var(--color-blue-primary);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* --- Section Title Header --- */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-headings);
    color: var(--color-orange-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.text-left {
    text-align: left !important;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}


/* --- Glassmorphic Header / Navbar --- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-fast);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-fast);
}

.header.scrolled .header-container {
    height: 70px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.logo-text-foter {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--bg-main);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-blue-primary);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
}


/* Mobile Toggle Hamburger */

.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

@media (min-width: 992px) {
    .nav-menu {
        display: block;
    }
    .mobile-nav-toggle {
        display: none;
    }
}


/* Mobile Navigation Drawer */

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid var(--border-glass);
        z-index: 1050;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-normal);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .nav-link {
        font-size: 1.2rem;
    }
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* --- Hero Section --- */

.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
}

.hero-title {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.25rem;
    }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Hero Visual Graphics */

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-tech-illustration {
    position: relative;
    z-index: 5;
    width: 60%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-glow {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(37, 99, 235, 0.15));
    animation: slow-glow 4s ease-in-out infinite alternate;
}

.tech-sphere-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-glow 6s infinite ease-in-out;
}


/* Floating Badges */

.floating-tech-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    transition: var(--transition-normal);
}

.floating-tech-card:hover {
    border-color: var(--color-blue-primary);
    transform: scale(1.05);
}

.tech-icon {
    width: 42px;
    height: 42px;
    background: rgba(15, 23, 42, 0.03);
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

.tech-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.tech-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.tech-card-1 {
    top: 10%;
    right: 0%;
    animation: float 6s infinite ease-in-out;
}

.tech-card-2 {
    bottom: 15%;
    left: -5%;
    animation: float 6s infinite ease-in-out 3s;
}


/* --- About Section --- */

.about-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.about-content-wrapper {
    align-items: flex-start;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-blue-primary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.06);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}


/* --- Services Section --- */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 40px 32px;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.06);
}


/* Card Radial Hover Light */

.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--x, 0px) var(--y, 0px), rgba(37, 99, 235, 0.04), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.service-icon {
    font-size: 2.25rem;
    color: var(--color-blue-primary);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--color-orange-primary);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.service-bullets {
    list-style: none;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding-top: 16px;
}

.service-bullets li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-bullets li:last-child {
    margin-bottom: 0;
}


/* Customize colors for elements */

.service-card:nth-child(2) .service-icon {
    color: var(--color-orange-primary);
}

.service-card:nth-child(2):hover .service-icon {
    color: var(--color-blue-primary);
}

.service-card:nth-child(2) .service-card-glow {
    background: radial-gradient(600px circle at var(--x, 0px) var(--y, 0px), rgba(234, 88, 12, 0.04), transparent 40%);
}

.service-card:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.06);
}


/* --- CEO Section --- */

.ceo-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.ceo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    align-items: stretch;
    gap: 0;
}

.ceo-image-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: #f1f5f9;
    min-height: 550px;
    /* ← KEY FIX */
}

.ceo-frame-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.ceo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ← was "contain", this is the blur culprit */
    object-position: top center;
    transition: var(--transition-slow);
    z-index: 2;
    max-width: 100%;
    min-height: 550px;
    /* ← forces image to fill fully */
}

.ceo-image-wrapper:hover .ceo-img {
    transform: scale(1.03);
    min-height: 100%;
}

.ceo-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    z-index: 3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ceo-badge-name {
    display: block;
    font-weight: 700;
    font-family: var(--font-headings);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.ceo-badge-title {
    display: block;
    font-size: 0.75rem;
    color: var(--color-orange-primary);
    font-weight: 600;
}

.ceo-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .ceo-content {
        padding: 60px;
    }
}

.ceo-quote {
    position: relative;
    margin-top: 24px;
    margin-bottom: 32px;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(37, 99, 235, 0.06);
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: 1;
}

.quote-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: 6%;
    font-style: italic;
    position: relative;
    z-index: 9;
}

.ceo-sign-info {
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding-top: 24px;
}

.ceo-name {
    font-size: 1.2rem;
    font-weight: 700;
    padding-left: 10%;
}

.ceo-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 10%;
}


/* --- Contact Section --- */

.contact-section {
    overflow: hidden;
}

.contact-container {
    max-width: 900px;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent 50%), var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
    .contact-container {
        padding: 80px 60px;
    }
}

.contact-glow-accent {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.contact-action-wrapper {
    margin-bottom: 24px;
}

.contact-footer-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* --- Footer (Dark anchoring) --- */

.footer {
    background-color: #0b0f19;
    /* Anchored with premium dark midnight blue */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    color: #94a3b8;
    /* Light gray text for dark footer */
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--color-blue-primary);
    border-color: var(--color-blue-light);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-blue-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.copyright,
.designed-by {
    font-size: 0.8rem;
    color: #64748b;
}


/* --- Persistent Floating WhatsApp Widget --- */

.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition-normal);
}

.whatsapp-floating:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.7;
    z-index: -1;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-normal);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.whatsapp-floating:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}


/* --- Scroll Animation Reveals --- */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.delay-2 {
    transition-delay: 0.15s;
}

.delay-3 {
    transition-delay: 0.3s;
}


/* --- Keyframe Animations --- */

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes ping {
    75%,
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes slow-glow {
    0% {
        filter: drop-shadow(0 4px 10px rgba(37, 99, 235, 0.12));
    }
    100% {
        filter: drop-shadow(0 4px 24px rgba(37, 99, 235, 0.28));
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.05;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.12;
    }
}

.full-width-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 70px;
}

.full-width {
    width: 100%;
    max-width: 900px;
    text-align: left;
}

.full-width .section-title {
    margin: 20px 0;
    font-size: 32px;
    line-height: 1.1;
}

.full-width .quote-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5c667a;
    font-style: italic;
}

.full-width .section-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff5b1f;
    font-weight: 700;
}
