/********** Template CSS **********/
:root {
    --primary: #FF6BCB; /* Pink */
    --secondary: #00E676; /* Lime */
    --tertiary: #448AFF; /* Blue */
    --quaternary: #7C4DFF; /* Purple */
    --quinary: #43A047; /* Green */
    --light: #FFF5FD;
    --dark: #2A1B3D;
}

/* Define your color variables */
:root {
    --primary: #FF6BCB; /* Pink */
    --secondary: #00E676; /* Lime */
    --tertiary: #448AFF; /* Blue */
    --quaternary: #7C4DFF; /* Purple */
    --quinary: #43A047; /* Green */
    --light: #FFF5FD;
    --dark: #2A1B3D;
}

/* Text container gradients */

/* Gradient 1: Pink to Purple */
.text-gradient-layer {
    background: linear-gradient(135deg, 
        rgba(255, 107, 203, 0.85) 0%, 
        rgba(124, 77, 255, 0.7) 100%);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(255, 107, 203, 0.2);
}

/* Gradient 2: Blue to Green */
.text-gradient-layer-alt {
    background: linear-gradient(135deg, 
        rgba(68, 138, 255, 0.85) 0%, 
        rgba(0, 230, 118, 0.7) 100%);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(68, 138, 255, 0.2);
}

/* Gradient 3: Dark to Purple to Pink */
.text-gradient-layer-dark {
    background: linear-gradient(135deg, 
        rgba(42, 27, 61, 0.9) 0%, 
        rgba(124, 77, 255, 0.75) 50%, 
        rgba(255, 107, 203, 0.6) 100%);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(124, 77, 255, 0.25);
}

/* Gradient buttons using your colors */

/* Pink to Purple gradient button */
.btn-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--quaternary));
    border: none;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 203, 0.3);
    background: linear-gradient(135deg, var(--quaternary), var(--primary));
}

/* Green gradient button */
.btn-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--quinary));
    border: none;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
    background: linear-gradient(135deg, var(--quinary), var(--secondary));
}

/* Blue gradient button */
.btn-gradient-tertiary {
    background: linear-gradient(135deg, var(--tertiary), var(--quaternary));
    border: none;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(68, 138, 255, 0.3);
}

/* Purple gradient button */
.btn-gradient-quaternary {
    background: linear-gradient(135deg, var(--quaternary), var(--primary));
    border: none;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient-quaternary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.3);
}

/* Green gradient button */
.btn-gradient-quinary {
    background: linear-gradient(135deg, var(--quinary), var(--secondary));
    border: none;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient-quinary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 160, 71, 0.3);
}

/* Light gradient button */
.btn-gradient-light {
    background: linear-gradient(135deg, var(--light), #ffffff);
    border: 2px solid var(--quaternary);
    color: var(--dark) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 245, 253, 0.3);
    background: linear-gradient(135deg, #ffffff, var(--light));
}

/* Text shadow for better readability */
.text-gradient-layer h1,
.text-gradient-layer-alt h1,
.text-gradient-layer-dark h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.text-gradient-layer p,
.text-gradient-layer-alt p,
.text-gradient-layer-dark p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Optional: Add animation to gradients */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Add animated gradient effect */
.text-gradient-layer,
.text-gradient-layer-alt,
.text-gradient-layer-dark {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

.btn-gradient-primary,
.btn-gradient-secondary,
.btn-gradient-tertiary,
.btn-gradient-quaternary,
.btn-gradient-quinary {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-gradient-layer,
    .text-gradient-layer-alt,
    .text-gradient-layer-dark {
        padding: 1.5rem !important;
        margin: 0 10px;
    }
    
    .display-2 {
        font-size: 2rem !important;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px !important;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.logo-container {
    position: relative;
    height: 60px;
    width: 100px;
}

.logo-main,
.logo-hover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-hover {
    opacity: 0;
    filter: brightness(1.1) saturate(1.2);
}

.logo-wrapper:hover .logo-main {
    opacity: 0;
}

.logo-wrapper:hover .logo-hover {
    opacity: 1;
}
/* Hover effect */
.logo-wrapper:hover .logo-image {
    transform: rotate(-5deg) scale(1.05);
}

.logo-wrapper:hover .logo-text {
    background: linear-gradient(135deg, #7C4DFF 0%, #00DBDE 50%, #FF6BCB 100%);
    background-size: 200% 200%;
    background-position: 100% 100%;
}

/* Carousel container styling */
.header-carousel .owl-carousel-item {
    height: 500px; /* Adjust height as needed */
    min-height: 500px;
    position: relative;
}

.header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Make sure carousel is visible */
.header-carousel {
    overflow: hidden;
}


.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

/* Container height */
.container-fluid.p-0.mb-5 {
    height: 500px; /* Match carousel height */
}

/* For sticky navbar */
.navbar.sticky-top .logo-text {
    font-size: 1.3rem; /* Slightly smaller when sticky */
}

/* Add background layer via pseudo-element */
.col-10.col-lg-8 {
    position: relative;
    padding: 2.5rem;
}

.col-10.col-lg-8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(1px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 0;
}

/* Make sure text stays above the background */
.col-10.col-lg-8 > * {
    position: relative;
    z-index: 1;
}

/* Add text shadow for extra readability */
.display-2 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.fs-5 {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/* WhatsApp Mobile Nav Button */
.whatsapp-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    margin: 0 15px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.whatsapp-mobile-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
}

/* Hide on desktop, show on mobile */
.d-lg-none {
    display: none !important;
}

@media (max-width: 599px) {
    .d-lg-none {
        display: flex !important;
    }
    
    /* Adjust navbar layout for mobile */
    .navbar > .container-fluid {
        display: relative;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-brand {
        margin-right: auto;
    }
    
    .whatsapp-mobile-nav {
        margin: 0 10px;
    }
    
    .navbar-toggler {
        margin-left: auto;
    }
}

@media (max-width: 999px) {
    .whatsapp-mobile-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin: 0 8px;
    }
    
    .navbar-brand h1 {
        font-size: 1.4rem;
    }
}

@media (max-width: 400px) {
    .navbar-brand h1 {
        font-size: 1.2rem;
    }
    
    .navbar-brand .fa-child {
        font-size: 1rem;
    }
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn.btn-primary:hover {
    background-color: var(--quaternary);
    border-color: var(--quaternary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, 
        #FF6BCB, #00E676, #448AFF, #7C4DFF, #FF8E53, #FF6BCB
    ) 1;
    border-image-slice: 1;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/* Live Chat Button Styles */
.live-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    margin: 0 12px;
    padding: 0 15px;
    box-shadow: 
        0 6px 20px rgba(37, 211, 102, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset,
        0 0 30px rgba(37, 211, 102, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 140px;
}

.live-chat-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(37, 211, 102, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset,
        0 0 40px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
}

.live-chat-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Container */
.live-chat-container {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

/* Pulsing ring animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}

.pulse-1 {
    animation: pulse 2s ease-out infinite;
}

.pulse-2 {
    animation: pulse 2s ease-out infinite 0.5s;
}

.pulse-3 {
    animation: pulse 2s ease-out infinite 1s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Chat icon with message animation */
.chat-icon {
    position: relative;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #25D366;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Message dots animation */
.message-dot {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: dotBounce 1.5s ease-in-out infinite;
}

.dot-1 {
    width: 6px;
    height: 6px;
    top: -8px;
    right: -8px;
    animation-delay: 0s;
}

.dot-2 {
    width: 4px;
    height: 4px;
    top: -12px;
    right: -4px;
    animation-delay: 0.2s;
}

.dot-3 {
    width: 3px;
    height: 3px;
    top: -8px;
    right: 2px;
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-3px);
        opacity: 0.7;
    }
}

/* Chat text */
.chat-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.chat-label {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    opacity: 0.9;
    margin-top: 2px;
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4ADE80;
    border-radius: 50%;
    animation: statusPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px #4ADE80;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Shimmer effect on hover */
.live-chat-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.6s;
    opacity: 0;
}

.live-chat-btn:hover::before {
    transform: translateX(100%) rotate(30deg);
    opacity: 1;
    transition: transform 0.6s, opacity 0.3s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .d-lg-none {
        display: flex !important;
    }
    
    .live-chat-btn {
        min-width: 130px;
        height: 46px;
        padding: 0 12px;
        margin: 0 8px;
    }
    
    .chat-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .chat-label {
        font-size: 13px;
    }
    
    .chat-status {
        font-size: 9px;
    }
}

@media (max-width: 576px) {
    .live-chat-btn {
        min-width: 120px;
        height: 42px;
        padding: 0 10px;
        margin: 0 6px;
        border-radius: 21px;
    }
    
    .live-chat-container {
        gap: 8px;
    }
    
    .chat-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .chat-label {
        font-size: 12px;
    }
    
    .chat-status {
        font-size: 8px;
    }
    
    .message-dot.dot-1 {
        width: 5px;
        height: 5px;
    }
    
    .message-dot.dot-2 {
        width: 3px;
        height: 3px;
    }
    
    .message-dot.dot-3 {
        width: 2px;
        height: 2px;
    }
}

@media (max-width: 400px) {
    .live-chat-btn {
        min-width: auto;
        width: 46px;
        height: 46px;
        padding: 0;
        border-radius: 50%;
    }
    
    .chat-text {
        display: none;
    }
    
    .live-chat-container {
        gap: 0;
    }
    
    .chat-icon {
        margin: 0;
        animation: none;
    }
    
    .pulse-ring {
        display: none;
    }
}

/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}

/* Base styles */
.cta-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Background blobs */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    z-index: 1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    top: -200px;
    right: -100px;
    animation: float-blob 8s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00E676, #43A047);
    bottom: -150px;
    left: -100px;
    animation: float-blob 10s ease-in-out infinite reverse;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #448AFF, #2979FF);
    top: 50%;
    left: -100px;
    animation: float-blob 12s ease-in-out infinite;
}

.cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to right, 
        rgba(255, 107, 203, 0.1) 0%,
        rgba(124, 77, 255, 0.1) 25%,
        rgba(68, 138, 255, 0.1) 50%,
        rgba(0, 230, 118, 0.1) 75%,
        rgba(67, 160, 71, 0.1) 100%);
    border-radius: 50% 50% 0 0;
}

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Typography */
.cta-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2A1B3D, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 90%;
}

/* Feature chips */
.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.chip-1 {
    background: rgba(255, 107, 203, 0.1);
    color: #FF6BCB;
    border: 1px solid rgba(255, 107, 203, 0.2);
}

.chip-2 {
    background: rgba(0, 230, 118, 0.1);
    color: #00E676;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.chip-3 {
    background: rgba(68, 138, 255, 0.1);
    color: #448AFF;
    border: 1px solid rgba(68, 138, 255, 0.2);
}

.chip-4 {
    background: rgba(124, 77, 255, 0.1);
    color: #7C4DFF;
    border: 1px solid rgba(124, 77, 255, 0.2);
}

.feature-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Action buttons */
.cta-actions {
    display: flex;
    gap: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    border: none;
}

.primary-btn {
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 203, 0.3);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 203, 0.4);
}

.primary-btn:active {
    transform: translateY(-2px);
}

.secondary-btn {
    background: linear-gradient(135deg, #00E676, #43A047);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
}

.secondary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.4);
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.btn-content small {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

/* Trust indicators */
.trust-indicators {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2A1B3D;
    line-height: 1;
}

.trust-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Visual section */
.cta-visual {
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, #7C4DFF, #448AFF);
    border-radius: 35px;
    padding: 40px;
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(124, 77, 255, 0.3);
}

.offer-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

#gradient {
    --color-1: #FF6BCB;
    --color-2: #7C4DFF;
}

.offer-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.offer-percent {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.offer-text {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.floating-image {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: float-image 6s ease-in-out infinite;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.img-2 {
    top: 20px;
    right: 20px;
    animation-delay: 2s;
}

.img-3 {
    bottom: 20px;
    left: 20px;
    animation-delay: 4s;
}

@keyframes float-image {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

.visual-content {
    position: absolute;
    bottom: 40px;
    right: 40px;
    text-align: right;
    color: white;
}

.visual-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.visual-text {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.promo-code {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.promo-value {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Floating badges */
.floating-badge {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 3;
    animation: float-badge 4s ease-in-out infinite;
}

.badge-1 {
    top: -25px;
    right: -25px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    left: -25px;
    background: linear-gradient(135deg, #00E676, #43A047);
    animation-delay: 1s;
}

.badge-3 {
    bottom: -25px;
    right: 50px;
    background: linear-gradient(135deg, #448AFF, #2979FF);
    animation-delay: 2s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Responsive */
@media (max-width: 991px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        min-width: auto;
    }
    
    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .visual-card {
        min-height: 350px;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .feature-chips {
        justify-content: center;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .visual-card {
        padding: 30px;
    }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white;
  background: linear-gradient(135deg, #7C4DFF 0%, #FF6BCB 50%, #448AFF 100%);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 4px solid #00E676;
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: white;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Comic Neue', cursive;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: 'Comic Neue', cursive;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 15px 25px;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  color: #2A1B3D;
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 203, 0.3);
}

.footer .newsletter-form input[type=email]::placeholder {
  color: rgba(42, 27, 61, 0.6);
}

.footer .newsletter-form .btn-subscribe {
  background: linear-gradient(135deg, #00E676, #43A047);
  color: white;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer .newsletter-form .btn-subscribe:hover {
  background: linear-gradient(135deg, #43A047, #00E676);
  transform: translateX(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 18px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
  color: white;
}

.footer h4 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  font-family: 'Comic Neue', cursive;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #FF6BCB, #7C4DFF);
  border-radius: 3px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(8px);
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer .footer-links ul a:hover {
  color: #FF6BCB;
  text-shadow: 0 0 10px rgba(255, 107, 203, 0.5);
}

.footer .footer-links ul a i {
  margin-right: 12px;
  font-size: 14px;
  color: #00E676;
  transition: all 0.3s ease;
}

.footer .footer-links ul a:hover i {
  color: #FF6BCB;
  transform: scale(1.2);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.footer .footer-contact .contact-item:hover {
  transform: translateX(5px);
}

.footer .footer-contact .contact-item .contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.footer .footer-contact .contact-item .contact-icon i {
  color: white;
  font-size: 18px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.footer .social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer .social-links a:hover {
  background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
  color: white;
  transform: translateY(-5px) scale(1.1);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 107, 203, 0.4);
}

.footer .social-links a i {
  font-size: 18px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 30px 0;
  background: rgba(42, 27, 61, 0.8);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer .footer-bottom .copyright strong {
  color: #FF6BCB;
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-left: 25px;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: #00E676;
}

.footer .footer-bottom .footer-bottom-links a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00E676;
  transition: width 0.3s ease;
}

.footer .footer-bottom .footer-bottom-links a:hover:after {
  width: 100%;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 12px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: #FF6BCB;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer .footer-bottom .credits a:hover {
  color: #00E676;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: #2A1B3D;
  background-color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: #FF6BCB;
  box-shadow: 0 0 0 3px rgba(255, 107, 203, 0.3);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: rgba(42, 27, 61, 0.6);
}

/* Colorful decorative elements */
.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, 
    rgba(255, 107, 203, 0.3) 0%, 
    rgba(124, 77, 255, 0.3) 33%, 
    rgba(68, 138, 255, 0.3) 66%, 
    rgba(0, 230, 118, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.footer > * {
  position: relative;
  z-index: 2;
}

/* Modern Service Cards */
.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.service-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 107, 203, 0.3);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.service-card:hover .service-overlay {
    transform: translateY(0);
}

.overlay-content h5 {
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Service Content */
.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(255, 107, 203, 0.3);
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2A1B3D;
    text-align: center;
    line-height: 1.3;
}

.service-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Service Features - Always side by side */
.service-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 2px dashed #F0F0F0;
    border-bottom: 2px dashed #F0F0F0;
    flex-wrap: nowrap;
    gap: 10px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.feature i {
    font-size: 16px;
    color: #FF6BCB;
    flex-shrink: 0;
    min-width: 20px;
}

.feature span {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Action Buttons - Always side by side */
.service-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    flex: 1;
    min-width: 0;
}

.call-btn {
    background: linear-gradient(135deg, #448AFF, #2979FF);
    color: white;
}

.call-btn:hover {
    background: linear-gradient(135deg, #2979FF, #448AFF);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(68, 138, 255, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.action-btn i {
    font-size: 14px;
    flex-shrink: 0;
    min-width: 16px;
}

.action-btn span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
}

/* Section Header */
.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design - Mobile First */
@media (max-width: 991px) {
    .service-image-container {
        height: 200px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-features {
        gap: 8px;
        padding: 12px 0;
    }
    
    .feature {
        gap: 4px;
    }
    
    .feature i {
        font-size: 14px;
    }
    
    .feature span {
        font-size: 10px;
    }
    
    .action-btn {
        padding: 9px 12px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .action-btn i {
        font-size: 13px;
    }
    
    .action-btn span {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .service-features {
        margin: 15px 0;
        gap: 6px;
    }
    
    .feature {
        gap: 3px;
    }
    
    .feature i {
        font-size: 13px;
    }
    
    .feature span {
        font-size: 9px;
    }
    
    .service-actions {
        gap: 8px;
    }
    
    .action-btn {
        padding: 8px 10px;
        font-size: 11px;
        gap: 4px;
    }
    
    .action-btn i {
        font-size: 12px;
    }
    
    .action-btn span {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .service-content {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .service-features {
        padding: 10px 0;
        margin: 12px 0;
        gap: 5px;
    }
    
    .feature {
        gap: 3px;
    }
    
    .feature i {
        font-size: 12px;
    }
    
    .feature span {
        font-size: 8px;
    }
    
    .service-actions {
        gap: 6px;
    }
    
    .action-btn {
        padding: 7px 8px;
        font-size: 10px;
        border-radius: 8px;
        gap: 3px;
    }
    
    .action-btn i {
        font-size: 11px;
    }
    
    .action-btn span {
        font-size: 9px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .service-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .feature {
        flex: 0 0 calc(50% - 4px);
        justify-content: flex-start;
        gap: 5px;
    }
    
    .feature i {
        font-size: 11px;
    }
    
    .feature span {
        font-size: 8px;
    }
    
    .service-actions {
        flex-wrap: wrap;
    }
    
    .action-btn {
        flex: 0 0 100%;
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .action-btn i {
        font-size: 12px;
    }
    
    .action-btn span {
        font-size: 10px;
    }
}

/* Ensure everything stays side by side on all devices */
@media (min-width: 401px) {
    .service-features {
        flex-wrap: nowrap !important;
    }
    
    .feature {
        flex: 1 !important;
        justify-content: center !important;
    }
    
    .service-actions {
        flex-wrap: nowrap !important;
    }
    
    .action-btn {
        flex: 1 !important;
    }
}

/* Base styles */
.instant-cta-section {
    background: linear-gradient(135deg, #FF6BCB10 0%, #7C4DFF10 50%, #448AFF10 100%);
    position: relative;
    overflow: hidden;
}

/* Floating elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
    animation: floatBall 8s ease-in-out infinite;
}

.ball-1 {
    width: 120px;
    height: 120px;
    background: #FF6BCB;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.ball-2 {
    width: 80px;
    height: 80px;
    background: #00E676;
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.ball-3 {
    width: 150px;
    height: 150px;
    background: #448AFF;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.ball-4 {
    width: 60px;
    height: 60px;
    background: #7C4DFF;
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.ball-5 {
    width: 100px;
    height: 100px;
    background: #43A047;
    bottom: 10%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes floatBall {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.1); }
    50% { transform: translate(-15px, 20px) scale(0.95); }
    75% { transform: translate(25px, 15px) scale(1.05); }
}

/* Glass card */
.cta-glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* Sparkle icon */
.sparkle-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(255, 107, 203, 0.4);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(10deg) scale(1.1); }
    50% { transform: rotate(-5deg) scale(1.05); }
    75% { transform: rotate(5deg) scale(1.1); }
}

/* Badge */
.cta-badge {
    margin-bottom: 20px;
}

.badge-text {
    display: inline-block;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 203, 0.3);
}

/* Typography */
.cta-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2A1B3D;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cta-subheading {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 90%;
}

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-weight: 600;
    color: #2A1B3D;
    font-size: 14px;
    margin-bottom: 4px;
}

.benefit-desc {
    font-size: 12px;
    color: #666;
}
/* WhatsApp Quick Action - Reduced */
.whatsapp-action-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.3s;
}

.whatsapp-action-btn:hover:before {
    left: 100%;
}

.whatsapp-icon {
    font-size: 20px;
}

.whatsapp-content {
    flex: 1;
}

.whatsapp-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.whatsapp-desc {
    font-size: 11px;
    opacity: 0.85;
}

.whatsapp-arrow {
    font-size: 16px;
    opacity: 0.8;
}

/* Call Quick Action - Reduced */
.call-quick-action {
    position: relative;
}

.call-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #448AFF, #2979FF);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
}

.call-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(68, 138, 255, 0.25);
}

.call-icon {
    font-size: 20px;
}

.call-content {
    flex: 1;
}

.call-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.call-desc {
    font-size: 11px;
    opacity: 0.85;
}

.call-number {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* Compact versions */
.whatsapp-action-btn.compact,
.call-action-btn.compact {
    padding: 8px 12px;
    gap: 8px;
}

.whatsapp-action-btn.compact .whatsapp-desc,
.call-action-btn.compact .call-desc {
    display: none;
}

.whatsapp-action-btn.compact .whatsapp-title,
.call-action-btn.compact .call-title {
    font-size: 12px;
    margin-bottom: 0;
}

.whatsapp-action-btn.compact .whatsapp-icon,
.call-action-btn.compact .call-icon {
    font-size: 18px;
}

.whatsapp-action-btn.compact .whatsapp-arrow {
    font-size: 14px;
}

/* Icon-only versions */
.whatsapp-action-btn.icon-only,
.call-action-btn.icon-only {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    min-width: auto;
}

.whatsapp-action-btn.icon-only .whatsapp-icon,
.call-action-btn.icon-only .call-icon {
    font-size: 18px;
    margin: 0;
}

.whatsapp-action-btn.icon-only .whatsapp-content,
.whatsapp-action-btn.icon-only .whatsapp-arrow,
.call-action-btn.icon-only .call-content,
.call-action-btn.icon-only .call-number {
    display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-action-btn,
    .call-action-btn {
        padding: 10px 14px;
        gap: 10px;
        border-radius: 12px;
    }
    
    .whatsapp-icon,
    .call-icon {
        font-size: 18px;
    }
    
    .whatsapp-title,
    .call-title {
        font-size: 13px;
    }
    
    .whatsapp-desc,
    .call-desc {
        font-size: 10px;
    }
    
    .whatsapp-arrow {
        font-size: 14px;
    }
    
    .call-number {
        padding: 5px 8px;
        font-size: 12px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .whatsapp-action-btn,
    .call-action-btn {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .whatsapp-desc,
    .call-desc {
        display: none;
    }
    
    .whatsapp-title,
    .call-title {
        font-size: 12px;
        margin-bottom: 0;
    }
    
    .call-number {
        font-size: 11px;
        padding: 4px 6px;
    }
}

/* SMS Option */
.sms-option {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    border: 1px dashed #FF6BCB;
}

.sms-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.sms-label i {
    color: #FF6BCB;
    margin-right: 8px;
}

.sms-number code {
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 10px;
    background: rgba(255, 107, 203, 0.1);
    border: 1px solid rgba(255, 107, 203, 0.2);
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.trust-item i {
    color: #FF6BCB;
    font-size: 16px;
}

/* Right Visual Styles */
.cta-visual {
    height: 100%;
}

.visual-container {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.countdown-timer {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 2px solid #FF6BCB;
}

.timer-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    text-align: center;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-unit {
    text-align: center;
}

.time-value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.time-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.time-separator {
    font-size: 24px;
    font-weight: 700;
    color: #FF6BCB;
    margin-top: -5px;
}

.visual-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 20px;
    z-index: 2;
}

.stats-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-number {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6BCB, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stats-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.contact-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 2px solid #00E676;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00E676, #43A047);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.contact-info {
    flex: 1;
}

.contact-title {
    font-weight: 600;
    color: #2A1B3D;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-desc {
    font-size: 12px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 991px) {
    .cta-heading {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .visual-container {
        min-height: 400px;
        margin-top: 40px;
    }
    
    .stats-overlay {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .cta-heading {
        font-size: 1.8rem;
    }
    
    .whatsapp-action-btn,
    .call-action-btn {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .call-number {
        width: 100%;
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #FFF5FD 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.contact-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.15;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 10%;
    left: 5%;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary);
    top: 60%;
    right: 10%;
    animation: floatShape 25s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: var(--tertiary);
    bottom: 20%;
    left: 15%;
    animation: floatShape 22s ease-in-out infinite;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--quaternary);
    top: 30%;
    right: 25%;
    animation: floatShape 18s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: var(--quinary);
    bottom: 40%;
    left: 25%;
    animation: floatShape 15s ease-in-out infinite reverse;
    animation-delay: 3s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-20px, 30px) rotate(180deg); }
    75% { transform: translate(40px, 20px) rotate(270deg); }
}

/* Contact Cards */
.contact-info-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

/* Section Header */
.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--quaternary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--quaternary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
    position: relative;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-method:hover {
    transform: translateX(10px);
    border-color: currentColor;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.email-method:hover { border-color: var(--primary); }
.phone-method:hover { border-color: var(--tertiary); }
.whatsapp-method:hover { border-color: #25D366; }

.method-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.email-method .method-icon {
    background: linear-gradient(135deg, var(--primary), var(--quaternary));
}

.phone-method .method-icon {
    background: linear-gradient(135deg, var(--tertiary), #2979FF);
}

.whatsapp-method .method-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Icon Animations */
.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: inherit;
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: ring 3s ease-out infinite;
}

@keyframes ring {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.icon-bounce {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.method-content {
    flex: 1;
}

.method-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.method-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.method-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    background: rgba(255, 107, 203, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-method:hover .method-value {
    background: rgba(255, 107, 203, 0.2);
    transform: translateX(5px);
}

.method-arrow {
    font-size: 20px;
    color: #666;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-method:hover .method-arrow {
    opacity: 1;
    transform: translateX(0);
    color: currentColor;
}

.whatsapp-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Social Media */
.contact-social {
    text-align: center;
}

.contact-social h5 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.social-icon.facebook { background: linear-gradient(135deg, #1877F2, #0D5FDB); }
.social-icon.instagram { background: linear-gradient(135deg, #E4405F, #C13584); }
.social-icon.twitter { background: linear-gradient(135deg, #1DA1F2, #0D8BD9); }
.social-icon.youtube { background: linear-gradient(135deg, #FF0000, #CC0000); }

/* Contact Form */
.form-header {
    text-align: center;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Form Styling */
.form-floating {
    position: relative;
}

.form-control, .form-select {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 203, 0.2);
    background: white;
}

.form-floating label {
    padding: 20px;
    color: #666;
    font-size: 16px;
}

.form-floating label i {
    color: var(--primary);
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--quaternary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.form-control:focus ~ .input-focus-border,
.form-select:focus ~ .input-focus-border {
    width: 100%;
}

/* Submit Button */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--quaternary));
    border: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 203, 0.4);
}

.btn-text {
    margin-right: 10px;
}

.btn-icon {
    font-size: 20px;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* Response Guarantee */
.response-guarantee {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(68, 138, 255, 0.1));
    border-radius: 15px;
    border: 2px dashed var(--secondary);
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--quinary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    animation: rotateClock 4s linear infinite;
}

@keyframes rotateClock {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-info-card,
    .contact-form-card {
        padding: 30px !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .method-arrow {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}



/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.gallery .isotope-filters li {
  display: inline-block;
  padding: 10px 20px;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gallery .isotope-filters li:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.gallery .isotope-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .gallery .isotope-filters {
    gap: 8px;
  }

  .gallery .isotope-filters li {
    padding: 8px 14px;
    font-size: 14px;
  }
}

.gallery .gallery-item {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .gallery .gallery-item {
    margin-bottom: 20px;
  }
}

.gallery .gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.gallery .gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-card:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery .gallery-card:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery .gallery-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
}

.gallery .gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--contrast-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery .gallery-overlay h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.gallery .gallery-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.gallery .gallery-overlay .gallery-actions {
  display: flex;
  gap: 15px;
}

.gallery .gallery-overlay .gallery-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 18px;
  transition: 0.3s;
}

.gallery .gallery-overlay .gallery-actions a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

.gallery .glightbox-clean .gslide-description {
  background: #272727;
}

.gallery .glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}


/*--------------------------------------------------------------
# Gallery Slider Section
--------------------------------------------------------------*/
.gallery-slider {
  overflow: hidden;
}

.gallery-slider .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery-slider .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery-slider .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.gallery-slider .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-slider .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-slider .gallery-img .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-slider .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.gallery-slider .gallery-img:hover img {
  transform: scale(1.1);
}

.gallery-slider .gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery-slider .gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery-slider:hover .swiper-button-next,
.gallery-slider:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery-slider:hover .swiper-button-next:hover,
.gallery-slider:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery-slider .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .gallery-slider .swiper-button-next,
  .gallery-slider .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .gallery-slider .swiper-wrapper {
    padding: 15px 0;
  }

  .gallery-slider .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}



/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding: 70px 0;
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

@media (min-width: 576px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
}

.gallery .gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.gallery .gallery-item.featured {
  grid-row: span 2;
}

@media (min-width: 768px) {
  .gallery .gallery-item.featured {
    grid-column: span 2;
  }
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
  transform: scale(0.5);
  transition: transform 0.4s ease;
}

.gallery .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery .gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery .btn-view-more {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-color);
  font-weight: 600;
  padding: 12px 30px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.gallery .btn-view-more i {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.gallery .btn-view-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.gallery .btn-view-more:hover i {
  transform: translateX(5px);
}

/* About Playful Section */
.about-playful-section {
    background: linear-gradient(135deg, #FFF5FD 0%, #F8F9FF 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.about-playful-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ap-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: apFloat 20s linear infinite;
}

.ap-p1 {
    width: 80px;
    height: 80px;
    background: var(--primary);
    top: 10%;
    left: 5%;
}

.ap-p2 {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    top: 70%;
    right: 10%;
    animation-delay: 5s;
    animation-direction: reverse;
}

.ap-p3 {
    width: 100px;
    height: 100px;
    background: var(--tertiary);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.ap-p4 {
    width: 50px;
    height: 50px;
    background: var(--quaternary);
    top: 40%;
    right: 20%;
    animation-delay: 15s;
}

.ap-p5 {
    width: 70px;
    height: 70px;
    background: var(--quinary);
    bottom: 40%;
    left: 10%;
    animation-delay: 8s;
    animation-direction: reverse;
}

@keyframes apFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translate(100px, -50px) rotate(90deg);
        opacity: 0.15;
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
        opacity: 0.15;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.1;
    }
}

/* Section Header */
.ap-section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--quaternary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.ap-section-tag::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--quaternary));
    border-radius: 3px;
}

.ap-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.ap-gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--quaternary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ap-section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards */
.ap-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ap-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 0 30px rgba(255, 255, 255, 0.6);
}

.ap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary), 
        var(--secondary), 
        var(--tertiary), 
        var(--quaternary));
    z-index: 2;
}

/* Card Header */
.ap-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.ap-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 24px;
}

.ap-icon-mission {
    background: linear-gradient(135deg, var(--primary), var(--quaternary));
}

.ap-icon-vision {
    background: linear-gradient(135deg, var(--secondary), var(--quinary));
}

.ap-icon-values {
    background: linear-gradient(135deg, var(--tertiary), var(--quaternary));
}

.ap-icon-specialties {
    background: linear-gradient(135deg, #FF8E53, #FF416C);
}

.ap-icon-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: inherit;
    opacity: 0;
    animation: apRipple 2s ease-out infinite;
}

@keyframes apRipple {
    0% { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

.ap-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

/* Mission Card */
.ap-mission-stats {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(135deg, 
        rgba(255, 107, 203, 0.1), 
        rgba(124, 77, 255, 0.1));
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 107, 203, 0.2);
}

.ap-stat {
    text-align: center;
}

.ap-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--quaternary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.ap-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    font-weight: 600;
}

/* Vision Card */
.ap-vision-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.ap-highlight {
    display: flex;
    align-items: center;
    background: rgba(0, 230, 118, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 230, 118, 0.2);
    transition: transform 0.3s ease;
}

.ap-highlight:hover {
    transform: translateY(-3px);
}

.ap-highlight i {
    color: var(--secondary);
    margin-right: 8px;
    font-size: 14px;
}

.ap-highlight span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Values Card */
.ap-values-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ap-value {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ap-value:hover {
    transform: translateX(8px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ap-value-safety:hover { border-color: var(--tertiary); }
.ap-value-fun:hover { border-color: var(--primary); }
.ap-value-quality:hover { border-color: var(--quaternary); }
.ap-value-creativity:hover { border-color: var(--secondary); }

.ap-value-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 20px;
    color: white;
}

.ap-value-safety .ap-value-icon {
    background: linear-gradient(135deg, var(--tertiary), #2979FF);
}

.ap-value-fun .ap-value-icon {
    background: linear-gradient(135deg, var(--primary), #FF8E53);
}

.ap-value-quality .ap-value-icon {
    background: linear-gradient(135deg, var(--quaternary), #7C4DFF);
}

.ap-value-creativity .ap-value-icon {
    background: linear-gradient(135deg, var(--secondary), #43A047);
}

.ap-value-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.ap-value-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Specialties Card */
.ap-specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.ap-specialty {
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.ap-specialty::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.ap-specialty:hover::before {
    left: 100%;
}

.ap-bouncing { background: linear-gradient(135deg, #FF6BCB, #FF8E53); }
.ap-water { background: linear-gradient(135deg, #448AFF, #2979FF); }
.ap-obstacle { background: linear-gradient(135deg, #00E676, #43A047); }
.ap-train { background: linear-gradient(135deg, #7C4DFF, #9575CD); }
.ap-combo { background: linear-gradient(135deg, #FFD166, #FFB74D); }
.ap-themed { background: linear-gradient(135deg, #FF8E53, #FF416C); }
.ap-adrenaline { background: linear-gradient(135deg, #2979FF, #00B0FF); }
.ap-pool { background: linear-gradient(135deg, #00B0FF, #00E5FF); }
.ap-character { background: linear-gradient(135deg, #FF416C, #FF4B2B); }
.ap-custom { background: linear-gradient(135deg, #9575CD, #7E57C2); }

.ap-specialty:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.ap-specialties-footer {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 203, 0.05), 
        rgba(124, 77, 255, 0.05));
    border-radius: 20px;
    border: 2px dashed var(--primary);
}

.ap-specialties-footer p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.ap-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.ap-gradient-btn {
    background: linear-gradient(135deg, var(--primary), var(--quaternary));
    color: white;
}

.ap-gradient-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 203, 0.3);
}

/* Team Card */
.ap-team-card {
    background: linear-gradient(135deg, 
        rgba(255, 107, 203, 0.1), 
        rgba(124, 77, 255, 0.1));
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 203, 0.2);
}

.ap-team-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.ap-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 50%;
}

.ap-image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, 
        var(--primary), 
        var(--quaternary));
    border-radius: 50%;
    z-index: -1;
    animation: apGlow 3s ease-in-out infinite;
}

@keyframes apGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.ap-team-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.ap-team-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ap-team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ap-team-tag {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid rgba(255, 107, 203, 0.3);
    transition: all 0.3s ease;
}

.ap-team-tag:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .ap-section-title {
        font-size: 2.2rem;
    }
    
    .ap-card {
        padding: 25px;
    }
    
    .ap-mission-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .ap-values-list {
        grid-template-columns: 1fr;
    }
    
    .ap-specialties-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .ap-section-title {
        font-size: 1.8rem;
    }
    
    .ap-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .ap-icon-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .ap-value {
        flex-direction: column;
        text-align: center;
    }
    
    .ap-value-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .ap-team-image {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }
}