/* High Desert Handyman - Styles */

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

:root {
    --primary-color: #fbca40;
    --primary-dark: #c99500;
    --text-color: #333;
    --heading-color: #1a1a1a;
    --bg-light: #f5f5f5;
    --bg-white: #fff;
    --footer-bg: #222;
    --footer-text: #999;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-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;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--heading-color);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    gap: 25px;
}

/* Desktop logo - compact size for better header proportion */
.logo img {
    height: 130px;
    width: auto;
    max-width: 280px;
    border-radius: 50%;
    box-shadow: 
        0 0 12px rgba(251, 202, 64, 0.5),
        0 0 24px rgba(251, 202, 64, 0.35),
        0 0 36px rgba(251, 202, 64, 0.15);
    animation: logo-magnify 3s ease-in-out infinite;
    transform-origin: center center;
}

/* Desktop animation - subtle scale to prevent overflow */
@keyframes logo-magnify {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 12px rgba(251, 202, 64, 0.5),
            0 0 24px rgba(251, 202, 64, 0.35),
            0 0 36px rgba(251, 202, 64, 0.15);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 
            0 0 18px rgba(251, 202, 64, 0.7),
            0 0 36px rgba(251, 202, 64, 0.5),
            0 0 54px rgba(251, 202, 64, 0.3);
    }
}

/* Header Phone Button - Enhanced CTA - Balanced for desktop */
.header-phone-wrapper {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffd966 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    color: var(--heading-color);
    padding: 18px 32px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 18px rgba(251, 202, 64, 0.35),
        0 0 20px rgba(251, 202, 64, 0.15);
    animation: 
        pulse-glow 2s ease-in-out infinite,
        gradient-shift 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* Tapping finger animation */
.tap-finger {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.6rem;
    z-index: 10;
    animation: finger-tap 1.5s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transform: rotate(-90deg); /* Point finger horizontally toward button */
}

@keyframes finger-tap {
    0%, 100% {
        transform: translateX(0) rotate(-90deg);
        opacity: 1;
    }
    30% {
        transform: translateX(-15px) rotate(-90deg) scale(0.95);
        opacity: 0.9;
    }
    50% {
        transform: translateX(-15px) rotate(-90deg) scale(0.9);
        opacity: 0.85;
    }
    70% {
        transform: translateX(0) rotate(-90deg);
        opacity: 1;
    }
}

/* Gradient animation */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Pulse glow animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(251, 202, 64, 0.4),
            0 0 20px rgba(251, 202, 64, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 6px 25px rgba(251, 202, 64, 0.6),
            0 0 35px rgba(251, 202, 64, 0.4);
        transform: scale(1.02);
    }
}

/* Shimmer effect overlay */
.header-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.header-phone:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(251, 202, 64, 0.5),
        0 0 40px rgba(251, 202, 64, 0.3);
    animation: none;
}

.header-phone:active {
    transform: translateY(0) scale(0.98);
}

.header-phone .phone-icon {
    font-size: 1.8rem;
    animation: phone-ring 1.5s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50%, 100% { transform: rotate(0deg); }
}

.header-phone .phone-label {
    white-space: nowrap;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.header-phone .phone-number {
    white-space: nowrap;
    letter-spacing: 0.3px;
    font-weight: 700;
}

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

.nav-menu a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--heading-color);
    padding: 10px 0;
    position: relative;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--heading-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: var(--bg-white);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.hero-tagline {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Page Hero (for inner pages) */
.page-hero {
    position: relative;
    padding: 160px 20px 80px;
    text-align: center;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero .hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: var(--bg-white);
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    background-color: var(--primary-color);
    padding: 40px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

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

.feature-item h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--heading-color);
}

/* About Section */
.about {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-white);
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-text {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-highlight {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bg-white);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.checkmark {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.benefit-item span:last-child {
    font-weight: 500;
    color: var(--heading-color);
}

/* Services Preview */
.services-preview {
    padding: 80px 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.services-preview h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading-color);
    padding: 25px 20px 10px;
}

.service-card p {
    color: var(--text-color);
    padding: 0 20px 25px;
    font-size: 0.95rem;
}

.services-cta {
    margin-top: 20px;
}

/* Service Area Section */
.service-area {
    padding: 80px 20px;
    background-color: var(--heading-color);
    text-align: center;
    color: var(--bg-white);
}

.service-area h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.service-area p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.service-area strong {
    color: var(--primary-color);
}

/* Services Full Page */
.services-full {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.service-category {
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

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

.service-category h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
}

.service-category-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    max-height: 300px;
}

.service-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

.service-list .checkmark {
    color: var(--primary-dark);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 30px;
}

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

.cta-section .btn-primary {
    background-color: var(--heading-color);
    color: var(--bg-white);
}

.cta-section .btn-primary:hover {
    background-color: #000;
}

.cta-section .btn-secondary {
    border-color: var(--heading-color);
    color: var(--heading-color);
}

.cta-section .btn-secondary:hover {
    background-color: var(--heading-color);
    color: var(--bg-white);
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-details a,
.contact-details p {
    font-size: 1rem;
    color: var(--text-color);
}

.contact-details a:hover {
    color: var(--primary-dark);
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.contact-form-wrapper p {
    margin-bottom: 25px;
    color: var(--text-color);
}

.contact-direct {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.contact-direct p {
    margin-bottom: 15px;
}

.phone-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.phone-link:hover {
    color: var(--heading-color);
}

.contact-why {
    background-color: var(--bg-light);
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 130px !important;
    width: auto !important;
    max-width: none !important;
    filter: brightness(1.2);
    border-radius: 50%;
    box-shadow: 
        0 0 12px rgba(251, 202, 64, 0.5),
        0 0 24px rgba(251, 202, 64, 0.35),
        0 0 36px rgba(251, 202, 64, 0.15);
    animation: logo-magnify 3s ease-in-out infinite;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-contact p,
.footer-contact a {
    margin-bottom: 10px;
    display: block;
    color: var(--footer-text);
}

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

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

.footer-links a {
    color: var(--footer-text);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Compact header on tablet/mobile */
    .header .container {
        padding: 5px 12px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    /* Compact logo on tablet */
    .logo img {
        height: 110px;
        max-width: 240px;
    }
    
    /* Reduced animation scale on tablet */
    @keyframes logo-magnify {
        0%, 100% {
            transform: scale(1);
            box-shadow: 
                0 0 10px rgba(251, 202, 64, 0.5),
                0 0 20px rgba(251, 202, 64, 0.3),
                0 0 30px rgba(251, 202, 64, 0.15);
        }
        50% {
            transform: scale(1.08);
            box-shadow: 
                0 0 15px rgba(251, 202, 64, 0.7),
                0 0 30px rgba(251, 202, 64, 0.5),
                0 0 45px rgba(251, 202, 64, 0.3);
        }
    }
    
    .footer-logo img {
        height: 110px !important;
        width: auto !important;
        max-width: none !important;
    }
    
    /* Header phone - tablet - compact */
    .header-phone {
        padding: 14px 24px;
        font-size: 1.3rem;
        gap: 12px;
        border-radius: 14px;
    }
    
    .header-phone .phone-icon {
        font-size: 1.6rem;
    }
    
    .header-phone .phone-label,
    .header-phone .phone-number {
        display: inline;
    }
    
    .tap-finger {
        font-size: 1.4rem;
        top: -8px;
        right: -8px;
    }
    
    .hero {
        padding: 130px 20px 70px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    /* Extremely compact features section on mobile */
    .features {
        padding: 8px 5px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }
    
    .feature-item {
        padding: 5px 2px;
    }
    
    .feature-icon {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    
    .feature-item h3 {
        font-size: 0.5rem;
        letter-spacing: 0;
        margin: 0;
        line-height: 1.2;
    }
    
    .page-hero {
        padding: 130px 20px 50px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .service-category {
        padding: 25px;
    }
    
    .service-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    /* Extra compact header on small mobile */
    .header .container {
        padding: 4px 8px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Compact logo on small mobile */
    .logo img {
        height: 90px;
        max-width: 200px;
    }
    
    /* Reduced animation scale on small mobile */
    @keyframes logo-magnify {
        0%, 100% {
            transform: scale(1);
            box-shadow: 
                0 0 8px rgba(251, 202, 64, 0.5),
                0 0 16px rgba(251, 202, 64, 0.3),
                0 0 24px rgba(251, 202, 64, 0.15);
        }
        50% {
            transform: scale(1.06);
            box-shadow: 
                0 0 12px rgba(251, 202, 64, 0.7),
                0 0 24px rgba(251, 202, 64, 0.5),
                0 0 36px rgba(251, 202, 64, 0.3);
        }
    }
    
    .footer-logo img {
        height: 90px !important;
        width: auto !important;
        max-width: none !important;
    }
    
    /* Header phone - small mobile - stacked compact layout */
    .header-phone {
        padding: 10px 14px;
        font-size: 1rem;
        gap: 2px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.2;
        border-radius: 10px;
    }
    
    .header-phone .phone-icon {
        display: none; /* Hide icon on mobile to save space */
    }
    
    .header-phone .phone-label {
        display: block;
        font-size: 0.9rem;
        font-weight: 800;
        letter-spacing: 0.3px;
    }
    
    .header-phone .phone-number {
        display: block;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.2px;
    }
    
    .header-phone::before {
        display: none; /* Hide shimmer effect on mobile */
    }
    
    .tap-finger {
        font-size: 1.2rem;
        top: -6px;
        right: -6px;
    }
    
    .hero {
        padding: 110px 15px 60px;
    }
    
    .page-hero {
        padding: 110px 15px 40px;
    }
    
    /* Ultra compact features on small mobile */
    .features {
        padding: 5px 3px;
    }
    
    .features-grid {
        gap: 1px;
    }
    
    .feature-item {
        padding: 3px 1px;
    }
    
    .feature-icon {
        font-size: 0.75rem;
        margin-bottom: 1px;
    }
    
    .feature-item h3 {
        font-size: 0.45rem;
        letter-spacing: 0;
        margin: 0;
        line-height: 1.1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}
