/* ==============================
   ABOUT PAGE STYLING - KISSOR DIGITAL
============================== */

/* ------------------------------
   HERO SECTION
------------------------------ */
.services-hero {
    background-color: #0A3328; /* dark green */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    border-bottom: 2px solid #D4AF37; /* gold accent */
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #D4AF37;
    text-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    color: #f5f5f5;
}

/* ------------------------------
   ABOUT SECTION - CORE VALUES
------------------------------ */
.about-section {
    padding: 50px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(212,175,55,0.7);
    position: relative;
}

.about-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    margin: 12px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(212,175,55,0.6);
}

.values-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.value-card {
    background: linear-gradient(145deg, #0A3328 0%, #0D1F1A 100%);
    padding: 25px 20px;
    border-radius: 25px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.35s ease;
    color: #FFD700;
    border: 1px solid rgba(212,175,55,0.4);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #FFD700;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}

.value-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 45px rgba(0,0,0,0.3);
    background: linear-gradient(145deg, #0D1F1A 0%, #0A3328 100%);
    border: 1px solid #FFD700;
}

/* ------------------------------
   ABOUT BLOCK SECTIONS (MISSION, VISION, OUR STORY, WHY CHOOSE US, KISSOR DIFFERENCE)
------------------------------ */
.about-block {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-block h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #0A3328;
    margin-bottom: 20px;
    position: relative;
}

.about-block h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #D4AF37;
    margin: 10px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(212,175,55,0.5);
}

/* Mission & Vision 2 columns */
.about-block-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-card {
    background: #F7F7F7;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    max-width: 380px;
    flex: 1 1 300px;
    text-align: center;
    margin: 0 auto;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0A3328;
}

.about-card p {
    font-size: 1rem;
    color: #0A3328;
    line-height: 1.6;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #0A3328;
    max-width: 700px;
    margin: 0 auto 20px;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.about-list-item {
    background: #0A3328;
    color: #FFD700;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ------------------------------
   CALL TO ACTION
------------------------------ */
.about-cta {
    background: #0A3328;
    padding: 50px 20px 70px; /* more bottom padding to separate from footer */
    text-align: center;
    margin-top: 40px;
    border-radius: 20px;
}

.about-cta h2 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(212,175,55,0.6);
}

.about-cta p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 30px;
}

/* ------------------------------
   CALL TO ACTION
------------------------------ */
.about-cta {
    background: #0A3328;
    padding: 50px 20px 70px; /* already has bottom padding */
    text-align: center;
    margin-top: 40px;
    border-radius: 20px;

    /* ADDITION: space from footer */
    margin-bottom: 60px;  /* space between CTA and footer */
}


.about-cta .cta-btn:hover {
    background: #FFC700;
    box-shadow: 0 8px 22px rgba(212,175,55,0.5);
    transform: translateY(-3px);
}

/* ------------------------------
   RESPONSIVE ADJUSTMENTS
------------------------------ */
@media (max-width: 768px) {
    .values-grid {
        gap: 20px;
    }
    .value-card {
        max-width: 100%;
        padding: 25px 20px;
    }
    .about-block-content {
        flex-direction: column;
        gap: 20px;
    }
    .about-card {
        max-width: 100%;
    }
    .about-cta {
        padding: 35px 15px 60px;
    }
    .about-cta .cta-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
}



/* ==============================
   BLOG PAGE
   ============================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.blog-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.blog-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #0D1F1A;
    margin-bottom: 12px;
}

.blog-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #0A3328;
    margin-bottom: 15px;
}

.blog-card .view-details-btn {
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    background-color: #0D1F1A;
    color: #D4AF37;
    transition: background 0.3s ease, transform 0.3s ease;
}

.blog-card .view-details-btn:hover {
    background-color: #145C45;
    transform: scale(1.05);
    color: #fff;
}

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-form, .contact-info {
    flex: 1 1 400px;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #145C45;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.contact-form button {
    padding: 12px 28px;
    border-radius: 50px;
    background-color: #0D1F1A;
    color: #D4AF37;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #145C45;
    transform: scale(1.05);
    color: #fff;
}

.contact-info p {
    font-size: 1rem;
    color: #0D1F1A;
    margin-bottom: 10px;
}

.contact-info a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    border-radius: 50px;
    background-color: #0D1F1A;
    color: #D4AF37;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover {
    background-color: #145C45;
    color: #fff;
    transform: scale(1.05);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .services-hero { height: 250px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
}

@media (max-width: 768px) {
    .contact-section { flex-direction: column; }
    .blog-grid, .values-grid { gap: 20px; }
}

@media (max-width: 480px) {
    .services-hero { height: 200px; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.95rem; }
}
/* ================= REQUEST QUOTE PAGE ================= */
        .quote-hero {
            background: linear-gradient(135deg, var(--kd-dark-green), var(--kd-green));
            color: var(--kd-gold);
            text-align: center;
            padding: 80px 20px 60px;
        }
        .quote-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }
        .quote-hero p {
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .quote-form-container {
            max-width: 720px;
            margin: -40px auto 80px;
            background: #fff;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.15);
        }

        .quote-form-container h2 {
            font-size: 1.8rem;
            color: var(--kd-dark-green);
            margin-bottom: 24px;
            text-align: center;
        }

        .quote-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .quote-form input,
        .quote-form select,
        .quote-form textarea {
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid #ccc;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s ease;
        }

        .quote-form input:focus,
        .quote-form select:focus,
        .quote-form textarea:focus {
            border-color: var(--kd-gold);
            box-shadow: 0 0 10px rgba(212,175,55,0.3);
            outline: none;
        }

        .quote-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .quote-form button {
            background: linear-gradient(120deg, var(--kd-gold), var(--kd-light-gold));
            color: var(--kd-dark-green);
            padding: 14px 22px;
            border: none;
            border-radius: 12px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.35s ease;
        }

        .quote-form button:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 18px rgba(212,175,55,0.4);
        }

        @media screen and (max-width: 991px) {
            .quote-hero h1 { font-size: 2rem; }
            .quote-hero p { font-size: 1rem; }
            .quote-form-container { margin: -20px 15px 60px; padding: 30px 20px; }
        }