/* ========================================
   TECH CHE — MAIN WEBSITE STYLE
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #151515;
    line-height: 1.6;
}

:root {
    /* Original Tech Che Purple */
    --purple: #9c27e8;
    --deep-purple: #6411a3;
    --light-purple: #e6c5f7;
    --soft-purple: #f6effa;

    /* New Sage Green */
    --sage: #8fa77b;
    --sage-dark: #5f7754;
    --sage-light: #dfe8d7;
    --sage-soft: #f1f5ed;

    /* Neutrals */
    --black: #090909;
    --off-black: #140d18;
    --white: #ffffff;
}

/* ========================================
   NAVIGATION
   ======================================== */

header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1250px;
    min-height: 92px;
    margin: auto;
    padding: 10px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
}

.brand > div {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: "Caveat", cursive;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    color: #c05cff;
}

.tagline {
    font-size: 11px;
    font-weight: 500;
    margin-top: 5px;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .25s;
}

nav ul a:hover {
    color: #c05cff;
}

.nav-button {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 600;

    padding: 13px 25px;

    border-radius: 30px;

    background: linear-gradient(
        135deg,
        #7420b6,
        #bd4ff4
    );

    border: 1px solid #d794ff;

    transition: .25s;
}

.nav-button:hover {
    transform: translateY(-2px);
}


/* ========================================
   HERO
   ======================================== */

.hero {
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(140, 31, 211, .35),
            transparent 27%
        ),
        linear-gradient(
            120deg,
            #050505,
            #13081a 55%,
            #20082f
        );

    color: white;
    padding: 80px 25px;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    min-height: 500px;
    margin: auto;

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

.hero-text h1 {
    font-family: "Caveat", cursive;
    font-size: 75px;
    line-height: .95;
    font-weight: 600;
}

.hero-text h1 span,
.hero-text h1 strong {
    display: block;
}

.hero-text h1 strong {
    color: #a52eea;
    font-weight: 700;
}

.purple-line {
    width: 290px;
    height: 5px;

    background: linear-gradient(
        90deg,
        #8b21ca,
        #c34dff
    );

    margin: 25px 0;

    border-radius: 20px;

    transform: rotate(-2deg);
}

.hero-description {
    max-width: 520px;
    font-size: 17px;
    margin-bottom: 30px;
    color: #eeeeee;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.primary-button,
.secondary-button {
    display: inline-block;

    padding: 13px 25px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .25s;
}

.primary-button {
    background: linear-gradient(
        135deg,
        #8024c7,
        #be48f5
    );

    color: white;
}

.primary-button:hover {
    transform: translateY(-3px);
}

.secondary-button {
    border: 2px solid #a63fe4;
    color: white;
}

.secondary-button:hover {
    background: #a63fe4;
}

.local-message {
    font-family: "Caveat", cursive;
    font-size: 22px;
}

.local-message:first-letter {
    color: #b43cf0;
}

.hero-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 450px;
}

.hero-image img {
    position: relative;
    z-index: 2;

    width: min(390px, 90%);
    height: auto;

    background: rgba(255,255,255,.96);

    border-radius: 25px;

    padding: 18px;

    box-shadow:
        0 0 35px rgba(171, 55, 235, .55);
}

.purple-glow {
    position: absolute;

    width: 420px;
    height: 300px;

    background: #7617b5;

    border-radius:
        46% 54% 61% 39%
        / 48% 41% 59% 52%;

    filter: blur(12px);

    opacity: .65;

    transform: rotate(-7deg);
}


/* ========================================
   SECTION HEADINGS
   ======================================== */

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading > p,
.small-heading {
    color: #8b21ca;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin-top: 4px;

    font-family: "Caveat", cursive;
    font-size: 49px;
    line-height: 1;
}

.section-heading h2 span {
    color: #8f22cc;
}


/* ========================================
   SERVICES
   ======================================== */

.services {
    padding: 75px 25px;
    background: #fff;
}

.service-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    background: #fbf8fc;

    border: 1px solid #e9dced;

    border-radius: 18px;

    padding: 28px;

    display: flex;
    gap: 20px;

    box-shadow:
        0 8px 25px rgba(72, 22, 92, .07);

    transition: .25s;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 13px 30px rgba(95, 28, 126, .13);
}

.service-icon {
    min-width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #7e21b8;

    border-radius: 50%;

    font-size: 27px;
}

.service-card h3 {
    font-family: "Caveat", cursive;
    font-size: 29px;
    margin-bottom: 7px;
}

.service-card p {
    font-size: 14px;
}


/* ========================================
   ABOUT
   ======================================== */

.about {
    padding: 70px 25px;

    background:
        linear-gradient(
            110deg,
            #070707,
            #170b1d
        );

    color: white;
}

.about-layout {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: .8fr 1.2fr;

    align-items: center;

    gap: 60px;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-logo-box {
    background: white;

    padding: 15px;

    border-radius: 25px;

    transform: rotate(-2deg);

    box-shadow:
        0 0 30px rgba(165, 47, 224, .35);
}

.about-logo-box img {
    display: block;
    width: 280px;
    max-width: 100%;
}

.about-text h2 {
    font-family: "Caveat", cursive;

    font-size: 50px;

    line-height: 1;

    margin: 10px 0 20px;
}

.about-text > p:last-child {
    max-width: 570px;
    color: #eeeeee;
}


/* ========================================
   WHY TECH CHE
   ======================================== */

.why {
    padding: 65px 25px;
    background: #fff;
}

.why-box {
    max-width: 720px;

    margin: auto;

    background: #f7effa;

    border-radius: 25px;

    padding: 40px 50px;

    box-shadow:
        0 8px 25px rgba(77, 26, 96, .07);
}

.why-list {
    margin-top: 20px;
}

.why-list p {
    margin: 10px 0;
    font-size: 16px;
}

.why-list p::first-letter {
    color: #9227cf;
}


/* ========================================
   OUR WORK
   ======================================== */

.work {
    padding: 75px 25px;
    background: #faf7fb;
}

.work-placeholder {
    max-width: 600px;

    margin: auto;

    text-align: center;

    padding: 45px;

    background: white;

    border-radius: 20px;

    border: 2px dashed #c888e6;
}

.work-placeholder > p:first-child {
    font-size: 45px;
}

.work-placeholder h3 {
    font-family: "Caveat", cursive;
    font-size: 34px;
    margin: 5px 0 10px;
}


/* ========================================
   QUOTE
   ======================================== */

.quote {
    padding: 40px 25px;

    background:
        linear-gradient(
            90deg,
            #6e18a8,
            #b23fe9
        );

    color: white;
}

.quote-content {
    max-width: 1000px;
    margin: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.quote h2 {
    font-family: "Caveat", cursive;
    font-size: 38px;
}

.quote-button {
    background: #080808;

    color: white;

    text-decoration: none;

    padding: 13px 28px;

    border-radius: 30px;

    font-weight: 600;
}


/* ========================================
   CONTACT
   ======================================== */

.contact {
    padding: 80px 25px;

    text-align: center;

    max-width: 760px;

    margin: auto;
}

.contact h2 {
    font-family: "Caveat", cursive;

    font-size: 50px;

    margin: 5px 0 15px;
}

.contact > p {
    margin-bottom: 18px;
}

.service-area {
    font-weight: 600;
}


/* ========================================
   FOOTER
   ======================================== */

footer {
    background: #050505;

    color: white;

    padding: 30px 25px;
}

.footer-content {
    max-width: 1150px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.footer-brand {
    font-family: "Caveat", cursive;

    font-size: 31px;

    color: #bd4ef4;
}

.footer-services {
    font-size: 13px;
}

.footer-services span {
    color: #b740ed;
    margin: 0 10px;
}

footer p {
    font-size: 11px;
    color: #bbb;
}


/* ========================================
   TABLET
   ======================================== */

@media (max-width: 950px) {

    nav ul {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .purple-line {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        min-height: 350px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text > p:last-child {
        margin: auto;
    }

    .quote-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}


/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 600px) {

    nav {
        min-height: 75px;
        padding: 8px 15px;
    }

    .brand img {
        width: 55px;
        height: 55px;
    }

    .brand-name {
        font-size: 27px;
    }

    .tagline {
        display: none;
    }

    .nav-button {
        padding: 10px 15px;
        font-size: 11px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-content {
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 57px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-image img {
        width: 280px;
    }

    .purple-glow {
        width: 290px;
        height: 220px;
    }

    .section-heading h2 {
        font-size: 41px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-icon {
        width: 65px;
    }

    .about-text h2,
    .contact h2 {
        font-size: 43px;
    }

    .why-box {
        padding: 30px 25px;
    }
}
/* ========================================
   TECH CHE — REQUEST A QUOTE PAGE
   ======================================== */

.quote-page {
    background: #faf7fb;
    min-height: 100vh;
}

/* Quote Page Header */

.quote-hero {
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(151, 42, 219, .35),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #050505,
            #17091f,
            #250a34
        );

    color: white;
    text-align: center;
    padding: 75px 25px 65px;
}

.quote-hero h1 {
    font-family: "Caveat", cursive;
    font-size: 65px;
    line-height: 1;
    margin: 8px 0 18px;
}

.quote-hero h1 span {
    color: #b83ff1;
}

.quote-hero > p:last-child {
    max-width: 550px;
    margin: auto;
    color: #eeeeee;
    font-size: 16px;
}


/* ========================================
   FORM CONTAINER
   ======================================== */

.quote-form-section {
    padding: 60px 25px 90px;
}

.quote-form-container {
    max-width: 760px;
    margin: auto;

    background: white;

    padding: 45px;

    border-radius: 24px;

    border: 1px solid #eadcf0;

    box-shadow:
        0 15px 45px rgba(74, 20, 96, .10);
}


/* ========================================
   FORM LAYOUT
   ======================================== */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;

    margin-bottom: 7px;

    font-size: 14px;
    font-weight: 600;

    color: #27162e;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    padding: 14px 16px;

    border: 1.5px solid #ddcfe3;

    border-radius: 12px;

    background: #fcfafd;

    color: #171717;

    outline: none;

    transition: .25s;
}

.form-group textarea {
    resize: vertical;
}


/* Purple focus effect */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: #a62cdd;

    background: white;

    box-shadow:
        0 0 0 3px rgba(166, 44, 221, .10);
}


/* ========================================
   SUBMIT BUTTON
   ======================================== */

.form-submit {

    width: 100%;

    border: none;

    padding: 15px 25px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #7620b3,
            #bd47f3
        );

    color: white;

    font-family: "Poppins", sans-serif;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: .25s;
}

.form-submit:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(136, 31, 183, .25);
}


/* Note underneath form */

.form-note {

    text-align: center;

    margin-top: 17px;

    font-family: "Caveat", cursive;

    font-size: 20px;

    color: #7c268f;
}


/* ========================================
   QUOTE PAGE MOBILE
   ======================================== */

@media (max-width: 650px) {

    .quote-hero {
        padding: 55px 20px;
    }

    .quote-hero h1 {
        font-size: 50px;
    }

    .quote-form-section {
        padding: 35px 15px 65px;
    }

    .quote-form-container {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* ==============================
   THANK YOU PAGE
================================ */

.thank-you-page {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background:
        radial-gradient(circle at top right, #6411a3 0%, transparent 35%),
        linear-gradient(135deg, #090909, #140d18);
}

.thank-you-box {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    text-align: center;
    padding: 60px 45px;
    border-radius: 28px;
    box-shadow: 0 15px 50px rgba(156, 39, 232, 0.25);
}

.thank-you-heart {
    font-family: 'Caveat', cursive;
    font-size: 75px;
    line-height: 1;
    color: var(--purple);
}

.thank-you-box .small-heading {
    color: var(--deep-purple);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.thank-you-box h1 {
    font-family: 'Caveat', cursive;
    font-size: 58px;
    margin: 5px 0 20px;
    color: var(--black);
}

.thank-you-box h1 span {
    color: var(--purple);
}

.thank-you-message {
    max-width: 560px;
    margin: 0 auto 15px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.thank-you-small {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: var(--deep-purple);
    margin-bottom: 30px;
}

.thank-you-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.thank-you-buttons a {
    text-decoration: none;
}

@media (max-width: 600px) {

    .thank-you-box {
        padding: 45px 25px;
    }

    .thank-you-box h1 {
        font-size: 46px;
    }

    .thank-you-message {
        font-size: 16px;
    }
}
/* ==================================
   TECH CHE SAGE GREEN ACCENTS
================================== */

/* Main buttons */
.nav-button,
.primary-button,
.form-submit {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: white;
    border: none;
}

.nav-button:hover,
.primary-button:hover,
.form-submit:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
}

/* Sage accent on navigation */
nav ul li a:hover {
    color: var(--sage);
}

/* Service icons - alternate purple and sage */
.service-card:nth-child(1) .service-icon,
.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
}

/* Why Choose Tech Che */
.why {
    background: var(--sage-soft);
}

/* Small decorative accents */
.local-message {
    color: var(--sage-light);
}

/* Form focus */
input:focus,
select:focus,
textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(143, 167, 123, 0.15);
}

/* Thank-you heart */
.thank-you-heart {
    color: var(--sage);
}
/* ORIGINAL TECH CHE HEADER */

.nav-button {
    background: linear-gradient(
        135deg,
        var(--purple),
        var(--deep-purple)
    );
    color: #ffffff;
    border: none;
    border-radius: 30px;
}

.nav-button:hover {
    background: var(--deep-purple);
}
