:root {
    --primary: #4da3ff;
    --primary-dark: #1e40af;
    --secondary: #0ea5e9;
    --accent: #3b82f6;
    --success: #10b981;
    --dark: #0a0e1a;
    --dark-light: #1a1f2e;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(30, 35, 50, 0.6);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);

    /* Higgsfield Colors */
    --color-lime: #D1FE17;
    --color-pink: #FF1F8F;
    --color-yellow: #FFE500;
    --color-cyan: #00D9FF;
}

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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a101f 0%, #1a1f2e 50%, #0a0e1a 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header */
header {
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.login-btn {
    background: var(--primary);
    color: #000;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.login-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Hero */
.hero {
    padding: 180px 20px 100px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 950;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--primary), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 50px;
}

/* Domain Search Box */
.domain-search {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.domain-search h3 {
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 800;
}

.search-box {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 20px;
    gap: 10px;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: #fff;
    font-size: 18px;
    outline: none;
}

.search-btn {
    background: var(--primary);
    color: #000;
    padding: 15px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.3s;
}

.search-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.domain-prices {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.domain-prices div {
    font-size: 15px;
    color: var(--text-muted);
}

.domain-prices b {
    color: #fff;
}

/* Global Section Styles */
.section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 70px;
}

/* Pricing Layout */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.pricing.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Card Style Refinement */
.plan {
    position: relative;
    padding: 10px;
    /* Outer Frame Width */
    border-radius: 32px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.card-inner {
    background: #0d111d;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.plan:hover {
    transform: translateY(-12px) scale(1.02);
    z-index: 5;
}

.plan::before {
    display: none;
    /* Removing old background method */
}

/* Specialized Card Themes */
.plan.popular {
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-yellow) 100%);
    border: none;
}

.plan.popular:hover {
    box-shadow: 0 20px 50px rgba(209, 254, 23, 0.3);
}

.plan.popular .card-inner {
    background: #0f1400;
    /* Dark olive/lime tint */
}

.plan.popular * {
    color: #fff !important;
    /* Higgsfield style uses light text on dark internal cards */
}

.plan.popular .badge {
    background: var(--color-lime);
    color: #000 !important;
}

.plan.popular .order-btn {
    background: var(--color-lime) !important;
    color: #000 !important;
}

.plan.ai-plan {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-cyan) 100%);
    border: none;
}

.plan.ai-plan:hover {
    box-shadow: 0 20px 50px rgba(255, 31, 143, 0.3);
}

.plan.ai-plan .card-inner {
    background: #14010d;
    /* Dark pink/magenta tint */
}

.plan.ai-plan * {
    color: #fff !important;
}

.plan.ai-plan .badge {
    background: var(--color-pink);
    color: #fff !important;
}

.plan.ai-plan .order-btn {
    background: var(--color-pink) !important;
    color: #fff !important;
}

.plan.standard {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan.standard:hover {
    border-color: var(--primary);
    box-shadow: 0 30px 70px rgba(77, 163, 255, 0.2);
}

/* Badge */
.badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--color-pink);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 15px;
    border-radius: 20px;
    text-transform: uppercase;
}

.plan.popular .badge {
    background: #000;
    color: var(--color-lime);
}

/* Typography in Cards */
.plan h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.price span {
    font-size: 16px;
    color: var(--text-muted);
}

.setup-fee {
    font-size: 14px;
    color: var(--color-pink);
    font-weight: 800;
    margin-top: 5px;
}

.features {
    margin: 40px 0;
    list-style: none;
    flex-grow: 1;
}

.features li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.features strong {
    color: #fff;
}

.sub-tag {
    background: rgba(77, 163, 255, 0.1);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 11px;
}

/* Buttons Refinement */
.order-btn {
    display: block;
    width: 100%;
    background: var(--primary);
    color: #000;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
}

.info-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 800;
}

/* Footer Styles */
footer {
    background: #050811;
    padding: 100px 20px 50px;
    border-top: 1px solid var(--border);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
}

/* AI Chat Widget Refined */
.ai-widget-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 2000;
}

.ai-icon-btn {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--color-pink), var(--primary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(255, 31, 143, 0.5);
    transition: 0.4s;
}

.ai-icon-btn:hover {
    transform: rotate(15deg) scale(1.1);
}

.ai-chat-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 380px;
    height: 550px;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.ai-header {
    padding: 22px;
    background: linear-gradient(90deg, var(--color-pink), var(--primary));
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.ai-status-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff00;
}

.ai-messages {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.msg {
    padding: 14px 18px;
    border-radius: 18px;
    max-width: 85%;
    font-size: 15px;
    line-height: 1.5;
}

.msg.bot {
    background: rgba(255, 255, 255, 0.07);
    color: #ddd;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.msg.user {
    background: var(--primary);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 700;
}

.ai-input-area {
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-input-area input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.ai-input-area button {
    background: var(--primary);
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: 0.2s;
}

.ai-input-area button:hover {
    transform: scale(1.1);
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .pricing.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .pricing,
    .info-grid,
    .pricing.grid-4 {
        grid-template-columns: 1fr !important;
    }

    .hero h1 {
        font-size: 40px;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .ai-chat-window {
        width: 320px;
        right: -20px;
    }
}

/* --- INDEX5 SPECIFIC STYLES (Ported & Adapted) --- */

/* Contact Hero Wrapper */
.contact-hero-wrapper {
    max-width: 850px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
}

.messengers-row {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.messenger-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.messenger-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--color-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(77, 163, 255, 0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.messenger-item:hover .messenger-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(77, 163, 255, 0.5);
}

.messenger-icon svg {
    width: 30px;
    height: 30px;
    fill: #000;
}

.messenger-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Contact Info Row */
.contact-info-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-display-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: 0.3s;
}

.info-display-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.info-display-item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    position: relative;
    padding: 8px;
    /* Outer Frame */
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: 0.4s;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--primary);
}

.service-card .card-inner {
    padding: 35px 25px;
    text-align: center;
    background: #0d111d;
    border-radius: 20px;
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(77, 163, 255, 0.3);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 800;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* CTA */
.cta-section {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-yellow) 100%);
    color: #000 !important;
    border: none;
    padding: 22px 60px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 18px;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 15px 40px rgba(209, 254, 23, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(209, 254, 23, 0.6);
}

/* Video Section */
.video-wrapper {
    max-width: 800px;
    margin: 0 auto 50px;
}

#video-container-rt-9527 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border);
    transition: 0.4s;
}

#video-container-rt-9527 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--color-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 31, 143, 0.5);
    transition: 0.4s;
    z-index: 5;
}

#video-container-rt-9527:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 45px rgba(255, 31, 143, 0.7);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 30px solid white;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 8px;
}

/* Social Grid & Buttons */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(77, 163, 255, 0.3);
}

.social-btn svg {
    width: 35px;
    height: 35px;
    fill: var(--primary);
    transition: 0.3s;
}

.social-btn:hover svg {
    fill: #000;
}

/* Mascot */
/* Mascot Styling - Perfectly Round */
.footer-mascot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    margin: 0 auto 20px;
    transition: 0.5s;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.footer-mascot:hover {
    transform: rotate(5deg) scale(1.05);
    border-color: var(--primary);
}

/* Scoped Footer for index5.html */
#contact {
    background: #0a0f1a;
    border-top: 1px solid var(--border);
    padding: 80px 20px 40px;
    color: var(--text-muted);
}

#contact .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

#contact .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

#contact .footer-col h4 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

#contact .footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

#contact .footer-col ul {
    list-style: none;
}

#contact .footer-col ul li {
    margin-bottom: 12px;
}

#contact .footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
}

#contact .footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

#contact .footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    font-size: 14px;
}

#contact .footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

#contact .footer-contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

#contact .footer-contact-item a:hover {
    color: var(--primary);
}

#contact .social-links-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

#contact .social-icon-f {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

#contact .social-icon-f:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

#contact .social-icon-f svg {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    transition: 0.3s;
}

#contact .social-icon-f:hover svg {
    fill: #000;
}

#contact .footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--text-muted);
}

/* Modal Styling Refinement */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 17, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-window {
    background: #111522;
    border-radius: 30px;
    width: 90%;
    max-width: 500px;
    padding: 50px 40px;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: 0.3s;
}

.modal-overlay.active {
    display: flex;
}

.modal-overlay.active .modal-window {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 30px;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #fff;
}

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

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
}

.form-input,
.form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: 0.3s;
    font-size: 15px;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.modal-submit-btn {
    width: 100%;
    background: var(--primary);
    color: #000;
    padding: 18px;
    border-radius: 12px;
    border: none;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.modal-submit-btn:hover {
    background: #fff;
}

.whatsapp-btn {
    background: var(--success);
    color: #fff;
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background: #12d490;
    color: #fff;
}