/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #3f94e9;
    --primary: #3f94e9;
    --primary-hover: #2d7dd1;
    --secondary-color: #6c757d;
    --success-color: #00b846;
    --success: #00b846;
    --success-hover: #009638;
    --destructive-color: #c91d1d;
    --destructive: #c91d1d;
    --destructive-hover: #a11717;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --text-color: #333333;
    --border-color: #dee2e6;
    --secondary: rgba(63, 148, 233, 0.05);
    --card-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

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

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Transitions */
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--white-color);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--white-color);
    color: var(--dark-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

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

.btn-success:hover {
    background-color: #218838;
}

/* ===== HEADER & NAVIGATION ===== */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.header-top {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.top-bar-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.top-bar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-color);
    text-decoration: none;
    transition: opacity var(--transition-speed) ease;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-link .icon {
    width: 1rem;
    height: 1rem;
}

.email-link {
    display: none;
}

.email-text {
    display: none;
}

.hours-text {
    white-space: nowrap;
    font-size: 0.75rem;
}

/* Main Header */
.header-main {
    background-color: var(--white-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 4rem;
    width: auto;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    white-space: nowrap;
}

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

.btn-quote {
    background-color: var(--success-color);
    color: var(--white-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.btn-quote:hover {
    background-color: #218838;
}

/* Mobile Menu Button */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    background-color: var(--white-color);
    border-top: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
}

.nav-mobile.active {
    display: block;
    max-height: 500px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.nav-link-mobile {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem;
    text-align: center;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.nav-link-mobile:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.btn-quote-mobile {
    background-color: var(--success-color);
    color: var(--white-color);
    border: none;
    padding: 0.75rem 2rem;
    margin: 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.btn-quote-mobile:hover {
    background-color: #218838;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(52, 106, 187, 0.6), rgba(67, 131, 217, 0.6)),
                url('../assets/images/hero-banner.png') center center/cover no-repeat;
    color: var(--white-color);
    padding: 4rem 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 106, 187, 0.8), rgba(67, 131, 217, 0.8));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--destructive-color);
    color: var(--white-color);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-highlight {
    color: var(--destructive-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    padding: 0 0.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
    justify-content: center;
}

.hero-buttons .btn {
    width: 100%;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

.hero-buttons .btn-secondary {
    background-color: var(--white-color);
    color: #000000;
}

.hero-buttons .btn-success {
    background-color: #22c55e;
    color: var(--white-color);
}

.hero-buttons .btn-success:hover {
    background-color: #16a34a;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgb(201, 29, 29) 0%, rgb(156, 22, 22) 100%);;
    padding: 1.5rem 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
}

.cta-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
}

.btn-cta {
    background-color: #22c55e;
    color: var(--white-color);
    white-space: nowrap;
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: #16a34a;
}

/* CTA Responsive */
@media (min-width: 768px) {
    .cta-section {
        padding: 1.5rem 0;
    }

    .cta-content {
        flex-direction: row;
        text-align: left;
    }

    .cta-title {
        font-size: 1.25rem;
    }

    .btn-cta {
        width: auto;
        font-size: 1rem;
    }
}

/* ===== SECTIONS ===== */
section {
    padding: var(--spacing-xl) 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--light-color);
}

.about p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.service-card {
    background-color: var(--white-color);
    padding: var(--spacing-md);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--light-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet and above */
@media (min-width: 640px) {
    .top-bar-link .icon {
        width: 1rem;
        height: 1rem;
    }

    .email-link {
        display: flex;
    }

    .hours-text {
        font-size: 0.875rem;
    }
}

/* Medium screens and above */
@media (min-width: 768px) {
    .email-text {
        display: inline;
    }
}

/* Large screens - Desktop */
@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .header-content {
        height: 7rem;
    }

    .logo-img {
        height: 5rem;
    }

    .top-bar-content {
        font-size: 0.875rem;
    }

    .top-bar-left {
        gap: 1.5rem;
    }
}

/* Mobile and Tablet */
@media (max-width: 1023px) {
    .nav-mobile.active {
        display: block;
    }
}

/* Content padding for fixed header */
body {
    padding-top: 8rem;
}

@media (min-width: 1024px) {
    body {
        padding-top: 10rem;
    }
}

/* Hero responsive styles */
@media (min-width: 640px) {
    .hero {
        padding: 4rem 0;
        min-height: 550px;
    }

    .hero-badge {
        margin-bottom: 1.5rem;
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }

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

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

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: auto;
        padding: 1rem 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero {
        min-height: 600px;
    }

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

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

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
        min-height: 650px;
    }

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

    .hero-subtitle {
        font-size: 1.625rem;
        margin-bottom: 2.5rem;
    }

    .hero-buttons .btn {
        font-size: 1.125rem;
        padding: 1rem 3rem;
    }
}

/* Legacy styles for other sections */
@media (max-width: 768px) {
    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HOME PAGE STYLES ===== */

/* Body Padding for Home */
body {
    padding-top: 88px;
}

@media (min-width: 640px) {
    body {
        padding-top: 104px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(rgba(63, 148, 233, 0.9), rgba(63, 148, 233, 0.85)),
                url('../assets/images/hero-banner.png') right center/cover no-repeat;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 0px 48px 0px;
    color: white;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.375rem 0.75rem;
    background-color: var(--destructive);
    color: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    color: var(--destructive);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    padding: 0 0.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1rem;
    justify-content: center;
}

.hero-buttons .btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    border-radius: 0.375rem;
}

/* Responsive Hero */
@media (min-width: 640px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-badge {
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

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

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

    .hero-buttons {
        flex-direction: row;
    }

    .hero-buttons .btn {
        width: auto;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

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

    .hero-buttons .btn {
        font-size: 1.125rem;
    }
}

/* CTA Accent Bar */
.cta-accent {
    background: linear-gradient(135deg, var(--destructive) 0%, var(--destructive-color) 100%);
    padding: 1rem 0;
}

.cta-accent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: center;
}

.cta-accent-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.cta-accent-button {
    white-space: nowrap;
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .cta-accent {
        padding: 1.5rem 0;
    }

    .cta-accent-content {
        flex-direction: row;
        text-align: left;
    }

    .cta-accent-title {
        font-size: 1.25rem;
    }

    .cta-accent-button {
        width: auto;
        font-size: 1rem;
    }
}

/* Section Styles */
.section {
    padding: 3rem 1rem;
}

.section-gray {
    background-color: rgba(63, 148, 233, 0.03);
    
    
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .section {
        padding: 4rem 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .section-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 1rem;
    }

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

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.product-card {
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

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

.product-image {
    aspect-ratio: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-button {
    width: 100%;
    margin-top: auto;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 56rem;
    margin: 0 auto 2rem;
}

.category-card {
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

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

.category-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.category-content {
    padding: 1.5rem;
    text-align: center;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: var(--primary);
}

.category-description {
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Why Choose Us Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.why-choose-highlight {
    color: var(--primary);
}

.why-choose-text {
    font-size: 1rem;
    line-height: 1.625;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.875rem;
}

.why-choose-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-choose-buttons .btn {
    width: 100%;
}

.why-choose-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
    .why-choose-content h2 {
        font-size: 1.875rem;
    }

    .why-choose-text {
        font-size: 1.125rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .benefit-text {
        font-size: 0.875rem;
    }

    .why-choose-buttons {
        flex-direction: row;
    }

    .why-choose-buttons .btn {
        width: auto;
    }
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .why-choose-content h2 {
        font-size: 2.25rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: var(--card-shadow);
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(63, 148, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Final CTA Section */
.cta-final {
    background: linear-gradient(135deg, var(--primary), rgba(63, 148, 233, 0.9));
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.cta-final-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-final h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-final p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.cta-final .btn {
    font-size: 1rem;
    padding: 1.25rem 2rem;
    width: 100%;
}

@media (min-width: 640px) {
    .cta-final {
        padding: 4rem 1rem;
    }

    .cta-final h2 {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
    }

    .cta-final p {
        font-size: 1.125rem;
    }

    .cta-final .btn {
        font-size: 1.125rem;
        width: auto;
    }
}

@media (min-width: 768px) {
    .cta-final {
        padding: 5rem 1rem;
    }

    .cta-final h2 {
        font-size: 2.25rem;
    }

    .cta-final p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

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

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

.btn-secondary:hover {
    background-color: #f9fafb;
}

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

.btn-success:hover {
    background-color: var(--success-hover);
}

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

.btn-destructive:hover {
    background-color: var(--destructive-hover);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Margin Top */
.mt-8 {
    margin-top: 2rem;
}
