/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}

body {
    background: #05080f;
    color: #ffffff;
}

/* CONTAINER */
.sp-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HEADER
========================= */
.sp-header {
    position: relative; /* REQUIRED */
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: #05080f;
}

.sp-header .sp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.sp-logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* NAV (DESKTOP) */
.sp-nav {
    display: flex;
    align-items: center;
}

.sp-nav a {
    color: #cfd6ff;
    margin: 0 14px;
    text-decoration: none;
    font-size: 14.5px;
}

/* CALL BUTTON (DESKTOP) */
.sp-call-btn {
    background: linear-gradient(135deg, #6a5cff, #00e0ff);
    color: #000;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

/* =========================
   TOGGLE (HAMBURGER)
========================= */
.sp-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.sp-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
}

/* =========================
   HERO
========================= */
.sp-hero {
    padding: 120px 0 100px;
    background: radial-gradient(circle at top, #0b1230, #05080f);
}

.sp-slider {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.sp-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    text-align: center;
}

.sp-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.sp-slide h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ffffff, #7ad7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-slide p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 34px;
    color: #cfd6ff;
}

/* HERO BUTTON */
.sp-hero-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 40px;
    background: linear-gradient(135deg, #6a5cff, #00e0ff);
    color: #000;
    font-weight: 800;
    text-decoration: none;
    font-size: 16px;
}

/* DOTS */
.sp-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.dot.active {
    background: #00e0ff;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 900px) {

    /* SHOW TOGGLE */
    .sp-toggle {
        display: flex;
    }

    /* HIDE DESKTOP NAV */
    .sp-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #05080f;

        display: none; /* IMPORTANT */
        flex-direction: column;
        padding: 25px 0;

        border-top: 1px solid rgba(255,255,255,0.08);
    }

    /* SHOW MENU */
    .sp-nav.active {
        display: flex;
    }

    .sp-nav a {
        padding: 14px 0;
        margin: 0;
        text-align: center;
        font-size: 16px;
    }

    /* HIDE DESKTOP CALL */
    .sp-call-btn {
        display: none;
    }

    /* MOBILE CALL */
    .sp-call-mobile {
        margin-top: 18px;
        background: linear-gradient(135deg, #6a5cff, #00e0ff);
        color: #000;
        padding: 14px 24px;
        border-radius: 30px;
        font-weight: 800;
        text-decoration: none;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .sp-slide h1 {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .sp-slide h1 {
        font-size: 32px;
    }

    .sp-hero {
        padding: 90px 0 80px;
    }
}
/* =========================
   ABOUT US SECTION
========================= */
.sp-about {
    padding: 120px 0;
    background: radial-gradient(
        circle at bottom,
        #0b1230,
        #05080f
    );
}

/* Wrapper */
.sp-about-wrap {
    max-width: 820px;
    margin: auto;
    text-align: center;
}

/* Heading */
.sp-about h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 28px;
    background: linear-gradient(90deg, #ffffff, #7ad7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.sp-about p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #cfd6ff;
    margin-bottom: 22px;
}

/* CTA Button */
.sp-about-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 42px;
    border-radius: 40px;
    background: linear-gradient(135deg, #6a5cff, #00e0ff);
    color: #000;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0, 224, 255, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sp-about-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 65px rgba(0, 224, 255, 0.4);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .sp-about {
        padding: 100px 0;
    }

    .sp-about h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .sp-about {
        padding: 85px 0;
    }

    .sp-about h2 {
        font-size: 32px;
    }

    .sp-about p {
        font-size: 16px;
    }

    .sp-about-btn {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
}
/* =========================
   PLANS SECTION
========================= */
.sp-plans {
    padding: 120px 0;
    background: linear-gradient(
        180deg,
        #05080f 0%,
        #070c18 100%
    );
}

/* Heading */
.sp-plans-head {
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center;
}

.sp-plans-head h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ffffff, #8fdfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-plans-head p {
    font-size: 17px;
    line-height: 1.8;
    color: #b8c0ff;
}

/* Grid */
.sp-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.sp-plan-card {
    position: relative;
    padding: 40px 32px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sp-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 224, 255, 0.12);
}

/* Featured */
.sp-plan-card.featured {
    border: 2px solid #00e0ff;
    box-shadow: 0 35px 70px rgba(0, 224, 255, 0.18);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6a5cff, #00e0ff);
    color: #000;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 900;
}

/* Text */
.sp-plan-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
}

.plan-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: #cfd6ff;
    margin-bottom: 22px;
}

.sp-plan-card ul {
    list-style: none;
    margin-bottom: 28px;
}

.sp-plan-card ul li {
    font-size: 14.5px;
    color: #cfd6ff;
    margin-bottom: 10px;
}

/* Button */
.sp-plan-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 40px;
    background: rgba(255,255,255,0.08);
    color: #00e0ff;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(0,224,255,0.4);
}

.featured-btn {
    background: linear-gradient(135deg, #6a5cff, #00e0ff);
    color: #000;
    border: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .sp-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sp-plans {
        padding: 90px 0;
    }

    .sp-plans-grid {
        grid-template-columns: 1fr;
    }

    .sp-plans-head h2 {
        font-size: 32px;
    }

    .sp-plan-btn {
        width: 100%;
        text-align: center;
    }
}
/* =========================
   SERVICES SECTION
========================= */
.sp-services {
    padding: 120px 0;
    background: radial-gradient(
        circle at top,
        #05080f,
        #070c18
    );
}

/* Heading */
.sp-services-head {
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center;
}

.sp-services-head h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ffffff, #8fdfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-services-head p {
    font-size: 17px;
    line-height: 1.8;
    color: #b8c0ff;
}

/* Grid */
.sp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.sp-service-card {
    padding: 38px 32px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sp-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 224, 255, 0.12);
}

.sp-service-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
}

.sp-service-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #cfd6ff;
    margin-bottom: 26px;
}

/* CTA */
.sp-service-card a {
    font-size: 15px;
    font-weight: 800;
    color: #00e0ff;
    text-decoration: none;
}

.sp-service-card a:hover {
    text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .sp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sp-services {
        padding: 90px 0;
    }

    .sp-services-grid {
        grid-template-columns: 1fr;
    }

    .sp-services-head h2 {
        font-size: 32px;
    }
}
/* =========================
   CTA SECTION
========================= */
.sp-cta {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        #0b1230,
        #05080f
    );
}

/* Wrapper */
.sp-cta-wrap {
    max-width: 860px;
    margin: auto;
    text-align: center;
    padding: 70px 60px;
    border-radius: 28px;

    background: linear-gradient(
        135deg,
        rgba(106, 92, 255, 0.18),
        rgba(0, 224, 255, 0.15)
    );

    border: 1px solid rgba(0, 224, 255, 0.35);
    box-shadow: 0 40px 80px rgba(0, 224, 255, 0.18);
}

/* Heading */
.sp-cta-wrap h2 {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #ffffff, #8fdfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.sp-cta-wrap p {
    font-size: 17px;
    line-height: 1.8;
    color: #cfd6ff;
    margin-bottom: 36px;
}

/* CTA Button */
.sp-cta-btn {
    display: inline-block;
    padding: 18px 44px;
    border-radius: 50px;
    background: linear-gradient(135deg, #6a5cff, #00e0ff);
    color: #000;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(0, 224, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sp-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 224, 255, 0.55);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .sp-cta-wrap {
        padding: 60px 40px;
    }

    .sp-cta-wrap h2 {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .sp-cta {
        padding: 90px 0;
    }

    .sp-cta-wrap {
        padding: 45px 28px;
    }

    .sp-cta-wrap h2 {
        font-size: 32px;
    }

    .sp-cta-btn {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
}


/* =========================
   TESTIMONIALS SECTION
========================= */
.sp-testimonials {
    padding: 120px 0;
    background: radial-gradient(
        circle at top,
        #05080f,
        #070c18
    );
}

/* Heading */
.sp-testimonials-head {
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center;
}

.sp-testimonials-head h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ffffff, #8fdfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-testimonials-head p {
    font-size: 17px;
    line-height: 1.8;
    color: #b8c0ff;
}

/* Grid */
.sp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.sp-testimonial-card {
    padding: 40px 34px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sp-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 224, 255, 0.12);
}

/* Text */
.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #cfd6ff;
    margin-bottom: 22px;
    font-style: italic;
}

/* Name */
.testimonial-name {
    font-size: 14.5px;
    font-weight: 800;
    color: #00e0ff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .sp-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .sp-testimonials {
        padding: 90px 0;
    }

    .sp-testimonials-head h2 {
        font-size: 32px;
    }
}
/* =========================
   FAQ SECTION
========================= */
.sp-faq {
    padding: 120px 0;
    background: linear-gradient(
        180deg,
        #05080f,
        #070c18
    );
}

/* Heading */
.sp-faq-head {
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center;
}

.sp-faq-head h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ffffff, #8fdfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-faq-head p {
    font-size: 17px;
    line-height: 1.8;
    color: #b8c0ff;
}

/* FAQ List */
.sp-faq-list {
    max-width: 900px;
    margin: auto;
}

/* Item */
.sp-faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
}

/* Question */
.sp-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Plus */
.sp-faq-question span {
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* Answer */
.sp-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #cfd6ff;
    transition: max-height 0.35s ease;
}

/* Active */
.sp-faq-item.active .sp-faq-answer {
    max-height: 220px;
    padding-bottom: 22px;
}

.sp-faq-item.active .sp-faq-question span {
    transform: rotate(45deg);
}

/* CTA */
.sp-faq-cta {
    margin-top: 60px;
    text-align: center;
}

.sp-faq-cta p {
    font-size: 16px;
    font-weight: 700;
    color: #cfd6ff;
    margin-bottom: 12px;
}

.sp-faq-cta a {
    font-size: 20px;
    font-weight: 900;
    color: #00e0ff;
    text-decoration: none;
}

.sp-faq-cta a:hover {
    text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
    .sp-faq {
        padding: 90px 0;
    }

    .sp-faq-head h2 {
        font-size: 32px;
    }

    .sp-faq-question {
        font-size: 15px;
    }
}
/* =========================
   DISCLAIMER SECTION
========================= */
.sp-disclaimer {
    padding: 110px 0;
    background: linear-gradient(
        180deg,
        #05080f,
        #060b16
    );
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Heading */
.sp-disclaimer h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #ffffff, #8fdfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.sp-disclaimer p {
    max-width: 900px;
    margin: 0 auto 18px;
    font-size: 14.5px;
    line-height: 1.8;
    color: #cfd6ff;
    text-align: center;
}

/* Note */
.disclaimer-note {
    font-weight: 700;
    color: #b8c0ff;
    margin-top: 10px;
}

/* CTA */
.sp-disclaimer-btn {
    display: block;
    width: fit-content;
    margin: 35px auto 0;
    padding: 14px 36px;
    border-radius: 40px;
    background: linear-gradient(135deg, #6a5cff, #00e0ff);
    color: #000;
    font-size: 15.5px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0, 224, 255, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sp-disclaimer-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 65px rgba(0, 224, 255, 0.45);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
    .sp-disclaimer {
        padding: 90px 0;
    }

    .sp-disclaimer h2 {
        font-size: 30px;
    }

    .sp-disclaimer p {
        font-size: 14px;
    }

    .sp-disclaimer-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}
/* =========================
   FOOTER SECTION
========================= */
.sp-footer {
    padding: 90px 0 30px;
    background: #05080f;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Grid */
.sp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Columns */
.sp-footer-col h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
    color: #ffffff;
}

.sp-footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
}

.sp-footer-col p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #cfd6ff;
}

.sp-footer-col ul {
    list-style: none;
}

.sp-footer-col ul li {
    margin-bottom: 10px;
}

.sp-footer-col ul li a {
    font-size: 14.5px;
    color: #cfd6ff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.sp-footer-col ul li a:hover {
    color: #00e0ff;
}

/* Contact */
.sp-footer-col a {
    color: #00e0ff;
    text-decoration: none;
    font-weight: 800;
}

.sp-footer-note {
    margin-top: 6px;
    font-size: 13.5px;
    color: #b8c0ff;
}

/* Bottom */
.sp-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.sp-footer-bottom p {
    font-size: 13.5px;
    color: #9fa8ff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
    .sp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .sp-footer {
        padding: 70px 0 25px;
    }

    .sp-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* =========================
   FIXED CALL NOW BUTTON
========================= */
.sp-fixed-call {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;

    background: linear-gradient(135deg, #6a5cff, #00e0ff);
    color: #000;
    text-decoration: none;

    padding: 14px 22px;
    border-radius: 50px;

    font-size: 14.5px;
    font-weight: 900;

    display: flex;
    align-items: center;

    box-shadow: 0 0 0 rgba(0,224,255,0.6);
    animation: spPulse 2.5s infinite;
}

/* Number */
.sp-fixed-call span {
    font-size: 13.5px;
    font-weight: 800;
}

/* Hover */
.sp-fixed-call:hover {
    animation: none;
    box-shadow: 0 25px 60px rgba(0,224,255,0.55);
    transform: translateY(-3px);
}

/* Pulse Animation */
@keyframes spPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,224,255,0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(0,224,255,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,224,255,0);
    }
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 600px) {
    .sp-fixed-call {
        right: 16px;
        bottom: 16px;
        padding: 16px 26px;
        font-size: 15px;
    }

    .sp-fixed-call span {
        font-size: 14px;
    }
}
/* =========================
   CONTACT PAGE
========================= */

/* Hero */
.sp-contact-hero {
    padding: 110px 0 90px;
    background: radial-gradient(circle at top, #0b1230, #05080f);
    text-align: center;
}

.sp-contact-hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #ffffff, #8fdfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-contact-hero p {
    font-size: 17px;
    line-height: 1.8;
    color: #cfd6ff;
}

/* Section */
.sp-contact {
    padding: 120px 0;
    background: #05080f;
}

/* Grid */
.sp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* Info */
.sp-contact-info h2,
.sp-contact-form h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 18px;
    color: #ffffff;
}

.sp-contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #cfd6ff;
    margin-bottom: 30px;
}

/* Call Box */
.sp-contact-call span {
    display: block;
    font-size: 14px;
    color: #b8c0ff;
    margin-bottom: 6px;
}

.sp-contact-call a {
    font-size: 26px;
    font-weight: 900;
    color: #00e0ff;
    text-decoration: none;
}

.sp-contact-call small {
    display: block;
    margin-top: 6px;
    font-size: 13.5px;
    color: #b8c0ff;
}

/* Form */
.sp-contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 45px;
    backdrop-filter: blur(6px);
}

.sp-form-group {
    margin-bottom: 18px;
}

.sp-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.sp-form-group input,
.sp-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: #05080f;
    color: #ffffff;
    font-size: 14.5px;
    outline: none;
}

.sp-form-group input:focus,
.sp-form-group textarea:focus {
    border-color: #00e0ff;
}

/* Submit */
.sp-contact-submit {
    width: 100%;
    padding: 15px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(135deg, #6a5cff, #00e0ff);
    color: #000;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sp-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(0,224,255,0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .sp-contact-grid {
        grid-template-columns: 1fr;
    }

    .sp-contact-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .sp-contact {
        padding: 90px 0;
    }

    .sp-contact-form {
        padding: 30px;
    }

    .sp-contact-call a {
        font-size: 22px;
    }
}
