/*
 * ============================================
 * JD Landscaping LLC - Custom Stylesheet
 * ============================================
 * Author: Arturo Abril
 * Created: February 6, 2026
 * Framework: Tailwind CSS
 * Description: Custom CSS file for JD Landscaping LLC website.
 *              Includes custom color variables, component styles,
 *              animations, responsive design, and specialized styling
 *              for the landscaping services website.
 *              Combined with Tailwind CSS for utility-first styling.
 * ============================================
 */

/*
 * ============================================
 * JD Landscaping LLC - Custom Stylesheet
 * ============================================
 * Author: Arturo Abril
 * Created: February 6, 2026
 * Framework: Tailwind CSS
 * Description: Custom CSS file for JD Landscaping LLC website.
 *              Includes custom color variables, component styles,
 *              animations, responsive design, and specialized styling
 *              for the landscaping services website.
 *              Combined with Tailwind CSS for utility-first styling.
 * ============================================
 */

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

:root {
    --forest-dark: #1a2f1a;
    --forest-deep: #2d5016;
    --sage-green: #7fa57d;
    --cream: #faf8f3;
    --sand: #e8dcc4;
    --gold-accent: #c9a961;
    --charcoal: #2b2b2b;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
}

.font-display {
    font-family: 'Cormorant Garamond', serif;
}

.bg-cream {
    background-color: var(--cream);
}

.bg-sand {
    background-color: var(--sand);
}

.bg-forest-dark {
    background-color: var(--forest-dark);
}

.bg-charcoal {
    background-color: var(--charcoal);
}

.text-forest-dark {
    color: var(--forest-dark);
}

#navbar {
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(127, 165, 125, 0.08);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

#navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar-brand-center {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--forest-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand-center:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand-center:hover {
    opacity: 0.85;
}

.nav-link {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-green), var(--gold-accent));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--forest-deep);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(127, 165, 125, 0.2);
}

.mobile-menu.active {
    display: block;
}

.mobile-link {
    display: block;
    color: var(--charcoal);
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(127, 165, 125, 0.1);
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--forest-deep);
    padding-left: 1rem;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?q=80&w=2400') center/cover no-repeat;
    padding: 8rem 1rem 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(26, 47, 26, 0.85) 0%, 
        rgba(45, 80, 22, 0.75) 50%,
        rgba(127, 165, 125, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    padding: 0 1.5rem;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(127, 165, 125, 0.25);
    border: 1px solid rgba(127, 165, 125, 0.4);
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 100;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
}

.hero-badge i {
    color: #7fa57d;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.1s backwards;
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: white;
}

.feature-item i {
    color: #c9a961;
    font-size: 1.125rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2d5016;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(45, 80, 22, 0.3);
    animation: fadeInUp 1s ease-out 0.4s backwards;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1a2f1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--forest-deep);
    padding: 0.875rem 2.25rem;
    border: 2px solid #7fa57d;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #7fa57d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(127, 165, 125, 0.3);
}

.section-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(127, 165, 125, 0.15);
    color: var(--sage-green);
    border-radius: 2rem;
    font-size: 0.70rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(127, 165, 125, 0.3);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--forest-dark);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.image-wrapper img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.service-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(127, 165, 125, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(127, 165, 125, 0.25);
}

.service-image-wrapper {
    overflow: hidden;
    height: 220px;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
    transform: scale(1.08);
}

.service-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--forest-deep);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.service-description {
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sage-green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    margin-top: auto;
}

.service-link:hover {
    color: var(--forest-deep);
    gap: 0.75rem;
}

.service-link i {
    font-size: 0.75rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(127, 165, 125, 0.08);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 1.25rem 1.25rem 0 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-rating i {
    color: var(--gold-accent);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #7fa57d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.author-avatar-img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-weight: 700;
    color: var(--forest-deep);
    margin-bottom: 0.125rem;
    font-size: 0.9375rem;
}

.author-role {
    font-size: 0.75rem;
    color: #6b7280;
}

.testimonial-quote-icon {
    color: var(--sage-green);
    opacity: 0.15;
    font-size: 2.5rem;
    line-height: 1;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(127, 165, 125, 0.08);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid rgba(127, 165, 125, 0.15);
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    background: var(--cream);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--sage-green);
    background: white;
    box-shadow: 0 0 0 3px rgba(127, 165, 125, 0.08);
}

select.form-input {
    cursor: pointer;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(127, 165, 125, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: #7fa57d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 1.25rem;
}

.info-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--forest-deep);
    margin-bottom: 0.25rem;
}

.info-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(127, 165, 125, 0.1);
}

.map-container iframe {
    display: block;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #7fa57d;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(127, 165, 125, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7fa57d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #7fa57d;
    color: white;
    transform: translateY(-2px);
}

.text-sage-green {
    color: #7fa57d;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 30px;
    height: 40px;
    background: #2d5016;
    color: white;
    border: none;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #1a2f1a;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top i {
    font-size: 1.125rem;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    width: 50px;
    height: 50px;
}

.loader-container .loader-boxes {
    width: 50px;
    height: 50px;
    fill: none;
    stroke-width: 50px;
    stroke: #7fa57d;
    stroke-dasharray: 50;
    stroke-dashoffset: 50%;
    animation: loader-animate 2s linear infinite;
}

@keyframes loader-animate {
    to {
        stroke-dashoffset: 250%;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 24, 19, 0.75);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: white;
    border-radius: 0.5rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(107, 114, 128, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(107, 114, 128, 0.2);
    transform: rotate(90deg);
}

.modal-close i {
    color: #6b7280;
    font-size: 0.675rem;
}

.modal-content {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
}

.modal-icon-wrapper {
    margin-bottom: 1.2rem;
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7fa57d 0%, #5d8a5b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(127, 165, 125, 0.3);
    position: relative;
}

.modal-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7fa57d 0%, #5d8a5b 100%);
    opacity: 0.2;
    z-index: -1;
}

.modal-icon i {
    font-size: 1.75rem;
    color: white;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.modal-text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.modal-btn-primary {
    background: #2d5016;
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 0.325rem;
    font-weight: 800;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.modal-btn-primary:hover {
    background: #1a2f1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 80, 22, 0.3);
}

.modal-btn-primary:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 2rem 1.5rem 1.75rem;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .modal-icon i {
        font-size: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.375rem;
    }
    
    .modal-text {
        font-size: 0.875rem;
    }
    
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 25px;
        height:45px;
    }
    
    .scroll-to-top i {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .navbar-brand-center {
        position: static;
        transform: none;
    }
    
    .navbar-logo {
        height: 60px;
    }
    
    .navbar-brand-center span {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .hero-section {
        min-height: 100svh;
        padding: 6rem 1rem 3rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    footer .grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    footer .flex {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .service-image-wrapper {
        height: 200px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.875rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
    
    .btn-outline {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
    
    .section-label {
        font-size: 0.6875rem;
        padding: 0.3rem 0.875rem;
    }
    
    .hero-title {
        margin-bottom: 1.25rem;
    }
    
    .hero-text {
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.875rem;
    }
    
    .feature-item {
        font-size: 0.875rem;
    }
    
    .navbar-logo {
        height: 50px;
    }
    
    .navbar-brand {
        font-size: 1.125rem;
    }
}