:root {
    --primary: #c084fc;
    /* Vibrant Purple */
    --accent: #22d3ee;
    /* Electric Cyan */
    --accent-glow: rgba(34, 211, 238, 0.2);
    --accent-gradient: linear-gradient(135deg, #c084fc 0%, #22d3ee 100%);
    --bg-page: #020617;
    /* Deepest Midnight */
    --bg-section: #0f172a;
    /* Deep Navy */
    --text-main: #f8fafc;
    /* Crystal White */
    --text-muted: #94a3b8;
    /* Slate Blue */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.02);
    --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 60px -15px rgba(0, 0, 0, 0.9);
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.logo-text {
    color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.mobile-only {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #020617;
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34, 211, 238, 0.4);
}

.btn-secondary {
    background: var(--glass);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-image {
    position: relative;
}

.hero-main-img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.hero-main-img:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-image .glass-card {
    position: absolute;
    z-index: 10;
}

.floating {
    top: 10%;
    left: -10%;
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    bottom: 10%;
    right: -5%;
    animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Services */
.services {
    padding: 8rem 0;
    background: var(--bg-section);
}

.service-category {
    margin-bottom: 6rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 2rem;
    color: var(--text-main);
    padding-left: 0.5rem;
    border-left: 4px solid var(--accent);
}

.category-title i {
    color: var(--accent);
    width: 28px;
    height: 28px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    color: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(34, 211, 238, 0.5);
}

.service-icon i {
    width: 32px;
    height: 32px;
}

.service-card-content {
    padding: 0;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.learn-more:hover {
    gap: 1.2rem;
    color: var(--primary);
}

/* About Section */
.about {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 2.5rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent);
}

.stat-item p {
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background: var(--bg-section);
}

.testimonials-container {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 2rem;
    transition: var(--transition);
    flex: 0 0 100%;
    flex-shrink: 0;
    /* Default for mobile */
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
        /* 2 cards on tablet */
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 1.35rem);
        /* 3 cards on desktop */
    }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.client {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.client strong {
    color: var(--text-main);
    font-size: 1.1rem;
}

.client span {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.glass-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-group select option {
    background-color: var(--bg-section);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: var(--bg-page);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.2rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question i {
    transition: transform 0.4s ease;
    color: var(--accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.01);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer */
footer {
    padding: 6rem 0 3rem;
    background: #010409;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-about p {
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-gradient);
    color: #020617;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    color: #4b5563;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* WhatsApp Chatbot Widget */
.wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}

.wa-toggle {
    background: #25d366;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-toggle.active {
    background: #ef4444;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
}

.wa-toggle:hover {
    transform: translateY(-5px) scale(1.02);
}

.wa-menu {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 350px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: waSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

.wa-menu.active {
    display: flex;
}

@keyframes waSlideUp {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.wa-header {
    background: var(--accent-gradient);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #020617;
    position: relative;
}

.wa-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.wa-avatar {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.wa-avatar i {
    width: 28px;
    height: 28px;
}

.wa-header-info strong {
    display: block;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.2px;
}

.wa-header-info span {
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wa-header-info span::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.wa-body {
    padding: 1.5rem;
    max-height: 450px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.wa-body::-webkit-scrollbar {
    width: 5px;
}

.wa-body::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.wa-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.wa-services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wa-category {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wa-cat-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 800;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.wa-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    text-decoration: none;
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-service-item:hover {
    background: rgba(34, 211, 238, 0.08);
    border-color: var(--accent);
    transform: translateX(8px);
    color: var(--accent);
}

.wa-service-item i {
    width: 18px;
    height: 18px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.wa-service-item:hover i {
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .nav-links:not(.active),
    .nav-right>.btn {
        display: none;
    }

    .nav-right {
        display: block;
        /* Ensure container is visible for the toggle if needed, or keep as is */
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-grid,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Mobile Menu Styles */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        display: none;
        /* Controlled by JS */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 1000;
        list-style: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links.active .mobile-only {
        display: block;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
    }

    .nav-links .btn {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wa-menu {
        width: 90vw;
        right: -10px;
        bottom: 80px;
    }

    .wa-toggle {
        padding: 10px 20px;
    }

    .wa-toggle span {
        display: none;
    }

    .contact-info {
        padding: 2rem;
    }

    .branch-info {
        margin: 1.5rem 0 !important;
    }
}

/* Message Bubbles */
.wa-chat-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

.msg {
    max-width: 85%;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    border-radius: 1rem;
    position: relative;
    animation: bubbleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bubbleIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.msg.user {
    align-self: flex-end;
    background: var(--accent);
    color: #020617;
    border-bottom-right-radius: 0.2rem;
}

.msg.agent {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
    border-bottom-left-radius: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.typing {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.typing-dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.4s infinite both;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {

    0%,
    80%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

.wa-btn-container {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.wa-final-btn {
    background: #25d366;
    color: white;
    text-align: center;
    padding: 0.9rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
    font-size: 0.9rem;
}

.wa-final-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

.wa-restart {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 0.6rem;
    border-radius: 0.8rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.wa-restart:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Animations */
.service-card,
.contact-info,
.glass-form,
.testimonial-card,
.about-grid,
.faq-item {
    opacity: 0;
    transform: translateY(30px);
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}