/*
Theme Name: Alyeska POS
Description: Custom theme for Alyeska POS - Alaska & Hawaii
Version: 1.0
*/

:root {
    --navy: #0A1A2F;
    --teal: #00A8B5;
    --white: #FFFFFF;
    --gray: #F4F7F9;
    --text-dark: #333333;
    --text-light: #666666;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-top {
    background: var(--navy);
    color: var(--white);
    padding: 8px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.header-contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.header-contact-info .separator {
    opacity: 0.3;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    flex: 0 0 auto;
    padding-right: 40px; /* Space after logo */
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px; /* Increased gap between nav items */
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s;
    white-space: nowrap;
}

nav ul li a:hover {
    color: var(--teal);
}

.btn-nav-quote {
    background: var(--teal);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
    margin-left: 10px;
}

.btn-nav-quote:hover {
    background: #008e99;
    transform: translateY(-1px);
}

/* Hero Section - Restored to Vibrant & Centered */
.hero {
    background: linear-gradient(rgba(10, 26, 47, 0.3), rgba(10, 26, 47, 0.3)), url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 180px 0;
    color: var(--white);
    text-align: center; /* Centered text */
}

.hero-content {
    max-width: 900px;
    margin: 0 auto; /* Center the content box */
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 45px;
    opacity: 1;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.btn-hero {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, background 0.3s;
}

.btn-hero:hover {
    background: #008e99;
    transform: translateY(-2px);
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 42px;
    color: var(--navy);
    font-weight: 800;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.industry-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.card-inner {
    display: flex;
    height: 100%;
}

.card-img-box {
    flex: 0 0 45%;
    overflow: hidden;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-text-box {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon-header i {
    font-size: 24px;
    color: var(--teal);
}

.card-icon-header h3 {
    font-size: 22px;
    color: var(--navy);
    font-weight: 800;
    margin: 0;
}

.card-text-box p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.card-text-box ul {
    list-style: none;
    margin-bottom: 30px;
}

.card-text-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.card-text-box ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--teal);
}

.card-cta {
    margin-top: auto;
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Support Section */
.support {
    padding: 120px 0;
    background: var(--navy);
    color: var(--white);
}

.support .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.support-content {
    flex: 1;
}

.support-content .sub {
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.support-content h2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.support-content .desc {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.support-image {
    flex: 1;
}

.support-image img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(0,168,181,0.4));
}

/* ============================
   REDESIGNED FOOTER
   ============================ */
.site-footer {
    background-color: #0F2A44;
    color: #ffffff;
}

.footer-main {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.footer-map {
    flex: 0 0 22%;
    max-width: 22%;
}

.footer-map-img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-nav-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-nav-column h4 {
    color: #1FBFB1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1FBFB1;
    display: inline-block;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column ul li {
    margin-bottom: 12px;
}

.footer-nav-column ul li a {
    color: #b0c4d8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-nav-column ul li a:hover {
    color: #1FBFB1;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #0a1f33;
    border-top: 1px solid #1FBFB1;
    padding: 20px 40px;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-logo img {
    height: 40px;
    width: auto;
}

.footer-bottom-phones {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-phones a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.footer-bottom-phones a:hover {
    color: #1FBFB1;
}

.footer-bottom-phones .phone-icon {
    color: #1FBFB1;
    margin-right: 5px;
}

.footer-bottom-phones .phone-divider,
.footer-bottom-legal .legal-divider {
    color: #4a6a82;
}

.footer-bottom-legal a {
    color: #7a9ab5;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom-legal a:hover {
    color: #1FBFB1;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .footer-map {
        flex: none;
        max-width: 300px;
        margin-bottom: 40px;
    }

    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom-phones {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================
   FAQ SECTION
   ============================ */
.faq-section {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #dde4eb;
    margin-bottom: 0;
}

.faq-item:first-child {
    border-top: 1px solid #dde4eb;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #0F2A44;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #1FBFB1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #1FBFB1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 22px 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-link {
    color: #1FBFB1;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.faq-link:hover {
    text-decoration: underline;
}

/* ============================
   BLOG & COMPARISONS
   ============================ */
.blog-listing {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.blog-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-category {
    background-color: #e6f9f7;
    color: #0F2A44;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 3px;
}

.blog-date {
    color: #7a8a9a;
    font-size: 13px;
}

.blog-card-content h2 {
    font-size: 18px;
    color: #0F2A44;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h2 a {
    color: #0F2A44;
    text-decoration: none;
}

.blog-card-content h2 a:hover {
    color: #1FBFB1;
}

.blog-card-content p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-read-more {
    color: #1FBFB1;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.blog-read-more:hover {
    text-decoration: underline;
}

.blog-card-placeholder {
    border: 2px dashed #dde4eb;
    box-shadow: none;
}

.blog-card-placeholder:hover {
    transform: none;
    box-shadow: none;
}

/* Single Article */
.article-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    padding: 60px 0;
}

.blog-article {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.blog-article h2 {
    color: #0F2A44;
    margin-top: 40px;
    margin-bottom: 15px;
}

.blog-article h3 {
    color: #0F2A44;
    margin-top: 30px;
    margin-bottom: 10px;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-cta-box {
    background: #0F2A44;
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.sidebar-cta-box h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 20px;
}

.sidebar-cta-box p {
    color: #b0c4d8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sidebar-cta-box .btn-primary {
    display: block;
    text-align: center;
    background: #1FBFB1;
    color: #0F2A44;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 20px;
}

.sidebar-phone p {
    margin-bottom: 5px;
    font-size: 14px;
}

.sidebar-phone a {
    color: #1FBFB1;
    text-decoration: none;
}

.article-category {
    display: inline-block;
    background: rgba(31, 191, 177, 0.2);
    color: #1FBFB1;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 3px;
    margin-bottom: 15px;
}

/* Blog Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-container {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

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

/* New Sections & Components */
.intro-paragraph {
    max-width: 800px;
    margin: 20px auto 0;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.6;
}

.platform-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 40px;
    font-style: italic;
}

.hero-secondary-cta {
    margin-top: 20px;
    font-size: 14px !important;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.why {
    padding: 100px 0;
    background: var(--white);
}

.section-body {
    max-width: 800px;
    margin: 30px auto 0;
    font-size: 18px;
    color: var(--text-dark);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pillar-card {
    text-align: center;
    padding: 40px;
    background: var(--gray);
    border-radius: 12px;
    transition: transform 0.3s;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-card i {
    font-size: 40px;
    color: var(--teal);
    margin-bottom: 25px;
}

.pillar-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 800;
}

.pillar-card p {
    font-size: 15px;
    color: var(--text-light);
}

.support-callout {
    margin: 40px 0;
    padding-left: 30px;
    border-left: 4px solid var(--teal);
}

.support-callout blockquote {
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    color: var(--teal);
}

.contact-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 100px 0;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1.2;
    background: var(--gray);
    padding: 50px;
    border-radius: 12px;
}

.form-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

/* Dropdown Menu */
nav ul li {
    position: relative;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    list-style: none;
    padding: 15px 0;
    min-width: 220px;
    border-radius: 4px;
    z-index: 100;
}

.dropdown li a {
    padding: 10px 25px;
    display: block;
    font-size: 12px;
    color: var(--navy);
    text-transform: none;
    letter-spacing: 0.5px;
}

.dropdown li a:hover {
    background: var(--gray);
    color: var(--teal);
}

/* Multi-page Site Styles */
.page-hero {
    background: linear-gradient(rgba(10, 26, 47, 0.7), rgba(10, 26, 47, 0.7)), url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero .sub-headline {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.section-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 0;
}

.section-text {
    flex: 1;
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-item i {
    font-size: 32px;
    color: var(--teal);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 800;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
}

.problem-section h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 25px;
    font-weight: 800;
}

.regional-section {
    padding: 100px 0;
}

.page-cta-section {
    padding: 100px 0;
}

/* Responsive */
@media (max-width: 1200px) {
    nav ul {
        gap: 20px;
    }
    .logo {
        padding-right: 20px;
    }
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-content h1 {
        font-size: 52px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 20px;
    }
    .logo {
        padding-right: 0;
    }
    nav {
        justify-content: center;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .btn-nav-quote {
        margin-left: 0;
        margin-top: 10px;
    }
    .header-contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .card-inner {
        flex-direction: column;
    }
    .card-img-box {
        height: 250px;
    }
    .support .container {
        flex-direction: column;
        text-align: center;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .contact-flex {
        flex-direction: column;
    }
    .section-flex {
        flex-direction: column;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .page-hero h1 {
        font-size: 36px;
    }
}

/* ============================
   CTA MODAL
   ============================ */
.alyeska-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alyeska-modal.is-active {
    opacity: 1;
}

.alyeska-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 47, 0.85);
}

.alyeska-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.alyeska-modal.is-active .alyeska-modal-content {
    transform: translateY(0);
}

.alyeska-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.alyeska-modal-close:hover {
    color: #333;
}

.alyeska-modal-content h2 {
    font-size: 28px;
    color: #0F2A44;
    font-weight: 800;
    margin-bottom: 12px;
}

.alyeska-modal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.alyeska-modal-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-btn-primary {
    display: block;
    background: #00A8B5;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
}

.modal-btn-primary:hover {
    background: #008e99;
    transform: translateY(-1px);
}

.modal-divider {
    position: relative;
    text-align: center;
    color: #999;
    font-size: 13px;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: #ddd;
}

.modal-divider::before {
    left: 0;
}

.modal-divider::after {
    right: 0;
}

.modal-phones {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.modal-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0F2A44;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s, color 0.3s;
}

.modal-phone:hover {
    border-color: #00A8B5;
    color: #00A8B5;
}

.modal-phone i {
    color: #00A8B5;
}

.modal-phone span {
    font-size: 12px;
    color: #999;
    font-weight: 400;
    margin-left: 4px;
}

/* ============================
   COMPARE HUB PAGE
   ============================ */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.compare-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* ============================
   FAQ PAGE CATEGORIES
   ============================ */
.faq-page-section {
    padding: 100px 0;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h2 {
    font-size: 28px;
    color: #0F2A44;
    font-weight: 800;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f4f8;
}

/* ============================
   LEGAL PAGES
   ============================ */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 24px;
    color: #0F2A44;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 18px;
    color: #0F2A44;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 10px 0 20px 30px;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

/* ============================
   SUPPORT CALLOUT BLOCKS (Dark Navy)
   ============================ */
.support-block-dark {
    background: #1A3A5C;
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    margin: 40px 0;
}

.support-block-dark h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
}

.support-block-dark p {
    color: #b0c4d8;
    font-size: 16px;
    line-height: 1.7;
}

/* ============================
   HOMEPAGE CTA SECTION
   ============================ */
.homepage-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--gray);
}

/* ============================
   RESPONSIVE ADDITIONS
   ============================ */
@media (max-width: 768px) {
    .alyeska-modal-content {
        padding: 30px 20px;
    }

    .modal-phones {
        flex-direction: column;
        align-items: center;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }
}
