/* ========================================
   Cedar Stone Tree Works LLC - Main Styles
   ======================================== */

/* CSS Variables */
:root {
    --primary-green: #2d5a27;
    --primary-green-dark: #1e3d1a;
    --primary-green-light: #4a8c42;
    --accent-brown: #8b6914;
    --accent-tan: #d4a849;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --off-white: #f8f9f5;
    --light-gray: #e8e8e8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Merriweather', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-icon {
    font-size: 2.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-green);
    line-height: 1.2;
}

.logo-subtext {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--accent-brown);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-green);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--primary-green);
    background: var(--off-white);
    padding: 10px 20px;
    border-radius: 25px;
}

.nav-phone:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d5a27 0%, #1a3a15 50%, #0d1f0a 100%);
    background-image: url('images/hero_section.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    text-align: left;
}

.hero-text {
    color: var(--white);
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 1;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-phone {
    margin-top: 0;
}

.hero-phone a {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-green);
    padding: 15px 30px;
    border-radius: 5px;
    transition: var(--transition);
}

.hero-phone a:hover {
    background: var(--primary-green-light);
    transform: translateY(-2px);
}

/* Hero Form */
.hero-form-container {
    width: 100%;
}

.hero-form {
    background: var(--white);
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    text-align: center;
}

.hero-form > p {
    color: var(--text-medium);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 30px 20px;
}

.form-success .success-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-medium);
    margin-bottom: 10px;
}

.form-success .success-phone a {
    color: var(--primary-green);
    font-weight: 600;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* CTA Section Primary Button Override */
.cta .btn-primary {
    background: var(--white);
    color: var(--primary-green-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 60px 0 100px;
    background: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.25rem;
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Layout - Image Left, Grid Right */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.services-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.service-icon {
    margin-bottom: 10px;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-us {
    padding: 100px 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.feature p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: 60px 0 100px;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: 10px;
    padding: 35px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-green);
    opacity: 0.2;
    line-height: 1;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white) !important;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 12px;
    width: fit-content;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary-dark {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary-dark:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 200px;
    height: auto;
    opacity: 0.17;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

.footer-info-content {
    position: relative;
    z-index: 1;
    padding-left: 10px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-tan);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a:hover {
    color: var(--accent-tan);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: lowercase;
    transition: var(--transition);
    color: var(--white);
}

.social-fb {
    background: #1877F2;
}

.social-fb:hover {
    background: #0d65d9;
    transform: scale(1.1);
}

.social-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-ig:hover {
    background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #8a3ab9);
    transform: scale(1.1);
}

.social-google {
    background: #EA4335;
}

.social-google:hover {
    background: #d33426;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-image {
        max-height: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero {
        padding: 140px 0 60px;
    }

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

    .hero-text {
        order: 1;
    }

    .hero-form-container {
        order: 2;
        max-width: 450px;
        margin: 0 auto;
    }

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

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 2rem;
    }

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

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

    .footer-logo {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* ========================================
   About Page Styles
   ======================================== */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d5a27 0%, #1a3a15 50%, #0d1f0a 100%);
    background-image: url('images/hero_section.JPG');
    background-size: cover;
    background-position: center;
    padding: 140px 20px 80px;
    text-align: left;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 90, 39, 0.9) 0%,
        rgba(30, 61, 26, 0.85) 100%
    );
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.7;
}

/* Founder Story Section */
.founder-story {
    padding: 100px 0;
    background: var(--white);
}

.founder-story-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.section-title-left {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.story-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-tan);
    margin-bottom: 30px;
    border-radius: 2px;
}

.founder-story-text p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.founder-story-text p:last-child {
    margin-bottom: 0;
}

.founder-story-accent {
    background: var(--off-white);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 2px solid var(--light-gray);
}

.accent-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.accent-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Meet the Owners Section */
.meet-owners {
    padding: 100px 0;
    background: var(--off-white);
}

.owners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
}

.owner-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex: 0 1 calc(50% - 20px);
    max-width: 500px;
}

.owner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.owner-photo {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.owner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.15);
}

.owner-placeholder {
    font-size: 5rem;
    opacity: 0.5;
}

.owner-info {
    padding: 30px;
}

.owner-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.owner-title {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    background: rgba(45, 90, 39, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.owner-info p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
}

/* Core Values Section */
.core-values {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}

.value-card {
    background: var(--off-white);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    flex: 0 1 calc(25% - 23px);
    min-width: 220px;
}

.value-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Trust Reinforcement Section */
.trust-section {
    padding: 80px 0;
    background: var(--off-white);
}

.trust-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.trust-text {
    flex: 1 1 400px;
    max-width: 500px;
}

.trust-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.trust-text p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1 1 400px;
    max-width: 500px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex: 0 1 calc(50% - 10px);
    min-width: 180px;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
}

.badge-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .value-card {
        flex: 0 1 calc(50% - 15px);
    }
    
    .founder-story-content {
        display: block;
    }
    
    .founder-story-accent {
        max-width: 300px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero {
        text-align: center;
    }
    
    .about-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .owner-card {
        flex: 0 1 100%;
        max-width: 500px;
    }
    
    .trust-content {
        text-align: center;
    }
    
    .trust-text {
        flex: 1 1 100%;
    }
    
    .trust-badges {
        justify-content: center;
        flex: 1 1 100%;
    }
    
    .section-title-left {
        text-align: center;
    }
    
    .story-divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .founder-story-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .value-card {
        flex: 0 1 100%;
    }
    
    .trust-badge {
        flex: 0 1 100%;
    }
    
    .about-hero h1 {
        font-size: 1.9rem;
    }
}
