:root {
    --primary-pink: #E706CB;
    --primary-violet: #3D2EA2;
    --primary-gradient: linear-gradient(135deg, #E706CB 0%, #3D2EA2 100%);
    --secondary-gradient: linear-gradient(135deg, #3D2EA2 0%, #E706CB 100%);
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    --bg-light: #fdfbfd;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

body {
    font-family: 'Spline Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.highlight-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-modern {
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-modern-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 6, 203, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 6, 203, 0.4);
    color: white;
}

.btn-modern-white {
    background: white;
    color: var(--primary-violet);
    box-shadow: var(--shadow-sm);
}

.btn-modern-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-pink);
}

/* Header */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.modern-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 40px;
}

.modern-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.modern-nav-link {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.modern-nav-link:hover {
    color: var(--primary-pink);
}

.modern-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s;
}

.modern-nav-link:hover::after {
    width: 100%;
}

/* Hero Section (Refined) */
.modern-hero {
    position: relative;
    padding: 90px 0 100px;
    background: linear-gradient(135deg, #fdfbfd 0%, #f4f0ff 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(231, 6, 203, 0.05) 0%, rgba(61, 46, 162, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.modern-hero-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(231, 6, 203, 0.1);
    color: var(--primary-pink);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(231, 6, 203, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.type-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--primary-pink);
    margin-left: 5px;
    vertical-align: middle;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    /* scale: 1.09; */
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.hero-image:hover {
    transform: rotateY(0) rotateX(0);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotateY(-5deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-5deg) rotateX(5deg);
    }

    100% {
        transform: translateY(0px) rotateY(-5deg) rotateX(5deg);
    }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: float-delayed 5s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -5%;
    width: 180px;
}

.card-2 {
    bottom: 15%;
    right: -5%;
    width: 200px;
    animation-delay: 2s;
}

@keyframes float-delayed {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: transparent;
}

.stats-box {
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
}

.stats-box::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.stats-box::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(231, 6, 203, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(231, 6, 203, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-pink);
    font-size: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-gradient);
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section .row {
    margin: 0 -15px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 24px;
    color: #e0e0e0;
}

.testimonial-text {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
    font-weight: 400;
}

.testimonial-text .highlight-word {
    color: #FF6B6B;
    font-weight: 600;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.user-info {
    text-align: left;
}

.user-info h5 {
    margin: 0 0 2px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

.user-info span {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 400;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.modern-accordion .accordion-item {
    border: none;
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.modern-accordion .accordion-button {
    padding: 20px 30px;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    box-shadow: none;
}

.modern-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-pink);
    background: rgba(231, 6, 203, 0.02);
}

.modern-accordion .accordion-body {
    padding: 0 30px 30px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* Footer */
.modern-footer {
    background: #0f0f1a;
    color: #a0a0b0;
    padding: 80px 0 30px;
    z-index: 9999;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;

}

.footer-desc {
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a0a0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .modern-header .container {
        padding: 0 20px;
    }

    .modern-nav {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        margin-top: 50px;
    }

    .modern-hero-row {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

.highlight-text,
.type-text {
    color: var(--primary-pink) !important;
    background: none !important;
    -webkit-text-fill-color: var(--primary-pink) !important;
}

/* Redesigned Features Section (Light Green Theme) */
.features-section {
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #e0f7fa 0%, #f1f8e9 100%) !important;
    color: var(--text-dark) !important;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(61, 46, 162, 0.05) 0%, rgba(231, 6, 203, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.features-section .section-title {
    color: var(--text-dark) !important;
}

.features-section .section-subtitle {
    color: var(--text-muted) !important;
}

.feature-card {
    background: white !important;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(61, 46, 162, 0.2) !important;
}

.feature-icon {
    background: rgba(61, 46, 162, 0.05) !important;
    color: var(--primary-violet) !important;
}

.feature-card:hover .feature-icon {
    background: var(--primary-violet) !important;
    color: white !important;
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    color: var(--text-dark) !important;
}

.feature-desc {
    color: var(--text-muted) !important;
}

/* Hardware Section */
/* Hardware Section */
.hardware-section {
    padding: 100px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.hardware-title {
    margin-bottom: 50px;
    text-align: center;
}

.hardware-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.hardware-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(231, 6, 203, 0.2);
}

.hardware-img-wrapper {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    width: 100%;
}

.hardware-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.hardware-card:hover .hardware-image {
    transform: scale(1.1);
}

.hardware-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.hardware-info p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}


.swiper-pagination-bullet-active {
    background-color: var(--primary-pink);
}

.hardwareSwiper {
    padding-bottom: 60px;
}

.hardwareSwiper .swiper-pagination {
    bottom: 0px !important;
}

/* Pricing Table Redesign */
.pricing-table-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.pricing {
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.pricing:hover {
    background: rgba(var(--primary-pink-rgb), 0.02);
}

/* Label Column */
.pricing-table-container .col:first-child .pricing>div:first-child {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-table-container .col:first-child .pricing .pricing-details p {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    padding-left: 20px;
}

.pricing-table-container .col:first-child .pricing .sticker {
    background: transparent;
    border: none;
}

.pricing-table-container .col:first-child .pricing .sticker .h3 {
    color: transparent;
    /* Hide "Plan" text visually but keep space if needed, or style it */
    color: var(--text-dark);
    font-size: 1.5rem;
}

.pricing-table-container .col:first-child .pricing .sticker .h4 {
    display: none;
}

.pricing-table-container .col:first-child .pricing .pricing-header {
    min-height: 50px;
}

.pricing-table-container .col:first-child .pricing .price {
    min-height: 140px;
}

/* Plan Columns */
.pricing>div:first-child {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing .sticker {
    text-align: center;
    padding: 30px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.pricing .pricing-header {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing .price {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 15px;
}

.pricing .pricing-header .h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.pricing .price .h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-pink);
    display: block;
}

.pricing .price .currency-code {
    font-size: 1.2rem;
    vertical-align: top;
    margin-right: 2px;
}

.pricing .price .package-price {
    font-size: inherit;
}

/* Features Rows */
.pricing-details p {
    padding: 15px 10px;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    color: var(--text-muted);
    font-size: 0.85rem;
    height: 55px;
    /* Fixed height for perfect alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center icons */
}

.pricing-table-container .col:first-child .pricing-details p {
    justify-content: flex-start;
    /* Left align labels */
}

/* Icons */
.pricing-details i.ti-check {
    color: #00b894;
    background: rgba(0, 184, 148, 0.1);
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.pricing-details i.ti-close {
    color: #ff7675;
    background: rgba(255, 118, 117, 0.1);
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

/* Signup Button */
.pricing .button.style2 {
    background: white;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

.pricing .button.style2:hover {
    background: var(--primary-pink);
    color: white;
    box-shadow: 0 5px 15px rgba(231, 6, 203, 0.3);
}

/* Highlight Hover Column */
.col:hover .pricing {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    z-index: 2;
    border-radius: 16px;
    border: 1px solid var(--primary-pink);
}

/* Make "Plan" column stand out less on hover */
.pricing-table-container .col:first-child:hover .pricing {
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
}


/* Contact Section Redesign */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfbfd 0%, #f7f3ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 6, 203, 0.03) 0%, rgba(61, 46, 162, 0.03) 100%);
    border-radius: 50%;
    z-index: 0;
}

.contact-info-wrapper {
    position: relative;
    z-index: 1;
}

.badge-modern {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(231, 6, 203, 0.1);
    color: var(--primary-pink);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details-list {
    margin-top: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: var(--primary-pink);
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon {
    transform: translateY(-5px);
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 15px 30px rgba(231, 6, 203, 0.2);
}

.detail-content {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.detail-value {
    margin: 0;
    font-weight: 700;
    color: var(--text-dark);
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-link-item {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.social-link-item:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-title {
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.form-group-modern label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--text-dark);
}

.form-control-modern {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: #fdfdfd;
}

.pricing-details i.ti-close {
    color: #ff7675;
    background: rgba(255, 118, 117, 0.1);
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

/* Signup Button */
.pricing .button.style2 {
    background: white;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

.pricing .button.style2:hover {
    background: var(--primary-pink);
    color: white;
    box-shadow: 0 5px 15px rgba(231, 6, 203, 0.3);
}

/* Highlight Hover Column */
.col:hover .pricing {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    z-index: 2;
    border-radius: 16px;
    border: 1px solid var(--primary-pink);
}

/* Make "Plan" column stand out less on hover */
.pricing-table-container .col:first-child:hover .pricing {
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
}


/* Contact Section Redesign */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfbfd 0%, #f7f3ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 6, 203, 0.03) 0%, rgba(61, 46, 162, 0.03) 100%);
    border-radius: 50%;
    z-index: 0;
}

.contact-info-wrapper {
    position: relative;
    z-index: 1;
}

.badge-modern {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(231, 6, 203, 0.1);
    color: var(--primary-pink);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details-list {
    margin-top: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: var(--primary-pink);
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon {
    transform: translateY(-5px);
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 15px 30px rgba(231, 6, 203, 0.2);
}

.detail-content {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.detail-value {
    margin: 0;
    font-weight: 700;
    color: var(--text-dark);
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-link-item {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.social-link-item:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-title {
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.form-group-modern label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--text-dark);
}

.form-control-modern {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: #fdfdfd;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--text-dark);
}