/* ===================================
   SKY CAN DO IT - Design System
   Inspired by Cinco Mosqueteros
   =================================== */

/* CSS Variables */
:root {
    /* Brand Colors - extracted from logo */
    --primary-green: #2B5A1D;
    --secondary-green: #4A7C3F;
    --accent-green: #6A9A30;
    --light-green: #8BC34A;
    --dark-charcoal: #2E3A2E;
    --gear-gray: #3D4A3D;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8FAF7;
    --light-gray: #E8EDE6;
    --mid-gray: #9CA89B;
    --dark-gray: #4A5549;
    --black: #1A1F1A;

    /* Semantic */
    --success: #4CAF50;
    --warning: #FFC107;
    --error: #F44336;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(43, 90, 29, 0.95) 0%, rgba(74, 124, 63, 0.85) 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background: var(--primary-green);
    color: var(--white);
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
}

.top-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-text {
    opacity: 0.9;
}

.top-bar-text strong {
    color: var(--light-green);
}

.top-bar-email {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    opacity: 0.9;
}

.top-bar-email:hover {
    opacity: 1;
}

.top-bar-email svg {
    width: 16px;
    height: 16px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition-base);
}

.nav-link svg {
    width: 16px;
    height: 16px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--dark-gray);
}

.phone-icon-wrapper {
    width: 36px;
    height: 36px;
    background: var(--primary-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon-wrapper svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(106, 154, 48, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 154, 48, 0.4);
}

.btn-nav-cta {
    background: var(--accent-green);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    font-size: 0.8rem;
}

.btn-nav-cta:hover {
    background: var(--secondary-green);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.btn-submit {
    background: var(--accent-green);
    color: var(--white);
    padding: var(--space-md) var(--space-2xl);
    font-weight: 700;
    min-width: 120px;
}

.btn-submit:hover {
    background: var(--secondary-green);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 24px;
    height: 2px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

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

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

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
}

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

.hero-label {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
    display: block;
    margin-bottom: var(--space-sm);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--light-green);
    display: block;
    margin-bottom: var(--space-lg);
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    padding: var(--space-sm) var(--space-md);
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon.google {
    background: var(--white);
}

.badge-icon.facebook {
    background: #1877F2;
}

.badge-icon svg {
    width: 18px;
    height: 18px;
}

.badge-icon.google svg {
    color: #4285F4;
}

.badge-icon.facebook svg {
    color: var(--white);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-rating {
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-rating .stars {
    color: #FFD700;
    margin-left: var(--space-xs);
}

.badge-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.5)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ===================================
   QUOTE FORM SECTION
   =================================== */
.quote-section {
    background: var(--white);
    padding: var(--space-3xl) 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 20;
    margin-top: -60px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.quote-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.quote-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: var(--space-xl);
    font-weight: 400;
}

.quote-title strong {
    color: var(--primary-green);
    font-weight: 800;
}

.quote-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
}

.form-field {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    position: relative;
}

.form-field svg {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--mid-gray);
}

.form-field input {
    width: 100%;
    padding: var(--space-md);
    padding-left: 48px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.form-field input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(43, 90, 29, 0.1);
}

/* ===================================
   SECTION STYLING
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-title strong {
    color: var(--primary-green);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--mid-gray);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--light-gray);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: var(--space-md);
}

.service-desc {
    color: var(--mid-gray);
    line-height: 1.7;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--space-4xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-content .section-label,
.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--mid-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--mid-gray);
    margin-top: var(--space-sm);
    display: block;
}

.about-visual {
    display: grid;
    gap: var(--space-lg);
}

.visual-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    transition: var(--transition-base);
}

.visual-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.visual-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visual-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.visual-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: var(--space-xs);
}

.visual-card p {
    font-size: 0.9rem;
    color: var(--mid-gray);
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

/* Featured Review */
.featured-review {
    max-width: 800px;
    margin: 0 auto;
}

.featured-review-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--light-gray);
}

.featured-review-icon {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    opacity: 0.15;
}

.featured-review-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-green);
}

.featured-review-content {
    padding-right: 60px;
}

.featured-review-quote {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.featured-review-text {
    color: var(--mid-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.featured-review-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.featured-author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.featured-author-info {
    display: flex;
    flex-direction: column;
}

.featured-author-name {
    font-weight: 600;
    color: var(--dark-charcoal);
    font-size: 1rem;
}

.featured-author-service {
    font-size: 0.875rem;
    color: var(--mid-gray);
}

.featured-review-rating {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--light-gray);
}

.featured-review-rating .stars {
    color: #FFD700;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.featured-review-rating .rating-text {
    font-weight: 600;
    color: var(--dark-charcoal);
    font-size: 0.9rem;
}

/* ===================================
   TESTIMONIALS GRID
   =================================== */
.testimonials {
    padding: var(--space-4xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--dark-charcoal);
}

.author-location {
    font-size: 0.85rem;
    color: var(--mid-gray);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
}

.contact-info .section-label,
.contact-info .section-title {
    text-align: left;
}

.contact-text {
    color: var(--mid-gray);
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.contact-text-group {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--mid-gray);
}

.contact-value {
    font-weight: 600;
    color: var(--dark-charcoal);
}

.contact-value:hover {
    color: var(--primary-green);
}

.service-area {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border-left: 4px solid var(--accent-green);
}

.service-area h4 {
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: var(--space-sm);
}

.service-area p {
    color: var(--mid-gray);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-weight: 500;
    color: var(--dark-charcoal);
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-base);
}

.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(43, 90, 29, 0.1);
}

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

/* ===================================
   CONTACT BAR SECTION
   =================================== */
.contact-bar {
    background: var(--white);
    padding: var(--space-3xl) 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 20;
    margin-top: -60px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.contact-bar-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.contact-bar-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: var(--space-xl);
    font-weight: 400;
}

.contact-bar-title strong {
    color: var(--primary-green);
    font-weight: 800;
}

.contact-bar-cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    transition: var(--transition-base);
    min-width: 280px;
}

.contact-card:hover {
    border-color: var(--primary-green);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-card.hours {
    cursor: default;
}

.contact-card.hours:hover {
    transform: none;
    box-shadow: none;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-card-content {
    display: flex;
    flex-direction: column;
}

.contact-card-label {
    font-size: 0.8rem;
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-charcoal);
}

/* ===================================
   BUSINESS CARD STYLE CONTACT
   =================================== */
.business-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.business-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--light-gray);
}

.business-card-logo {
    width: 150px;
    height: auto;
    margin-bottom: var(--space-lg);
}

.business-card-intro h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: var(--space-sm);
}

.business-card-intro .tagline {
    color: var(--mid-gray);
    font-size: 1rem;
    max-width: 400px;
}

.business-card-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    text-align: left;
}

.business-card-section h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.business-card-section p {
    color: var(--mid-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.detail-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-item a,
.detail-item span {
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

.detail-item a:hover {
    color: var(--primary-green);
}

.business-card-cta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.business-card-cta .btn {
    min-width: 180px;
}

.business-card-cta .btn svg {
    width: 18px;
    height: 18px;
}

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

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

.business-card-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--light-gray);
}

.badge-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-green);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-charcoal);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    max-width: 280px;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.certification {
    font-size: 0.85rem;
    color: var(--light-green);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-weight: 600;
    margin-bottom: var(--space-lg);
    font-size: 1rem;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--light-green);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

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

.footer-contact a:hover {
    color: var(--light-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-logo {
        max-width: 280px;
    }

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

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

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

    .about-content .section-label,
    .about-content .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .review-card {
        grid-template-columns: 1fr;
    }

    .review-content {
        padding: var(--space-xl);
        padding-top: 0;
    }

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

    .contact-info .section-label,
    .contact-info .section-title {
        text-align: center;
    }

    .contact-text {
        text-align: center;
    }

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

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
    }

    .hero {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }

    .hero-content {
        padding: var(--space-xl);
    }

    .hero-logo {
        max-width: 220px;
    }

    .quote-form {
        flex-direction: column;
    }

    .form-field {
        max-width: 100%;
    }

    .quote-section {
        margin-top: 0;
        border-radius: 0;
    }

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

    .about-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .reviews-showcase {
        flex-direction: column;
    }

    .review-nav {
        display: none;
    }

    .review-images {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-desc {
        max-width: 100%;
    }

    .footer-certifications {
        align-items: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

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

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

    .container {
        padding: 0 var(--space-md);
    }
}