/* Variable Definitions */
:root {
    --primary-purple: #7B1FA2;
    /* Deep Purple from screenshot */
    --primary-yellow: #FFC107;
    /* Gold/Yellow from screenshot */
    --accent-teal: #26C6DA;
    /* Teal from 'Más Económico' card */
    --purple-light: #F3E5F5;

    --bg-color: #FAFAFA;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 10px 30px -5px rgba(255, 193, 7, 0.4);

    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    /* Fixed to account for header height */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #1F2937;
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.5);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
    font-weight: 800;
    position: relative;
    overflow: hidden;
}

.btn-primary::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: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(255, 193, 7, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
}

.btn-outline:hover {
    background: var(--purple-light);
}

.sm-hidden {
    display: none;
}

@media (min-width: 768px) {
    .sm-hidden {
        display: inline-flex;
    }
}

.header .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .header .btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

.text-purple {
    color: var(--primary-purple);
}

.text-teal {
    color: var(--accent-teal);
}

/* Header */
.header {
    padding: 8px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

@media (min-width: 768px) {
    .logo-img {
        height: 75px;
    }
}

/* Nav Menu */
.nav-menu {
    display: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        gap: 30px;
        align-items: center;
        margin-left: auto;
    }
}

.nav-link {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hero Section */
.hero {
    padding-top: 130px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.03) 0%, rgba(255, 193, 7, 0.08) 50%, rgba(38, 198, 218, 0.05) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
}

@media (min-width: 992px) {
    .hero-content {
        text-align: left;
    }
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--purple-light) 0%, rgba(255, 193, 7, 0.15) 100%);
    color: var(--primary-purple);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(123, 31, 162, 0.2);
    border: 2px solid rgba(123, 31, 162, 0.1);
}

.headline {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.headline strong {
    color: var(--primary-purple);
}

@media (min-width: 768px) {
    .headline {
        font-size: 3.5rem;
    }
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (min-width: 992px) {
    .subheadline {
        margin-left: 0;
    }
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

@media (min-width: 600px) {
    .cta-group {
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    .cta-group {
        justify-content: flex-start;
        align-items: flex-start;
    }
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111;
    color: #fff;
    padding: 12px 24px;
    border-radius: 14px;
    transition: var(--transition);
    min-width: 170px;
    text-align: left;
}

.store-btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}



.store-btn i {
    font-size: 1.8rem;
}

.btn-text {
    line-height: 1.2;
}

.btn-text .small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.btn-text .large {
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #fff 0%, #FAFAFA 100%);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    width: fit-content;
    margin: 0 auto;
    border: 2px solid rgba(255, 193, 7, 0.2);
}

@media (min-width: 992px) {
    .trust-badge {
        margin: 0;
    }
}

.avatars {
    display: flex;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    color: white;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.trust-badge p {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    min-height: 500px;
    /* Ensure space for the phones */
}

.blob {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(123, 31, 162, 0.25) 0%, rgba(255, 193, 7, 0.2) 40%, rgba(38, 198, 218, 0.15) 70%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
    filter: blur(60px);
}

.phones-container {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-mockup {
    max-width: 250px;
    height: auto;
    border-radius: 32px;
    /* Slightly adjusted radius */
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
    position: absolute;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid #1f2937;
    /* Ultra-thin uniform border */
    background-color: #1f2937;
    overflow: hidden;
    box-sizing: border-box;
    /* Ensures padding/border doesn't break dimensions */
    object-fit: cover;
    /* Ensures image covers the area uniformly */
    display: block;
}

.phone-center {
    z-index: 20;
    transform: scale(1) translateY(0);
    border-color: #1f2937;
}

.phone-left {
    z-index: 10;
    transform: translateX(-160px) translateY(40px) scale(0.9) rotate(-10deg);
    opacity: 0.95;
    filter: brightness(0.95);
}

.phone-right {
    z-index: 10;
    transform: translateX(160px) translateY(40px) scale(0.9) rotate(10deg);
    opacity: 0.95;
    filter: brightness(0.95);
}

/* Hover Interaction */
.phones-container:hover .phone-center {
    transform: scale(1.05) translateY(-20px);
    z-index: 25;
    box-shadow: 0 45px 80px rgba(123, 31, 162, 0.4);
}

.phones-container:hover .phone-left {
    transform: translateX(-200px) translateY(20px) scale(0.9) rotate(-15deg);
    opacity: 1;
    filter: brightness(1);
    z-index: 15;
}

.phones-container:hover .phone-right {
    transform: translateX(200px) translateY(20px) scale(0.9) rotate(15deg);
    opacity: 1;
    filter: brightness(1);
    z-index: 15;
}

@media (max-width: 768px) {
    .hero-image {
        min-height: 400px;
    }

    .phones-container {
        height: 400px;
        transform: scale(0.75);
    }

    .phone-left {
        transform: translateX(-100px) translateY(30px) scale(0.9) rotate(-8deg);
    }

    .phone-right {
        transform: translateX(100px) translateY(30px) scale(0.9) rotate(8deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.social-proof p {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.social-proof p::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 12px auto 0;
    border-radius: 2px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        justify-content: space-around;
        gap: 60px;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-yellow), var(--accent-teal));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    background: #fff;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    transform: scale(1.1);
}

.icon-box.purple {
    background: var(--purple-light);
    color: var(--primary-purple);
}

.icon-box.teal {
    background: rgba(38, 198, 218, 0.1);
    color: var(--accent-teal);
}

.icon-box.yellow {
    background: rgba(255, 193, 7, 0.15);
    color: #FBC02D;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto 40px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .pricing-grid {
        flex-direction: row;
        align-items: flex-start;
        /* Align top */
    }
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1;
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-header-strip {
    padding: 15px;
    text-align: center;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-header-strip.teal {
    background: var(--accent-teal);
}

.pricing-header-strip.purple {
    background: var(--primary-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pricing-content {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    box-shadow: 0 15px 50px rgba(255, 193, 7, 0.5);
    transform: scale(1.05);
    z-index: 2;
    border: 3px solid var(--primary-yellow);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 15px 50px rgba(255, 193, 7, 0.5);
    }

    to {
        box-shadow: 0 15px 60px rgba(255, 193, 7, 0.7);
    }
}

@media (max-width: 767px) {
    .pricing-card.popular {
        transform: scale(1);
    }
}

.yellow-badge-icon {
    color: var(--primary-yellow);
    background: white;
    border-radius: 50%;
    padding: 2px;
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.price-container {
    margin: 20px 0;
}

.price-container .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    position: relative;
    top: 5px;
}

.price-container .amount {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1;
}

.price-container .period {
    color: var(--text-light);
    font-size: 1rem;
    display: block;
    margin-top: 5px;
}

.features-list {
    margin-bottom: 30px;
    flex: 1;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.check-icon {
    color: var(--white);
    background: var(--primary-yellow);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 3px;
}

.full-width {
    width: 100%;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
}

/* Cancellation Info */
.cancellation-info {
    max-width: 700px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(123, 31, 162, 0.1);
    transition: var(--transition);
}

.cancellation-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(123, 31, 162, 0.15);
    border-color: rgba(123, 31, 162, 0.2);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #9C27B0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(123, 31, 162, 0.3);
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.info-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .cancellation-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #f3f4f6;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fafafa;
    border-radius: 16px;
    margin-bottom: 15px;
    padding: 25px;
    transition: var(--transition);
}

.faq-item:hover {
    background: #fdfdfd;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    padding-left: 28px;
    /* Align with text start */
}

/* Footer Modernized */
.footer {
    background: #1a202c;
    color: #fff;
    padding: 100px 0 40px;
    font-family: var(--font-body);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

@media (min-width: 992px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FBC02D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #a0aec0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary-yellow);
    color: #1a202c;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
    border-color: var(--primary-yellow);
}

.footer-nav-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-nav-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 80px;
    }
}

.footer-links h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #a0aec0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }
}

.footer-bottom p {
    color: #718096;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.contact-info .badge {
    margin-bottom: 20px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-detail-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(123, 31, 162, 0.1);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--purple-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-text .label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.detail-text .value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.detail-text .value:hover {
    color: var(--primary-purple);
}

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    background: #F9FAFB;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-purple);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(123, 31, 162, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}