/* Bluelake Software - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066cc;
    --primary-dark: #004c99;
    --secondary: #00a8e8;
    --accent: #00d4ff;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --lforange: #e35205
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Offset anchor links for fixed header */
section[id] {
    scroll-margin-top: 80px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 60px;
    width: auto;
   /* filter: drop-shadow(2px 2px 4px rgba(0, 102, 204, 0.3));*/
    transition: filter 0.3s ease, transform 0.3s ease;
}

/*.logo:hover img {
    filter: drop-shadow(3px 3px 6px rgba(0, 102, 204, 0.5));
    transform: rotate(-5deg);
}*/

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /*text-shadow: 2px 2px 20px rgba(0, 102, 204, 0.2);*/
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

/*.logo:hover .logo-text {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
}*/

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

/* Hero Section */
.hero {
    margin-top: 80px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem 3rem;
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease, background 0.5s ease;
}

    .hero.hero-compact {
        /*padding: 4rem 2rem 3rem;*/
        padding: 3rem;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat bottom;
        background-size: cover;
    }

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero.hero-compact h1 {
    font-size: 2.0rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    /*max-width: 700px;*/
}

.hero.hero-compact p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Hero Paragraphs - Grid layout */
.hero-paragraphs {
    background: var(--light-gray);
    padding: 2rem 10px;
}

.hero-paragraphs-container {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hero-paragraph {
    background: white;
    border-radius: 12px;
    border: 2px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

/* Items 5 and beyond span full width */
.hero-paragraph:nth-child(n+5) {
    grid-column: 1 / -1;
}

.hero-paragraph:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-paragraph-content {
    padding: 1.5rem;
}

.hero-paragraph h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hero-paragraph p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
    display: inline;
}

.hero-paragraph-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.4vw, 0.95rem);
    transition: color 0.3s;
    display: inline;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.hero-paragraph-link:hover {
    color: var(--primary-dark);
}

/* Phone screens - single column */
@media (max-width: 600px) {
    .hero-paragraphs-container {
        grid-template-columns: 1fr;
    }

    .hero-paragraph h3 {
        font-size: 1.1rem;
    }

    .hero-paragraph p {
        font-size: 0.95rem;
    }

    .hero-paragraph-link {
        font-size: 0.9rem;
    }
}

/* Legacy Content Sections (kept for compatibility) */
.content-sections {
    background: var(--light-gray);
    padding: 3rem 2rem;
}

.content-sections-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.content-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.content-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.content-section-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.content-section p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-section-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.content-section-link:hover {
    color: var(--primary-dark);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background: white;
        color: var(--primary);
    }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: white;
    }

/* Stats Section */
.stats {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .section-header p {
        font-size: 1.2rem;
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto;
    }

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

    .service-card a:hover {
        gap: 1rem;
    }

/* Products Section */
.products {
    padding: 4rem 2rem;
    background: white;
}

.product-tabs {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.6rem 1.5rem;
    background: var(--light-gray);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--dark);
    font-size: 0.9rem;
}

    .tab-btn.active {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
    }

/* Product Tiles Grid */
.product-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-hover-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.product-tiles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-tile {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

    .product-tile.hidden {
        display: none;
    }

    .product-tile:hover {
        border-color: var(--secondary);
        box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
        position: relative;
        z-index: 10;
    }

    .product-tile.selected {
        border-color: var(--primary);
        box-shadow: 0 4px 20px rgba(0, 102, 204, 0.2);
        background: linear-gradient(145deg, #f0f7ff, #ffffff);
    }

.product-tile-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-tile h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    line-height: 1.3;
}

.product-tile-description {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.product-tile:hover .product-tile-description {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.product-tile-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.product-tile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.product-tile-link.download-link {
    color: var(--primary);
    background: rgba(0, 102, 204, 0.1);
}

.product-tile-link.download-link:hover {
    background: var(--primary);
    color: white;
}

.products-contact-btn {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Product Actions Panel (Right Sidebar) */
.product-actions-panel {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.actions-panel-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.actions-panel-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.actions-panel-hint {
    font-size: 0.85rem;
    color: var(--gray);
}

.selected-product-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.selected-product-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.selected-product-info p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

.actions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.action-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.action-download {
    background: var(--primary);
    color: white;
}

.action-download:hover {
    background: var(--primary-dark);
    transform: translateX(3px);
}

.action-info {
    background: var(--secondary);
    color: white;
}

.action-info:hover {
    background: #0090c8;
    transform: translateX(3px);
}

.action-guide {
    background: #6366f1;
    color: white;
}

.action-guide:hover {
    background: #4f46e5;
    transform: translateX(3px);
}

.action-contact {
    background: white;
    color: var(--dark);
    border: 2px solid #e5e7eb;
}

.action-contact:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(3px);
}

/* Legacy product-card styles (kept for compatibility) */
.product-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

    .product-card.hidden {
        display: none;
    }

    .product-card:hover {
        border-color: var(--primary);
        box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
    }

.product-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.product-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-link {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.download-link {
    background: var(--primary);
    color: white;
}

    .download-link:hover {
        background: var(--primary-dark);
    }

.info-link {
    background: var(--light-gray);
    color: var(--dark);
}

    .info-link:hover {
        background: #e5e7eb;
    }

/* Migration Section */
.migration {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.migration-content {
    max-width: 1200px;
    margin: 0 auto;
}

.migration h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.migration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.migration-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .migration-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-5px);
    }

/* Capture Section */
.capture {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    color: white;
}

.capture-content {
    max-width: 1200px;
    margin: 0 auto;
}

.capture h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.capture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.capture-feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.capture-feature-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.capture-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.capture-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.capture-feature-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.capture-tools-section {
    margin: 3rem 0;
}

.capture-tools-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.capture-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.capture-tool-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.capture-tool-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.capture-tool-item strong {
    font-size: 1rem;
}

.capture-tool-item span {
    font-size: 0.85rem;
    opacity: 0.85;
}

.capture-use-cases {
    margin: 3rem 0;
}

.capture-use-cases h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.use-case-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.use-case-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Integrations Section */
.integrations {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.integrations-content {
    max-width: 1200px;
    margin: 0 auto;
}

.integrations h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.integrations-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.integrations-feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.integrations-feature-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.integrations-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.integrations-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.integrations-feature-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.integrations-systems-section {
    margin: 3rem 0;
}

.integrations-systems-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.integrations-systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.integrations-system-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.integrations-system-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.integrations-system-item strong {
    font-size: 1rem;
}

.integrations-system-item span {
    font-size: 0.85rem;
    opacity: 0.85;
}

.integrations-highlight {
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.highlight-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.highlight-text p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

.integrations-dms-section {
    margin: 3rem 0;
}

.integrations-dms-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.dms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.dms-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dms-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

@media (max-width: 600px) {
    .highlight-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-phone-info {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-phone-info .phone-support {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-phone-info .phone-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-phone-info .phone-details h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-phone-info .phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-phone-info .phone-hours {
    font-size: 0.9rem;
    color: var(--gray);
}

.contact-form-heading {
    text-align: center;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--dark);
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        font-size: 1rem;
        font-family: inherit;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 150px;
    }

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

    .footer-section a:hover {
        color: var(--accent);
    }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-tiles {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

        .nav-links.active {
            display: flex;
        }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero.hero-compact h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .content-sections-container {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 1.25rem;
    }

    .product-tiles,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .contact-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 65px;
        padding: 6rem 1.5rem 4rem;
    }

    .hero.hero-compact {
        padding: 4rem 1.5rem 3rem;
    }

        .hero h1 {
            font-size: 2rem;
        }

        .hero.hero-compact h1 {
            font-size: 1.6rem;
        }

    .section-header h2 {
        font-size: 2rem;
    }

    nav {
        padding: 1rem;
    }

    .content-sections {
        padding: 2rem 1rem;
    }

    .products {
        padding: 2rem 1rem;
    }

    .product-tiles {
        grid-template-columns: 1fr;
    }
}
