/* ============================================
   CRAWL LANE - Modern Website Styles
   Built with Bootstrap 5.3 + Custom CSS
   ============================================ */

/* ----- CSS VARIABLES ----- */
:root {
    --cl-primary: #e80566;
    --cl-primary-dark: #c70456;
    --cl-primary-light: #ff2d7f;
    --cl-secondary: #1a1a2e;
    --cl-dark: #0f0f23;
    --cl-purple: #6c5ce7;
    --cl-green: #00b894;
    --cl-orange: #f39c12;
    --cl-blue: #0984e3;
    --cl-gradient: linear-gradient(135deg, #e80566 0%, #6c5ce7 100%);
    --cl-gradient-2: linear-gradient(135deg, #1a1a2e 0%, #e80566 100%);
    --cl-body-font: 'Inter', sans-serif;
    --cl-heading-font: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --cl-radius: 12px;
    --cl-radius-lg: 20px;
    --cl-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --cl-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --cl-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--cl-body-font);
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--cl-heading-font);
    font-weight: 700;
    line-height: 1.3;
    color: var(--cl-secondary);
}

a {
    text-decoration: none;
    color: var(--cl-primary);
    transition: var(--cl-transition);
}
a:hover { color: var(--cl-primary-dark); }

img { max-width: 100%; height: auto; }

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

/* ----- GRADIENT TEXT ----- */
.cl-gradient-text {
    background: var(--cl-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- SECTION HEADER ----- */
.cl-section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cl-primary);
    margin-bottom: 0.75rem;
}

.cl-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cl-section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
}

/* ============================================
   NAVBAR
   ============================================ */
.cl-navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    padding: 0.75rem 0;
    transition: var(--cl-transition);
    z-index: 1050;
}

.cl-navbar.scrolled {
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 0.5rem 0;
}

.cl-navbar .logo-img {
    height: 40px;
    transition: var(--cl-transition);
}

.cl-navbar .nav-link {
    font-weight: 500;
    color: var(--cl-secondary) !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.95rem;
    position: relative;
    transition: var(--cl-transition);
}

.cl-navbar .nav-link:hover,
.cl-navbar .nav-link.active {
    color: var(--cl-primary) !important;
}

.cl-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--cl-primary);
    border-radius: 2px;
}

.cl-btn-nav {
    font-size: 0.9rem !important;
    padding: 0.5rem 1.25rem !important;
}

/* Mobile toggler icon fix */
.cl-navbar .navbar-toggler {
    border: 2px solid rgba(0,0,0,0.15);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: var(--cl-transition);
}

.cl-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(232,5,102,0.15);
}

.cl-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a1a2e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.25em;
    height: 1.25em;
}

/* Dropdown */
.cl-dropdown {
    border: none;
    border-radius: var(--cl-radius);
    box-shadow: var(--cl-shadow-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.cl-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--cl-transition);
}

.cl-dropdown .dropdown-item:hover {
    background: rgba(232,5,102,0.06);
    color: var(--cl-primary);
}

.cl-dropdown .dropdown-item i {
    color: var(--cl-primary);
    width: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.cl-btn {
    background: var(--cl-primary);
    border-color: var(--cl-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    transition: var(--cl-transition);
    border: 2px solid var(--cl-primary);
}

.cl-btn:hover {
    background: var(--cl-primary-dark);
    border-color: var(--cl-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,5,102,0.3);
}

.btn-primary {
    background-color: var(--cl-primary) !important;
    border-color: var(--cl-primary) !important;
}

.btn-primary:hover {
    background-color: var(--cl-primary-dark) !important;
    border-color: var(--cl-primary-dark) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.cl-hero {
    background: linear-gradient(135deg, #fdf2f8 0%, #f0e6ff 50%, #e8f4fd 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* 3D Canvas */
#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cl-hero .container {
    position: relative;
    z-index: 2;
}

/* 3D Tilt */
.cl-tilt {
    transform-style: preserve-3d;
    will-change: transform;
}

.cl-hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.cl-hero-shapes .shape-1 {
    width: 400px; height: 400px;
    background: var(--cl-primary);
    top: -100px; right: -100px;
    animation-delay: 0s;
}

.cl-hero-shapes .shape-2 {
    width: 250px; height: 250px;
    background: var(--cl-purple);
    bottom: -50px; left: -50px;
    animation-delay: 2s;
}

.cl-hero-shapes .shape-3 {
    width: 150px; height: 150px;
    background: var(--cl-green);
    top: 50%; left: 30%;
    animation-delay: 4s;
}

.cl-hero-shapes .shape-4 {
    width: 100px; height: 100px;
    background: var(--cl-orange);
    top: 20%; right: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

.cl-badge {
    background: rgba(232,5,102,0.1);
    color: var(--cl-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-block;
}

.cl-hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.cl-hero-desc {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Trust badges */
.cl-trust-avatars {
    display: flex;
}

.cl-trust-avatars span {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    border: 2px solid #fff;
    margin-right: -8px;
}

.cl-trust p {
    font-size: 0.9rem;
    color: #666;
}

/* Lead Form Card */
.cl-lead-card {
    background: #fff;
    border-radius: var(--cl-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--cl-shadow-lg);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.cl-form-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cl-gradient);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cl-lead-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
}

.cl-lead-card > p {
    text-align: center;
}

.cl-input {
    border: 2px solid #e9ecef;
    border-radius: var(--cl-radius) !important;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--cl-transition);
}

.cl-input:focus {
    border-color: var(--cl-primary);
    box-shadow: 0 0 0 3px rgba(232,5,102,0.1);
}

.cl-form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

.cl-form-error {
    font-size: 0.85rem;
}

/* ============================================
   STATS BAR
   ============================================ */
.cl-stats {
    background: var(--cl-secondary);
    position: relative;
}

.cl-stat-item {
    padding: 1rem;
}

.cl-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--cl-heading-font);
}

.cl-stats p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.cl-service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--cl-radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: #333;
    transition: var(--cl-transition);
    position: relative;
    overflow: hidden;
}

.cl-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--cl-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.cl-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cl-shadow-lg);
    color: #333;
    border-color: transparent;
}

.cl-service-card:hover::before {
    transform: scaleX(1);
}

.cl-service-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: rgba(232,5,102,0.1);
    color: var(--cl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--cl-transition);
}

.cl-service-card:hover .cl-service-icon {
    background: var(--cl-primary);
    color: #fff;
}

.cl-service-icon.icon-purple { background: rgba(108,92,231,0.1); color: var(--cl-purple); }
.cl-service-card:hover .icon-purple { background: var(--cl-purple); color: #fff; }

.cl-service-icon.icon-green { background: rgba(0,184,148,0.1); color: var(--cl-green); }
.cl-service-card:hover .icon-green { background: var(--cl-green); color: #fff; }

.cl-service-icon.icon-orange { background: rgba(243,156,18,0.1); color: var(--cl-orange); }
.cl-service-card:hover .icon-orange { background: var(--cl-orange); color: #fff; }

.cl-service-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cl-service-card p {
    font-size: 0.9rem;
    color: #666;
    flex-grow: 1;
}

.cl-service-link {
    font-weight: 600;
    color: var(--cl-primary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: var(--cl-transition);
}

.cl-service-card:hover .cl-service-link { gap: 0.75rem; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.cl-feature-check {
    width: 36px; height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(232,5,102,0.1);
    color: var(--cl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.cl-visual-card {
    background: #fff;
    border-radius: var(--cl-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--cl-shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.cl-ring-stat {
    position: relative;
    display: inline-block;
    width: 100%;
}

.cl-ring-svg {
    width: 160px;
    height: 160px;
    transform: rotate(-90deg);
}

.cl-ring-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 8;
}

.cl-ring-fill {
    fill: none;
    stroke: url(#ringGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 327;
    stroke-dashoffset: 16;
    transition: stroke-dashoffset 1.5s ease;
}

.cl-ring-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 900;
    color: var(--cl-primary);
    font-family: var(--cl-heading-font);
}

/* Add gradient definition via pseudo or inline SVG */
.cl-ring-stat .cl-ring-svg {
    background: none;
}

.cl-mini-stat {
    background: #f8f9fa;
    border-radius: var(--cl-radius);
    padding: 1.25rem;
    text-align: center;
}

.cl-mini-stat i { font-size: 1.25rem; display: block; margin-bottom: 0.5rem; }
.cl-mini-stat strong { font-size: 1.75rem; font-weight: 900; display: block; color: var(--cl-secondary); }
.cl-mini-stat span { font-size: 0.8rem; color: #888; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.cl-process-step {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--cl-radius-lg);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--cl-transition);
    position: relative;
}

.cl-process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--cl-shadow);
    border-color: rgba(232,5,102,0.2);
}

.cl-step-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--cl-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: var(--cl-heading-font);
}

.cl-process-step h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cl-process-step p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.cl-testimonial-slider {
    overflow: hidden;
    position: relative;
}

.cl-testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.cl-testimonial-card {
    min-width: 100%;
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--cl-radius-lg);
    box-shadow: var(--cl-shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.cl-stars { color: #f39c12; font-size: 1.1rem; }
.cl-stars i { margin-right: 2px; }

.cl-testimonial-card > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
}

.cl-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.cl-t-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #eee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-secondary);
    transition: var(--cl-transition);
    margin: 0 0.25rem;
}

.cl-t-btn:hover {
    background: var(--cl-primary);
    border-color: var(--cl-primary);
    color: #fff;
}

.cl-t-dots {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin: 0 0.75rem;
    vertical-align: middle;
}

.cl-t-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--cl-transition);
    padding: 0;
}

.cl-t-dot.active {
    background: var(--cl-primary);
    width: 28px;
    border-radius: 10px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cl-cta-card {
    background: var(--cl-gradient-2);
    position: relative;
    overflow: hidden;
}

.cl-cta-card::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -150px; right: -50px;
}

.cl-cta-card::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    bottom: -100px; left: -50px;
}

.cl-cta-card h2 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 800;
}

/* ============================================
   FOOTER
   ============================================ */
.cl-footer-top {
    background: var(--cl-dark);
}

.cl-footer-bottom {
    background: #0a0a1a;
}

.cl-footer-logo {
    height: 36px;
}

.cl-social-links a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--cl-transition);
    font-size: 0.9rem;
}

.cl-social-links a:hover {
    background: var(--cl-primary);
    color: #fff;
    transform: translateY(-3px);
}

.cl-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cl-footer-links li {
    margin-bottom: 0.5rem;
}

.cl-footer-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--cl-transition);
}

.cl-footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

.cl-contact-list li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.cl-contact-list a { color: rgba(255,255,255,0.6); }
.cl-contact-list a:hover { color: #fff; }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.cl-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--cl-transition);
    animation: pulse-green 2s infinite;
}

.cl-whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.cl-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--cl-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--cl-transition);
    z-index: 998;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(232,5,102,0.3);
}

.cl-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.cl-back-to-top:hover {
    transform: translateY(-3px);
    background: var(--cl-primary-dark);
}

/* ============================================
   INNER PAGE HERO (for service & about pages)
   ============================================ */
.cl-page-hero {
    background: linear-gradient(135deg, var(--cl-secondary) 0%, #2d1b4e 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cl-page-hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(232,5,102,0.1);
    top: -200px; right: -100px;
}

.cl-page-hero h1 {
    color: #fff;
    font-size: 2.75rem;
    font-weight: 900;
}

.cl-page-hero .cl-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cl-page-hero .cl-breadcrumb a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.cl-page-hero .cl-breadcrumb a:hover { color: #fff; }

.cl-page-hero .cl-breadcrumb span {
    color: rgba(255,255,255,0.4);
}

.cl-page-hero .cl-breadcrumb .current {
    color: var(--cl-primary-light);
    font-weight: 500;
}

/* ============================================
   CONTACT PAGE FORM
   ============================================ */
.cl-contact-card {
    background: #fff;
    border-radius: var(--cl-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--cl-shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.cl-info-card {
    background: #fff;
    border-radius: var(--cl-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--cl-shadow);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--cl-transition);
    height: 100%;
}

.cl-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cl-shadow-lg);
}

.cl-info-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(232,5,102,0.1);
    color: var(--cl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* ============================================
   SERVICE PAGE DETAIL
   ============================================ */
.cl-service-detail-icon {
    width: 80px; height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cl-service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
}

.cl-service-features li i {
    color: var(--cl-primary);
    margin-top: 4px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.cl-about-services .cl-about-srv {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--cl-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--cl-transition);
    height: 100%;
}

.cl-about-services .cl-about-srv:hover {
    transform: translateY(-5px);
    box-shadow: var(--cl-shadow);
    border-color: rgba(232,5,102,0.15);
}

.cl-about-srv-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: rgba(232,5,102,0.1);
    color: var(--cl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.cl-thankyou {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #fdf2f8 0%, #f0e6ff 50%, #e8f4fd 100%);
}

.cl-thankyou-card {
    background: #fff;
    border-radius: var(--cl-radius-lg);
    padding: 3rem;
    box-shadow: var(--cl-shadow-lg);
    max-width: 500px;
}

.cl-thankyou-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(0,184,148,0.1);
    color: var(--cl-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .cl-hero-title { font-size: 2.5rem; }
    .cl-section-title { font-size: 2rem; }
    .py-6 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
    .cl-lead-card { margin-top: 2rem; }

    .cl-navbar .navbar-collapse {
        background: #fff;
        border-radius: var(--cl-radius);
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: var(--cl-shadow-lg);
    }
}

@media (max-width: 767.98px) {
    .cl-hero { min-height: auto; padding-top: 6rem; padding-bottom: 3rem; }
    .cl-hero-title { font-size: 2rem; }
    .cl-section-title { font-size: 1.75rem; }
    .cl-stat-number { font-size: 2rem; }
    .cl-lead-card { padding: 1.5rem; }
    .cl-testimonial-card { padding: 1.5rem; }
    .cl-cta-card { padding: 2rem !important; }
    .cl-cta-card h2 { font-size: 1.75rem; }
    .cl-page-hero { padding: 7rem 0 3rem; }
    .cl-page-hero h1 { font-size: 2rem; }

    .cl-whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
    .cl-back-to-top { bottom: 80px; right: 20px; }
}

@media (max-width: 575.98px) {
    .cl-hero-title { font-size: 1.75rem; }
    .cl-hero .btn-lg { font-size: 0.95rem; padding: 0.65rem 1.25rem; }
}
