/* =========================
   ROOT VARIABLES - MODERN 2026
========================= */
:root {
    /* Modern Light Palette */
    --primary: #f5f5f7;
    --primary-dark: #1a1a1a;
    --accent-1: #ff6b9d;
    /* Soft Pink */
    --accent-2: #c084fc;
    /* Purple */
    --accent-3: #00d9ff;
    /* Cyan */
    --accent-4: #ffa502;
    /* Orange */

    /* Background Gradients */
    --bg-gradient: linear-gradient(135deg, #f5f5f7 0%, #fffbfe 50%, #f0f4ff 100%);
    --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    --glow-gradient: linear-gradient(90deg, #ff6b9d, #c084fc, #00d9ff);

    --bg: #f5f5f7;
    --bg-light: #fafafa;
    --card: #ffffff;
    --surface: #f9f9fb;
    --surface-dark: #efefef;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 8px 32px rgba(255, 107, 157, 0.2);

    --max-width: 1280px;
}

/* =========================
   RESET & BASE
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

body {
    position: relative;
}

/* Animated Background - Breathing Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    z-index: -2;
    animation: breatheBackground 12s ease-in-out infinite;
}

@keyframes breatheBackground {

    0%,
    100% {
        filter: brightness(1) saturate(0.95);
    }

    50% {
        filter: brightness(1.02) saturate(1.05);
    }
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* =========================
   HEADER - ANIMATED & SMOOTH
========================= */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    padding: 1.2rem 0;
    background: rgba(245, 245, 247, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.site-header.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo - Glow on Hover */
.logo {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.logo::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--glow-gradient);
    transition: width 0.4s ease;
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 8px 24px rgba(255, 107, 157, 0.3);
}

.logo:hover::after {
    width: 100%;
}

/* =========================
   DESKTOP NAV - SMOOTH & GLOWING
========================= */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--glow-gradient);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-desktop a:hover {
    color: var(--accent-1);
    transform: translateY(-2px);
}

.nav-desktop a:hover::after {
    width: 100%;
    box-shadow: 0 0 12px rgba(255, 107, 157, 0.6);
}

/* =========================
   DESKTOP DROPDOWN - ANIMATED
========================= */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--card);
    min-width: 220px;
    border-radius: 14px;
    display: none;
    flex-direction: column;
    padding: 0.8rem 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-12px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(10px);
}

.dropdown-content a {
    padding: 0.8rem 1.2rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-content a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(255, 107, 157, 0.05);
    padding-left: 1.5rem;
}

.dropdown-content a:hover::before {
    transform: scaleY(1);
}

.dropdown.open .dropdown-content {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* =========================
   MOBILE HAMBURGER - ANIMATED
========================= */
#mobileToggle {
    display: none;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.4s ease;
}

#mobileToggle:hover {
    transform: translateY(-50%) scale(1.15) rotate(90deg);
}

/* =========================
   MOBILE NAV - SMOOTH SLIDE
========================= */
#mobileNav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(245, 245, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#mobileNav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#mobileNav a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

#mobileNav a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

#mobileNav a:hover {
    padding-left: 1rem;
    color: var(--accent-1);
}

#mobileNav a:hover::before {
    transform: scaleY(1);
}

.mobile-submenu-content {
    display: none;
    padding-left: 1rem;
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.mobile-submenu.open .mobile-submenu-content {
    display: block;
}

.mobile-submenu-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    padding: 1rem 0;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.mobile-submenu-toggle:hover {
    color: var(--accent-1);
    padding-left: 0.5rem;
}

body.nav-open {
    overflow: hidden;
}

/* =========================
   HERO - BACKGROUND IMAGE WITH OVERLAY
========================= */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: url('/assets/images/hero-bg.jpg') center/cover;
    background-attachment: fixed;
}

/* Multi-layer overlay effect */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(245, 245, 247, 0.5) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(240, 244, 255, 0.5) 100%),
        radial-gradient(circle at 30% 50%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(192, 132, 252, 0.1) 0%, transparent 50%);
    animation: floatGradient 15s ease-in-out infinite;
    pointer-events: none;
}
}

/* Animated shimmer effect */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes floatGradient {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -30px);
    }

    66% {
        transform: translate(-30px, 30px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    animation: slideInDown 0.8s ease-out;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.3s both;
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Curve - ANIMATED WAVE */
.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.hero-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-curve path {
    animation: waveSway 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05));
}

@keyframes waveSway {

    0%,
    100% {
        d: path('M0,40 C360,160 1080,-40 1440,40 L1440,120 L0,120 Z');
    }

    50% {
        d: path('M0,50 C360,140 1080,-20 1440,50 L1440,120 L0,120 Z');
    }
}
/* =========================
   LAZY LOADING OPTIMIZATION
========================= */

/* Lazy load all images */
img {
    loading: lazy;
    decoding: async;
}

/* For service card images - optimize transforms */
.service-card img {
    loading: lazy;
    decoding: async;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Optimize hero background */
.hero {
    background-attachment: scroll !important;
    /* Mobile: scroll is faster than fixed */
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll !important;
    }

    /* Disable parallax on mobile */
    body.parallax-disabled .hero {
        background-position: center !important;
    }
}

/* Image fade-in animation */
img[loading="lazy"] {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================
   SECTIONS - BREATHING & ALIVE
========================= */
.section {
    padding: 100px 0;
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.section>.container {
    background: transparent;
    padding: 0;
}

/* Section backgrounds */
.section-light {
    background: var(--bg-light);
}

.section-dark {
    background: linear-gradient(135deg, #f0f4ff 0%, #fef0f5 100%);
}

.section-white {
    background: var(--white);
}

/* Animated section divider */
.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.3), transparent);
    animation: expandWidth 2s ease-in-out infinite;
}

@keyframes expandWidth {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
}

/* =========================
   TRUST SIGNALS BAR - PREMIUM DESIGN WITH ANIMATIONS
========================= */

.trust-bar {
    background: linear-gradient(135deg,
            rgba(255, 107, 157, 0.08) 0%,
            rgba(192, 132, 252, 0.08) 50%,
            rgba(0, 217, 255, 0.08) 100%);
    padding: 3rem 1.5rem;
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 107, 157, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

/* Animated background effect for trust bar */
.trust-bar::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    animation: floatGradient 15s ease-in-out infinite;
    pointer-events: none;
}

.trust-bar::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.1) 0%, transparent 70%);
    animation: floatGradient 20s ease-in-out infinite reverse;
    pointer-events: none;
}

.trust-item {
    text-align: center;
    animation: slideInUp 0.6s ease-out;
    position: relative;
    z-index: 1;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
}

.trust-item:nth-child(1) {
    animation-delay: 0.1s;
}

.trust-item:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-item:nth-child(3) {
    animation-delay: 0.3s;
}

.trust-item:nth-child(4) {
    animation-delay: 0.4s;
}

.trust-item:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.trust-item .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.trust-item .number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 50%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0.5rem 0;
    animation: scaleIn 0.8s ease-out;
    word-break: break-word;
}

.trust-item .label {
    color: var(--text-light);
    font-weight: 700;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.trust-item:hover .label {
    color: var(--accent-1);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2.5rem 1.5rem;
    }

    .trust-item .number {
        font-size: 2.2rem;
    }

    .trust-item .label {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 1rem;
        margin: 1.5rem 0;
    }

    .trust-item {
        padding: 1.2rem 0.8rem;
    }

    .trust-item .icon {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }

    .trust-item .number {
        font-size: 1.8rem;
    }

    .trust-item .label {
        font-size: 0.8rem;
        letter-spacing: 0.2px;
    }
}

@media (max-width: 480px) {
    .trust-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }

    .trust-item {
        padding: 1rem 0.8rem;
    }

    .trust-item .icon {
        font-size: 1.6rem;
    }

    .trust-item .number {
        font-size: 1.6rem;
        margin: 0.4rem 0;
    }

    .trust-item .label {
        font-size: 0.75rem;
        font-weight: 600;
    }
}

/* ============================================================
   ABOUT SECTION - ENHANCED WITH BETTER TEXT EFFECTS
============================================================ */

.about-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    animation: floatIn 0.8s ease-out;
}

.about-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    animation: floatGradient 15s ease-in-out infinite;
    pointer-events: none;
}

.about-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: cardShimmer 3s infinite;
    pointer-events: none;
}

.about-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.about-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: spin 4s linear infinite;
    display: inline-block;
}

.about-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-word;
    overflow-wrap: break-word;
}

.about-text {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.about-content {
    position: relative;
    z-index: 2;
}

.why-trust-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-1) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-word;
    overflow-wrap: break-word;
}

.list-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-highlights li {
    padding: 1.2rem;
    padding-left: 3rem;
    position: relative;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInLeft 0.6s ease-out both;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.list-highlights li:nth-child(1) {
    animation-delay: 0.1s;
}

.list-highlights li:nth-child(2) {
    animation-delay: 0.2s;
}

.list-highlights li:nth-child(3) {
    animation-delay: 0.3s;
}

.list-highlights li:nth-child(4) {
    animation-delay: 0.4s;
}

.list-highlights li:nth-child(5) {
    animation-delay: 0.5s;
}

.list-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-1);
    font-weight: 900;
    font-size: 1.2rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    animation: scaleIn 0.5s ease-out;
}

.list-highlights li:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(192, 132, 252, 0.02) 100%);
    color: var(--accent-1);
    padding-left: 3.5rem;
}

.list-highlights li:hover::before {
    transform: translateY(-50%) scale(1.3) rotate(360deg);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(192, 132, 252, 0.2) 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card {
        padding: 2rem;
    }

    .about-icon {
        font-size: 2.5rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .why-trust-title {
        font-size: 1.5rem;
    }

    .list-highlights li {
        padding: 1rem;
        padding-left: 2.8rem;
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .list-highlights li::before {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        left: 0.6rem;
    }
}

@media (max-width: 480px) {
    .about-card {
        padding: 1.5rem;
    }

    .about-icon {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.3rem;
    }

    .why-trust-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .list-highlights li {
        padding: 0.9rem;
        padding-left: 2.5rem;
        font-size: 0.9rem;
    }

    .list-highlights li::before {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
        left: 0.4rem;
    }

    .list-highlights li:hover::before {
        transform: translateY(-50%) scale(1.2) rotate(360deg);
    }
}

/* ============================================================
   HOW IT WORKS TIMELINE - ENHANCED WITH TEXT EFFECTS
============================================================ */

.timeline-section {
    position: relative;
    padding: 5rem 0;
}

.timeline-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.timeline-header .section-pill {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border-radius: 999px;
    color: var(--accent-1);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 107, 157, 0.2);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 0.5px;
}

.timeline-header .title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

.timeline-header .subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    word-break: break-word;
    overflow-wrap: break-word;
}

.timeline-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

/* Central connecting line */
.timeline-container::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 107, 157, 0.3) 20%,
            rgba(255, 107, 157, 0.5) 50%,
            rgba(255, 107, 157, 0.3) 80%,
            transparent);
    z-index: 0;
    animation: expandLine 2s ease-out forwards;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

@keyframes expandLine {
    from {
        right: 100%;
    }

    to {
        right: 5%;
    }
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    animation: floatIn 0.8s ease-out;
    word-break: break-word;
    overflow-wrap: break-word;
}

.step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.3s;
}

.step-card:nth-child(4) {
    animation-delay: 0.4s;
}

.step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: cardShimmer 3s infinite;
    pointer-events: none;
}

.step-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    animation: floatGradient 15s ease-in-out infinite;
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-18px) scale(1.04);
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.4);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 50%, #00d9ff 100%);
    color: white;
    font-weight: 900;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
    animation: scaleIn 0.6s ease-out, float 3s ease-in-out infinite 0.2s;
}

.step-number::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b9d, #c084fc, #00d9ff);
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.step-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin: 1rem 0 0.8rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-1) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-word;
    overflow-wrap: break-word;
}

.step-card:hover h3 {
    -webkit-text-fill-color: var(--accent-1);
    transform: translateY(-3px);
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Timeline arrow between steps */
.step-card::before {
    content: "→";
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--accent-1);
    font-weight: 700;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
    z-index: 3;
}

.step-card:last-child::before {
    content: "";
    display: none;
}

@media (max-width: 1024px) {
    .timeline-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .timeline-container::before {
        display: none;
    }

    .step-card::before {
        display: none;
    }

    .timeline-header .title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 3rem 0;
    }

    .timeline-header {
        margin-bottom: 2.5rem;
    }

    .timeline-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }

    .timeline-header .section-pill {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }

    .timeline-header .title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .timeline-header .subtitle {
        font-size: 0.95rem;
    }

    .step-number {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .timeline-section {
        padding: 2rem 0;
    }

    .timeline-header {
        margin-bottom: 2rem;
    }

    .timeline-header .section-pill {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
        margin-bottom: 0.8rem;
    }

    .timeline-header .title {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .timeline-header .subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin: 0 auto 1.2rem;
    }

    .step-card {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }

    .step-card h3 {
        font-size: 1rem;
        margin: 0.8rem 0 0.6rem;
    }

    .step-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* =========================
   CARDS - FLOATING & GLOWING WITH MORE EFFECTS
========================= */
.card,
.service-card,
.form-card,
.testimonial-card,
.feature-card {
    background: var(--card-gradient);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: floatIn 0.8s ease-out;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Gradient border effect */
.card::before,
.service-card::before,
.form-card::before,
.testimonial-card::before,
.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.6s ease;
}

/* Inner shimmer effect */
.card::after,
.service-card::after,
.form-card::after,
.testimonial-card::after,
.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: cardShimmer 3s infinite;
    pointer-events: none;
}

@keyframes cardShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating animation */
.card,
.service-card,
.form-card,
.testimonial-card,
.feature-card {
    animation: float 3s ease-in-out infinite, floatIn 0.8s ease-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hover effect - Lift & Glow */
.card:hover,
.service-card:hover,
.form-card:hover,
.testimonial-card:hover,
.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-glow), 0 20px 50px rgba(192, 132, 252, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.card:hover::before,
.service-card:hover::before,
.form-card:hover::before,
.testimonial-card:hover::before,
.feature-card:hover::before {
    top: -30%;
    right: -30%;
}

/* Card content */
.card-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.icon-circle {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: spin 4s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

/* Service Cards */
.service-card {
    position: relative;
    z-index: 1;
}

.service-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    object-fit: cover;
    height: 200px;
    position: relative;
    z-index: 2;
}

.service-card:hover img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.15) contrast(1.1);
}

.service-card h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.service-card:hover h3 {
    color: var(--accent-1);
    transform: translateX(5px);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.service-icon {
    font-size: 2.5rem;
    margin: 1rem 0;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* Testimonial Cards */
.testimonial-card {
    text-align: center;
}

.testimonial-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--glow-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.testimonial-card .stars {
    color: var(--accent-4);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-card .quote {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: break-word;
}

.testimonial-card .author {
    color: var(--primary-dark);
    font-weight: 700;
    position: relative;
    z-index: 2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.testimonial-card .location {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2.5rem;
}

.feature-card .number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--glow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 2s ease-out;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    position: relative;
    z-index: 2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    word-break: break-word;
    overflow-wrap: break-word;
}

@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Accent colors for cards */
.service-card.pink {
    border-color: rgba(255, 107, 157, 0.2);
}

.service-card.purple {
    border-color: rgba(192, 132, 252, 0.2);
}

.service-card.rainbow {
    border-color: rgba(0, 217, 255, 0.2);
}

/* =========================
   GRID & LAYOUT
========================= */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 2.5rem;
    margin-top: 2rem;
}

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

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card,
    .service-card,
    .form-card,
    .testimonial-card,
    .feature-card {
        padding: 1.5rem;
    }
}

/* =========================
   BUTTONS - ANIMATED GRADIENT WITH RIPPLE
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 0;
}

.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    left: 0;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--glow-gradient);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.3);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 107, 157, 0.5);
    letter-spacing: 0.5px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-1);
    color: var(--accent-1);
    box-shadow: inset 0 0 0 0 var(--accent-1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-outline:hover {
    color: white;
    box-shadow: inset 0 0 0 3px var(--accent-1);
    transform: translateY(-3px);
}

.btn-xl {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-mini {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20ba60 100%);
    color: white;
}

/* =========================
   TEXT UTILITIES
========================= */
.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
    animation: slideInDown 0.8s ease-out;
    word-break: break-word;
    overflow-wrap: break-word;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out 0.2s both;
    word-break: break-word;
    overflow-wrap: break-word;
}

.pill {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border-radius: 999px;
    color: var(--accent-1);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 107, 157, 0.2);
    animation: pulse 2s ease-in-out infinite;
    word-break: break-word;
    overflow-wrap: break-word;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 107, 157, 0);
    }
}

.muted {
    color: var(--text-light);
}

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

.mb-8 {
    margin-bottom: 2rem;
}

.mt-8 {
    margin-top: 2rem;
}

.items-center {
    align-items: center;
}

/* =========================
   ACCORDION - FAQ SECTION
========================= */
.accordion {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--primary-dark);
    word-break: break-word;
    overflow-wrap: break-word;
}

.accordion-header:hover {
    background: rgba(255, 107, 157, 0.05);
}

.accordion-header .chevron {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1.2rem;
    color: var(--accent-1);
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-item.active .accordion-header .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(245, 245, 247, 0.5);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content-inner {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* =========================
   FOOTER - ENHANCED WITH LINKS
========================= */
.site-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, rgba(245, 245, 247, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%);
    animation: fadeInUp 1s ease-out;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--glow-gradient);
    transition: width 0.4s ease;
}

.footer-links a:hover {
    color: var(--accent-1);
    transform: translateY(-2px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-disclaimer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-disclaimer p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-actions {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
}

/* =========================
   FLOATING WHATSAPP - ENHANCED
========================= */
.floating-whatsapp {
    position: fixed;
    left: 1.5rem;
    right: auto;
    bottom: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #20ba60 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp::before {
    content: "";
    position: absolute;
    inset: -8px;
    background: linear-gradient(45deg, #25D366, #20ba60);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-ring 2s ease-in-out infinite;
    z-index: -1;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        right: 1rem;
        bottom: 1rem;
        width: 55px;
        height: 55px;
        font-size: 1rem;
    }
}

/* =========================
   ANIMATIONS - SCROLL TRIGGERED
========================= */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(255, 107, 157, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 107, 157, 0.8);
    }
}

/* =========================
   RESPONSIVE - MOBILE FIRST
========================= */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    #mobileToggle {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-desktop {
        gap: 1rem;
    }

    .hero-cta {
        gap: 0.8rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.4rem !important;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.2rem !important;
        line-height: 1.3;
    }

    h3 {
        font-size: 1rem !important;
        line-height: 1.3;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* =========================
   FONT FAMILY OVERRIDES
========================= */
.font-playfair {
    font-family: "Playfair Display", serif;
}

/* =========================
   UTILITY CLASSES
========================= */
.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.min-vh-100 {
    min-height: 100vh;
}

.gap-12 {
    gap: 3rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-6 {
    gap: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

p,
span,
div,
li,
a,
button {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
/* =========================
   HERO ALT - SECONDARY HERO SECTIONS
========================= */
.hero-alt {
    padding: 80px 0 60px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff 0%, #fef0f5 100%);
}

.hero-alt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(192, 132, 252, 0.08) 0%, transparent 50%);
    animation: floatGradient 15s ease-in-out infinite;
    pointer-events: none;
}

.hero-alt::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.hero-alt .hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-alt .section-title {
    font-size: 2.8rem;
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-alt .muted {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    .hero-alt {
        padding: 60px 0 40px;
        min-height: 60vh;
    }

    .hero-alt .section-title {
        font-size: 1.8rem;
    }

    .hero-alt .muted {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-alt {
        padding: 50px 0 30px;
        min-height: 50vh;
    }

    .hero-alt .section-title {
        font-size: 1.5rem;
    }

    .hero-alt .muted {
        font-size: 0.95rem;
    }
}

/* =========================
   SECTION SOFT - LIGHT TEXT SECTION
========================= */
.section-soft {
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.5) 0%, rgba(255, 240, 245, 0.5) 100%);
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-soft {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .section-soft {
        padding: 40px 0;
    }
}
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

/* =========================
   CONTENT NARROW - CONSTRAINED TEXT WIDTH
========================= */
.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-narrow p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .content-narrow {
        padding: 0 1rem;
    }

    .content-narrow p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-narrow {
        padding: 0 0.75rem;
    }

    .content-narrow p {
        font-size: 0.95rem;
    }
}

/* =========================
   RESULTS GRID - ACHIEVEMENTS/BENEFITS DISPLAY
========================= */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.result-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: floatIn 0.8s ease-out;
    word-break: break-word;
    overflow-wrap: break-word;
}

.result-item:nth-child(1) {
    animation-delay: 0.1s;
}

.result-item:nth-child(2) {
    animation-delay: 0.2s;
}

.result-item:nth-child(3) {
    animation-delay: 0.3s;
}

.result-item:nth-child(4) {
    animation-delay: 0.4s;
}

.result-item:nth-child(5) {
    animation-delay: 0.5s;
}

.result-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .result-item {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
}

/* =========================
   CARD COLOR VARIANTS
========================= */
.service-card.turquoise {
    border-color: rgba(0, 217, 255, 0.2);
}

.service-card.turquoise:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15), var(--shadow-glow);
}

.service-card.violet {
    border-color: rgba(192, 132, 252, 0.2);
}

.service-card.violet:hover {
    border-color: rgba(192, 132, 252, 0.4);
    box-shadow: 0 20px 50px rgba(192, 132, 252, 0.15), var(--shadow-glow);
}

.service-card.amber {
    border-color: rgba(255, 165, 2, 0.2);
}

.service-card.amber:hover {
    border-color: rgba(255, 165, 2, 0.4);
    box-shadow: 0 20px 50px rgba(255, 165, 2, 0.15), var(--shadow-glow);
}

/* =========================
   UTILITY TEXT CLASSES
========================= */
.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-10 {
    margin-top: 3rem;
}

.small-muted {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

.gap-8 {
    gap: 2rem;
}

@media (max-width: 480px) {
    .mb-4 {
        margin-bottom: 1rem;
    }

    .mt-4 {
        margin-top: 1rem;
    }

    .mt-10 {
        margin-top: 2rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}
.starfield {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
body {
    margin: 0;
    /* Remove default body margin */
    padding: 0;
    /* Remove default body padding */
}

.container {
    width: 90%;
    /* Takes most of screen width */
    max-width: 1400px;
    /* Doesn’t stretch too much on big screens */
    margin: 0 auto;
    /* Centers the content */
    padding-left: 15px;
    /* Small padding so text never touches the edge */
    padding-right: 15px;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(245, 245, 247, 0.5);
}

.accordion-content-inner {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: break-word;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--primary-dark);
    user-select: none;
}

.accordion-header:hover {
    background: rgba(255, 107, 157, 0.05);
}

.accordion-header .chevron {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1.2rem;
    color: var(--accent-1);
}

.accordion-item.active .accordion-header .chevron {
    transform: rotate(180deg);
}
/* Header logo circular style */
.site-header .logo {
    display: inline-block;
    width: 80px;
    /* Circle diameter */
    height: 80px;
    border-radius: 50%;
    /* Makes it round */
    overflow: hidden;
    border: 2px solid #e74c3c;
    /* Optional border */
    margin-left: 15px;
    /* Keeps it from sticking to the left edge */
}

.site-header .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Makes the image fit nicely */
    display: block;
}