/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
    /* Primary Blue & Green Colors */
    --primary-blue: #1e88e5;
    --primary-blue-dark: #1565c0;
    --primary-blue-light: #42a5f5;
    --primary-green: #2e7d32;
    --primary-green-dark: #1b5e20;
    --primary-green-light: #43a047;

    /* Accent Colors */
    --accent-teal: #00acc1;
    --accent-lime: #7cb342;

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --gray: #e0e5eb;
    --medium-gray: #9e9e9e;
    --dark-gray: #424242;
    --text-dark: #1a1a1a;

    /* Gradients */
    --gradient-blue-green: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(30, 136, 229, 0.9) 0%, rgba(46, 125, 50, 0.9) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================
   Header Styles
   ========================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.header-contact {
    display: flex;
    align-items: center;
}

/* ==========================================
   CTA Buttons
   ========================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-blue-green);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-blue-green);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    font-family: var(--font-heading);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(30, 136, 229, 0.3);
}

.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(30, 136, 229, 0.3);
    }
    50% {
        box-shadow: 0 12px 48px rgba(30, 136, 229, 0.5);
    }
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    background: var(--gradient-blue-green);
    padding: var(--spacing-xl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.05) 10px, rgba(255,255,255,.05) 20px);
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(30, 136, 229, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    opacity: 0.95;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: var(--spacing-md);
    color: var(--white);
    opacity: 0.9;
    line-height: 1.8;
}

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

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1rem;
}

.feature-badge i {
    font-size: 1.25rem;
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.section-header p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 2px solid var(--gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(30, 136, 229, 0.2);
    border-color: var(--primary-blue-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary-green);
    font-size: 1rem;
}

.services-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-choose {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.4s ease;
    border-radius: 20px;
    background: var(--light-gray);
    border: 2px solid transparent;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 2.25rem;
    color: var(--white);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ==========================================
   Showcase Hero Section
   ========================================== */
.showcase-hero {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.showcase-grid-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.showcase-item-hero {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 3px solid var(--gray);
}

.showcase-item-hero:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 136, 229, 0.25);
    border-color: var(--primary-blue-light);
}

.showcase-item-hero img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.showcase-content {
    padding: var(--spacing-md);
    background: var(--white);
}

.showcase-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    background: var(--gradient-blue-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* ==========================================
   Process Section
   ========================================== */
.process {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.process-step {
    position: relative;
    padding: var(--spacing-md);
    padding-top: calc(var(--spacing-md) + 10px);
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid var(--gray);
    box-shadow: var(--shadow-sm);
}

.process-step:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue-light);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-blue-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    margin: var(--spacing-md) 0 var(--spacing-sm);
    font-size: 3rem;
    color: var(--primary-blue);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.process-step p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-blue-green);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.05) 10px, rgba(255,255,255,.05) 20px);
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.cta-content p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .cta-button-large {
    background: var(--white);
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.cta-content .cta-button-large:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

.cta-hours {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-hours i {
    font-size: 1.5rem;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-blue-light);
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: var(--gray);
    line-height: 1.7;
}

.footer-contact,
.footer-links {
    list-style: none;
}

.footer-contact li,
.footer-links li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray);
}

.footer-contact i {
    color: var(--primary-green-light);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact a {
    color: var(--gray);
    transition: color 0.3s ease;
}

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

.footer-links a {
    color: var(--gray);
    transition: color 0.3s ease;
}

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

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

/* ==========================================
   Floating Call Button
   ========================================== */
.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--gradient-blue-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(30, 136, 229, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        height: 80px;
    }

    .hero {
        padding: var(--spacing-lg) 0;
        min-height: 500px;
    }

    .hero-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .services-grid,
    .benefits-grid,
    .process-steps,
    .showcase-grid-hero {
        grid-template-columns: 1fr;
    }

    .showcase-item-hero img {
        height: 280px;
    }

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

    .footer-contact li,
    .footer-links li {
        justify-content: center;
    }

    .floating-call-button {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .cta-button-large {
        padding: 1rem 1.75rem;
        font-size: 1.125rem;
    }
}