:root {
    --bg-color: #030712;
    --bg-darker: #02040a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #8b5cf6;
    --accent-glow: rgba(139, 92, 246, 0.5);
    --secondary-accent: #f97316;
    --secondary-glow: rgba(249, 115, 22, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.max-w-lg {
    max-width: 800px;
}

.container-wide {
    max-width: 1400px;
}

.section-padding {
    padding: 6rem 0;
}

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

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

.w-100 {
    width: 100%;
}

.dark-bg {
    background-color: var(--bg-darker);
}

.relative {
    position: relative;
}

.relative-z {
    position: relative;
    z-index: 10;
}

.section-title {
    margin-bottom: 4rem;
}

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

.section-title span {
    background: linear-gradient(135deg, #a855f7, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.cta-button {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Outfit', sans-serif;
    display: inline-block;
    text-align: center;
}

.primary-glow {
    color: white;
    background: linear-gradient(135deg, var(--accent), #d946ef);
    border: none;
    box-shadow: 0 10px 25px var(--accent-glow);
}

.primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--accent-glow);
}

.secondary-glass {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.secondary-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.strong-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Decorative Orbs */
.blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.purple-blob {
    width: 300px;
    height: 300px;
    background: #a855f7;
    top: 10%;
    right: -10%;
    animation: float 8s ease-in-out infinite alternate;
}

.orange-blob {
    width: 250px;
    height: 250px;
    background: #f97316;
    bottom: 0%;
    left: -10%;
    animation: float 10s ease-in-out infinite alternate-reverse;
}

.small-blob {
    width: 200px;
    height: 200px;
    opacity: 0.3;
}

.right-center {
    top: 40%;
    right: -5%;
}

.left-bottom {
    bottom: 10%;
    left: -5%;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 40px) scale(1.1);
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

/* Content Styles */
.hero-content {
    flex: 1;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 90%;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Carousel Section */
.hero-carousel-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.hero-carousel {
    position: relative;
    width: 480px;
    /* Wider to accommodate two columns */
    height: 85vh;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.dual-carousel {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    justify-content: center;
}

.carousel-container {
    width: 50%;
    height: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    will-change: transform;
    /* We remove the CSS animation and handle transforms in JS with scroll */
}

/* We don't shrink un-active slides for dual carousel since they are smaller */
.slide {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
    border-radius: 16px;
}

/* Fades */
.fade-top,
.fade-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
    pointer-events: none;
}

.fade-top {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-color), transparent);
}

.fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Hover effects */
.hover-glow-purple:hover {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 40px -10px rgba(168, 85, 247, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.hover-glow-purple:hover .service-icon {
    color: #a855f7;
    transform: scale(1.1);
}

.hover-glow-orange:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 10px 40px -10px rgba(249, 115, 22, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.hover-glow-orange:hover .service-icon {
    color: #f97316;
    transform: scale(1.1);
}

.hover-glow-blue:hover {
    border-color: rgba(33, 150, 243, 0.4);
    box-shadow: 0 10px 40px -10px rgba(33, 150, 243, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.hover-glow-blue:hover .service-icon {
    color: #2196f3;
    transform: scale(1.1);
}

.hover-glow-green:hover {
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 10px 40px -10px rgba(76, 175, 80, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.hover-glow-green:hover .service-icon {
    color: #4caf50;
    transform: scale(1.1);
}

.hover-glow-red:hover {
    border-color: rgba(244, 67, 54, 0.4);
    box-shadow: 0 10px 40px -10px rgba(244, 67, 54, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.hover-glow-red:hover .service-icon {
    color: #f44336;
    transform: scale(1.1);
}

.hover-glow-yellow:hover {
    border-color: rgba(255, 235, 59, 0.4);
    box-shadow: 0 10px 40px -10px rgba(255, 235, 59, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.hover-glow-yellow:hover .service-icon {
    color: #ffeb3b;
    transform: scale(1.1);
}

.hover-glow-pink:hover {
    border-color: rgba(233, 30, 99, 0.4);
    box-shadow: 0 10px 40px -10px rgba(233, 30, 99, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.hover-glow-pink:hover .service-icon {
    color: #e91e63;
    transform: scale(1.1);
}

.hover-glow-cyan:hover {
    border-color: rgba(0, 188, 212, 0.4);
    box-shadow: 0 10px 40px -10px rgba(0, 188, 212, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.hover-glow-cyan:hover .service-icon {
    color: #00bcd4;
    transform: scale(1.1);
}

/* Interactive Services Section */
.services {
    cursor: none;
    position: relative;
    overflow: hidden;
}

.services a, 
.services button, 
.services .selection-item {
    cursor: none;
}

/* Allow system cursor in selection list and buttons when hovering */
.service-selection-list,
.service-selection-list *,
.service-cta {
    cursor: auto;
}

.services .service-selection-list .selection-item,
.services .service-selection-list .selection-item *,
.services .service-cta {
    cursor: pointer !important;
}

.service-detail-card {
    min-height: 500px;
    position: relative;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.service-3d-wrapper {
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: 1;
    pointer-events: none;
    top: 0;
    left: 0;
    margin-top: -250px;
    margin-left: -250px;
}

.sphere-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    margin-top: -250px;
    margin-left: -250px;
    transition: background 1s ease;
}

.service-text-overlay {
    position: relative;
    z-index: 10;
    padding: 3rem;
    text-align: left;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-text-overlay.changing {
    opacity: 0;
    transform: scale(0.95);
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.floating-svg {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.8;
    color: var(--item-color, var(--accent));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    pointer-events: none;
}

.floating-svg svg {
    width: 100%;
    height: 100%;
}

.service-text-overlay h3 {
    font-size: 2.2rem;
    margin: 0;
    font-weight: 800;
    text-align: left;
    line-height: 1.2;
}

.service-text-overlay p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 100%;
}

.detail-images-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    justify-content: flex-start;
    pointer-events: auto;
}

.rounded-img {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.rounded-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.rounded-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--item-color, var(--accent));
    color: white;
    pointer-events: auto;
}

.service-selection-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.selection-item {
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.selection-item i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.selection-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.selection-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--item-color);
    transform: translateX(10px);
    box-shadow: 0 0 20px var(--item-glow);
}

.selection-item:hover i,
.selection-item:hover span {
    color: var(--item-color);
}

.selection-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--item-color);
    box-shadow: 0 0 30px var(--item-glow), inset 0 0 15px var(--item-glow);
    transform: translateX(15px);
}

.selection-item.active i,
.selection-item.active span {
    color: var(--item-color);
    text-shadow: 0 0 10px var(--item-glow);
}

/* Irradiation pulse effect */
.selection-item.active::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 20px var(--item-color);
    opacity: 0;
    animation: irradiate 2s infinite;
}

@keyframes irradiate {
    0% {
        box-shadow: 0 0 0px var(--item-color);
        opacity: 0.5;
    }
    100% {
        box-shadow: 0 0 30px var(--item-color);
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .services-interactive-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .service-selection-list {
        order: -1;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .selection-item {
        flex-shrink: 0;
        padding: 1rem 1.5rem;
        white-space: nowrap;
    }
    
    .selection-item:hover {
        transform: none;
    }
}

/* Projects Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 1.5rem;
    margin-top: 2rem;
}

.bento-item {
    position: relative;
    border-radius: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bento-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.item-large { grid-column: span 2; grid-row: span 2; }
.item-medium { grid-column: span 1; grid-row: span 2; }
.item-wide { grid-column: span 2; grid-row: span 1; }
.item-small { grid-column: span 1; grid-row: span 1; }

.bento-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    transition: all 0.5s ease;
}

.bento-content i {
    font-size: 3rem;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.bento-content span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.4;
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 92, 246, 0.9), transparent);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-item:hover .bento-overlay {
    opacity: 1;
    transform: translateY(0);
}

.bento-item:hover .bento-content {
    opacity: 0;
    transform: scale(0.8);
}

.bento-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.bento-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .item-large, .item-medium, .item-wide, .item-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    position: relative;
}

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 10;
}

.highlight-border {
    position: relative;
}

.highlight-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent), var(--secondary-accent));
    border-radius: 26px;
    z-index: -1;
    opacity: 0.5;
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent), #d946ef);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
}

.price span:first-child {
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 2.5;
    margin-right: 5px;
}

.price span:last-child {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features {
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li.disabled {
    color: #475569;
    text-decoration: line-through;
}

.text-green {
    color: #10b981;
}

.text-muted {
    color: #475569;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1.5rem 2rem;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 2rem;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Form Section */
.services-interactive-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info h2 span {
    color: var(--secondary-accent);
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--accent);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    width: 100%;
    appearance: none;
    cursor: pointer;
}

.custom-select-wrapper i {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
}

footer p {
    color: var(--text-muted);
}

.social-links a {
    color: var(--text-muted);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 6rem;
        height: auto;
        gap: 3rem;
    }

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

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

    .hero-carousel-wrapper {
        height: 60vh;
        width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}
/* Multi-step Form */
.multi-step-form {
    position: relative;
    overflow: hidden;
}

.form-step {
    display: none;
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.form-step.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.success-content .success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.success-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-muted);
}

.d-flex.gap-1 {
    display: flex;
    gap: 1rem;
}
