/* ========================================
   VARIABLES Y RESET
   ======================================== */
.logo {
    overflow: hidden;
    height: 45px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 200px;
    width: auto;
    mix-blend-mode: multiply;
    margin-top: 27px;
}

:root {
    --primary: #401268;
    --secondary: #060644;
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --shadow: rgba(64, 18, 104, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 18, 104, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 18, 104, 0.05), rgba(6, 6, 68, 0.05));
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(64, 18, 104, 0.1), transparent);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 6, 68, 0.1), transparent);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(64, 18, 104, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION — TERMINAL STYLE
   ======================================== */

.services {
    background: #ffffff;
    padding: 100px 0;
}

.services .section-tag {
    color: #401268;
}

.services .section-title {
    color: #000000;
}

.services .section-description {
    color: var(--gray-medium);
}

.terminal-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(64, 18, 104, 0.18);
    border: 1px solid rgba(64, 18, 104, 0.2);
}

.terminal-bar {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 14px 20px;
    background: #1a0d2e;
    border-bottom: 1px solid rgba(64, 18, 104, 0.5);
}

.terminal-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.terminal-dot.red    { background: #ff5f57; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green  { background: #28c840; }

.terminal-bar-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 auto;
    letter-spacing: 0.3px;
    font-family: 'Inter', monospace;
}

.terminal-body {
    background: #060644;
    padding: 32px 32px 36px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
}

.term-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.term-user  { color: #c084fc; }
.term-at    { color: rgba(255, 255, 255, 0.3); }
.term-cmd   { color: #e2e8f0; }

.term-output {
    margin: 4px 0 20px 0;
    font-size: 13px;
}

.term-output div {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.term-arrow  { color: #a78bfa; }
.term-check  { color: #a78bfa; font-weight: 700; }
.term-success{ color: #c084fc; font-weight: 600; }
.term-url    { color: #a5b4fc; }

.term-cursor {
    display: inline-block;
    width: 9px;
    height: 15px;
    background: #c084fc;
    vertical-align: middle;
    border-radius: 1px;
    margin-left: 2px;
    animation: termBlink 1.1s step-end infinite;
}

@keyframes termBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* Tabla de planes dentro del terminal */
.term-plans-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.term-plans-table.visible {
    opacity: 1;
    transform: translateY(0);
}

.term-plans-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    padding: 6px 14px 10px 0;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.term-plans-table td {
    padding: 13px 14px 13px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.term-plans-table tr:last-child td {
    border-bottom: none;
}

.term-plans-table tr:hover td {
    background: rgba(64, 18, 104, 0.2);
}

.term-plan-code {
    color: #c084fc;
    font-weight: 600;
    font-size: 12.5px;
    white-space: nowrap;
}

.term-plan-name {
    color: #ffffff;
    font-weight: 600;
}

.term-plan-price {
    color: #a5f3b4;
    font-weight: 600;
}

.term-plan-annual {
    color: rgba(255, 255, 255, 0.55);
}

.term-plan-promo {
    color: #fbbf24;
    font-size: 12px;
}

.term-plan-dash {
    color: rgba(255, 255, 255, 0.2);
}

.term-badge-star {
    display: inline-block;
    font-size: 13px;
    margin-left: 4px;
    vertical-align: middle;
}

.term-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.25);
}

/* Servicios info debajo */
.term-services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 28px;
    border: 1px solid rgba(64, 18, 104, 0.25);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: 0.2s;
}

.term-services-list.visible {
    opacity: 1;
    transform: translateY(0);
}

.term-service-item {
    background: rgba(64, 18, 104, 0.1);
    padding: 26px 22px;
    border-right: 1px solid rgba(64, 18, 104, 0.2);
    transition: background 0.25s ease;
}

.term-service-item:last-child {
    border-right: none;
}

.term-service-item:hover {
    background: rgba(64, 18, 104, 0.2);
}

.term-service-label {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 11px;
    color: #c084fc;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.term-service-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.term-service-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 14px;
}

.term-service-feats {
    list-style: none;
}

.term-service-feats li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    padding: 3px 0 3px 14px;
    position: relative;
}

.term-service-feats li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #401268;
    font-weight: bold;
}
/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 100px 0;
    background: #fff;
}

.about .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    color: var(--gray-medium);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.8rem;
    margin-bottom: 2.5rem;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-h-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(64, 18, 104, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 17px;
    flex-shrink: 0;
}

.about-h-text strong {
    font-size: .88rem;
    font-weight: 600;
    color: #111;
    display: block;
    margin-bottom: 2px;
}

.about-h-text span {
    font-size: .8rem;
    color: var(--gray-medium);
    line-height: 1.5;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.stat-item {
    text-align: center;
    padding: 1.2rem 1rem;
    border-radius: 14px;
    background: rgba(64, 18, 104, 0.04);
    border: 1.5px solid rgba(64, 18, 104, 0.1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-medium);
    font-size: 0.8rem;
    margin-top: 0.4rem;
    font-weight: 500;
}

/* Visual / Foto */
.about-visual {
    position: relative;
}

.about-location-chip {
    position: absolute;
    top: -16px;
    left: 16px;
    background: #fff;
    border: 1.5px solid rgba(64, 18, 104, 0.18);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 4px 16px rgba(64, 18, 104, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.about-chip-icon {
    width: 34px;
    height: 34px;
    background: rgba(64, 18, 104, 0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.about-chip-num {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.about-chip-sub {
    font-size: .72rem;
    color: var(--gray-medium);
}

.about-photo-frame {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(64, 18, 104, 0.06), rgba(6, 6, 68, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(64, 18, 104, 0.1);
}

.about-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#about-photo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    opacity: 0.35;
}

/* Responsive */
@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .about-location-chip {
        top: -14px;
        left: 12px;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .stat-item {
        padding: 1rem 0.6rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }
}

/* ========================================
   APPOINTMENT SECTION
   ======================================== */

/* ========================================
   APPOINTMENT SECTION
   ======================================== */

.appointment {
    background: linear-gradient(135deg, #401268, #060644);
    padding: 100px 0;
}

.appointment .section-tag  { color: rgba(255,255,255,0.7); }
.appointment .section-title,
.appointment .section-description { color: #ffffff; }
.appointment .section-description { color: rgba(255,255,255,0.7); }

.appointment-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.appointment-card {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

/* Info lateral */
.appointment-info {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.appointment-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.appointment-info > p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.appt-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2.5rem;
}

.appt-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.appt-benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 18px;
}

.appt-benefit div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.appt-benefit strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.appt-benefit span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

.appt-contact-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.appt-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.appt-contact-item i {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    flex-shrink: 0;
}

/* Formulario */
.appointment-form-wrap {
    background: #ffffff;
    padding: 3rem 2.5rem;
}

.appointment-form-wrap .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.appointment-form-wrap .form-group {
    margin-bottom: 1.2rem;
}

.appointment-form-wrap label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.appointment-form-wrap input,
.appointment-form-wrap select,
.appointment-form-wrap textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #111827;
    background: #f9fafb;
    transition: all 0.2s ease;
    outline: none;
}

.appointment-form-wrap input:focus,
.appointment-form-wrap select:focus,
.appointment-form-wrap textarea:focus {
    border-color: #401268;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(64,18,104,0.08);
}

.appointment-form-wrap textarea {
    resize: vertical;
    min-height: 100px;
}

/* Input error state */
.appointment-form-wrap input.error,
.appointment-form-wrap select.error,
.appointment-form-wrap textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.08);
}

/* Quick services */
.form-quick-services {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.fqs-label {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.fqs-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid #e5e7eb;
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.fqs-btn i {
    font-size: 13px;
}

.fqs-btn:hover,
.fqs-btn.active {
    border-color: #401268;
    background: #401268;
    color: #ffffff;
}

/* Submit button */
.form-submit {
    margin-top: 0.5rem;
}

.btn-appointment {
    width: 100%;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #401268, #060644);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-appointment i {
    font-size: 18px;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(64,18,104,0.35);
}

.btn-appointment:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.spin {
    animation: spin 1s linear infinite;
}

/* Form message */
.form-message {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
}

.form-message i {
    font-size: 16px;
    flex-shrink: 0;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    display: flex;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    display: flex;
}

.form-message.info {
    background: #eff6ff;
    color: #1e40af;
    display: flex;
}

/* Responsive */
@media (max-width: 900px) {
    .appointment-card {
        grid-template-columns: 1fr;
    }
    .appointment-info {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 2rem;
    }
    .appointment-form-wrap {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .appointment-form-wrap .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--gray-medium);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(64, 18, 104, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}