/* ==========================================================================

   Lone Star Hosting - Complete Main Stylesheet

   Last Updated: February 2025

   ========================================================================== */


/* ==========================================================================

   1. Root Variables & Base Styles

   ========================================================================== */

:root {

    /* Brand Colors */

    --texas-red: #bf0a30;

    --texas-blue: #002868;

    --texas-white: #ffffff;

    --texas-sand: #f4d03f;

    --texas-leather: #8b4513;



    /* Layout Variables */

    --sidebar-width: 280px;

    --header-height: 60px;



    /* Neutral Colors */

    --text-dark: #2d3748;

    --text-light: #718096;

    --border-color: #e2e8f0;

    --background-light: #f7fafc;



    /* Navigation Variables */

    --nav-padding: 0.5rem 0;

    --nav-link-padding: 0.5rem 0.75rem;

    --nav-link-margin: 0 0.25rem;

    --nav-border-radius: 5px;

    --nav-transition: all 0.3s ease;



    /* Common Values */

    --border-radius-sm: 8px;

    --border-radius-md: 15px;

    --border-radius-lg: 25px;

    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    --transition-standard: all 0.3s ease;

}

/* Add to main.css */

.breadcrumb {

    background: linear-gradient(to right, rgba(0, 40, 104, 0.05), rgba(0, 40, 104, 0.02));

    padding: 1rem;

    border-radius: 8px;

    margin: 1rem 0;

    border: 1px solid rgba(0, 40, 104, 0.1);

}



.breadcrumb-item {

    display: flex;

    align-items: center;

    color: var(--texas-blue);

    font-weight: 500;

}



.breadcrumb-item + .breadcrumb-item::before {

    content: "\f054";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    color: var(--texas-red);

    margin: 0 0.5rem;

    font-size: 0.75rem;

}



.breadcrumb-item a {

    color: var(--texas-blue);

    text-decoration: none;

    transition: color 0.3s ease;

}



.breadcrumb-item a:hover {

    color: var(--texas-red);

}



/* ==========================================================================

   2. Navigation Styles

   ========================================================================== */



/* Main Navigation Bar */

.navbar {

    background: var(--texas-white);

    box-shadow: 0 2px 4px rgba(0,0,0,0.1);

    transition: var(--nav-transition);

    padding: var(--nav-padding);

}



.navbar-brand {

    font-weight: bold;

    color: var(--texas-blue);

    text-decoration: none;

    font-size: 1.25rem;

}



.brand-star {

    color: var(--texas-red);

    margin-right: 0.5rem;

}



.navbar-nav {

    flex-wrap: nowrap;

    align-items: center;

}



.navbar-nav .nav-item {

    margin: var(--nav-link-margin);

}



.navbar-nav .nav-link {

    color: var(--text-dark);

    font-weight: 500;

    transition: var(--nav-transition);

    padding: var(--nav-link-padding);

    font-size: 0.9rem;

    white-space: nowrap;

}



.navbar-nav .nav-link:hover {

    color: var(--texas-red);

}



.navbar-nav .nav-link.active {

    color: var(--texas-red);

    background-color: rgba(191, 10, 48, 0.1);

    border-radius: var(--nav-border-radius);

}



.navbar-nav .nav-link.get-started {

    background-color: var(--texas-red);

    color: var(--texas-white);

    border-radius: var(--nav-border-radius);

    margin-left: 0.5rem;

}



.navbar-nav .nav-link.get-started:hover {

    background-color: var(--texas-blue);

    color: var(--texas-white);

}



.nav-icon {

    margin-right: 0.25rem;

    font-size: 0.8rem;

}



/* Responsive Navigation */

@media (max-width: 1200px) {

    .navbar-nav .nav-link {

        padding: 0.5rem 0.5rem;

        font-size: 0.85rem;

    }

}



@media (max-width: 992px) {

    .navbar-nav .nav-link {

        padding: 0.5rem 0.4rem;

        font-size: 0.8rem;

    }

    

    .navbar-nav .nav-item {

        margin: 0 0.1rem;

    }

}



.breadcrumb-item.active {

    color: var(--texas-red);

}

.related-card {

    background: white;

    padding: 2rem;

    border-radius: 15px;

    text-align: center;

    height: 100%;

    transition: transform 0.3s ease;

    border: 2px solid transparent;

}



.related-card:hover {

    transform: translateY(-5px);

    border-color: var(--texas-red);

}



.related-card i {

    font-size: 2.5rem;

    color: var(--texas-blue);

}



.related-card h3 {

    margin: 1rem 0;

    color: var(--texas-blue);

    font-size: 1.5rem;

}



.related-card p {

    color: #666;

    margin-bottom: 1.5rem;

}



.footer-links .sub-menu {

    padding-left: 1.5rem;

    margin: 0.5rem 0;

    list-style: none;

}



.footer-links .sub-menu a {

    font-size: 0.9rem;

    padding: 0.25rem 0;

    opacity: 0.8;

}



.footer-links .sub-menu a:hover {

    opacity: 1;

}



/* Footer Sitemap Styles */

.site-map-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

    gap: 1rem;

    margin: 2rem auto 0;

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    max-width: 1000px; /* Adjust this value based on your design needs */

    justify-content: center; /* Center the grid content */

    justify-items: center; /* Center grid items within their cells */

    text-align: center; /* Center text content */

    width: 100%; /* Ensure full width for proper centering */

}



.site-map-grid a {

    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    font-size: 0.9rem;

    transition: all 0.3s ease;

    display: block;

    padding: 0.25rem 0;

}



.site-map-grid a:hover {

    color: var(--texas-sand);

    transform: translateX(5px);

}



.site-map-section {

    margin-bottom: 1rem;

    text-align: center; /* Center the content within each section */

}



.site-map-section h5 {

    color: var(--texas-sand);

    font-size: 1rem;

    margin-bottom: 0.5rem;

    font-weight: 600;

}



.site-map-list {

    list-style: none;

    padding: 0;

    margin: 0;

}



.site-map-list li {

    margin-bottom: 0.25rem;

}



@media (max-width: 768px) {

    .site-map-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media (max-width: 480px) {

    .site-map-grid {

        grid-template-columns: 1fr;

    }

}



.content-link {

    color: var(--texas-blue);

    text-decoration: none;

    border-bottom: 1px dashed var(--texas-red);

    transition: all 0.3s ease;

}



.content-link:hover {

    color: var(--texas-red);

    border-bottom-style: solid;

}



.cross-reference {

    background: linear-gradient(135deg, var(--texas-blue) 0%, #1a365d 100%);

    padding: 4rem 0;

    color: white;

    position: relative;

    overflow: hidden;

}



.cross-reference::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

    opacity: 0.1;

}



.cross-link-card {

    background: rgba(255, 255, 255, 0.1);

    border-radius: 15px;

    padding: 2rem;

    height: 100%;

    transition: all 0.3s ease;

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.1);

}



.cross-link-card:hover {

    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.2);

}



.cross-link-icon {

    width: 60px;

    height: 60px;

    background: var(--texas-red);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 1.5rem;

    font-size: 1.5rem;

    color: white;

    transition: all 0.3s ease;

}



.cross-link-card:hover .cross-link-icon {

    transform: rotate(10deg);

    background: var(--texas-sand);

}



.cross-link-title {

    font-size: 1.25rem;

    font-weight: 600;

    margin-bottom: 1rem;

    color: var(--texas-sand);

}



.feature-list {

    list-style: none;

    padding: 0;

    margin: 0;

}



.feature-list li {

    margin-bottom: 0.75rem;

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.feature-list li i {

    color: var(--texas-sand);

    font-size: 0.8rem;

}



.cross-link-btn {

    margin-top: 1.5rem;

    background: transparent;

    border: 2px solid var(--texas-sand);

    color: var(--texas-sand);

    padding: 0.5rem 1.25rem;

    border-radius: 25px;

    text-decoration: none;

    transition: all 0.3s ease;

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

}



.cross-link-btn:hover {

    background: var(--texas-sand);

    color: var(--texas-blue);

    transform: translateX(5px);

}



/* Custom Fonts */

@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Open+Sans:wght@400;600&display=swap");



body {

    font-family:

        "Inter",

        -apple-system,

        BlinkMacSystemFont,

        sans-serif;

    overflow-x: hidden;

    background: var(--background-light);

    margin: 0;

    padding: 0;

}



/* ==========================================================================

   2. Layout Components

   ========================================================================== */



/* Navigation */

.navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

    background-color: var(--texas-white);

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    padding: 0.75rem 0;

    transition: var(--transition-standard);

}



.navbar.scrolled {

    padding: 0.5rem 0;

    background-color: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(10px);

}



.navbar-brand {

    display: flex;

    align-items: center;

    gap: 0.5rem;

    font-size: 1.5rem;

}



.brand-star {

    color: var(--texas-red);

    font-size: 1.8rem;

    animation: starPulse 2s infinite;

}



.brand-text {

    background: linear-gradient(to top right, var(--texas-red), var(--texas-blue));

    background-clip: text;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    font-weight: 700;

}



/* Navigation Links */

.nav-item {

    position: relative;

    margin: 0 0.25rem;

}



.nav-link {

    color: var(--texas-blue) !important;

    font-weight: 600;

    padding: 0.5rem 1rem !important;

    border-radius: var(--border-radius-sm);

    transition: var(--transition-standard);

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.nav-icon {

    font-size: 0.9rem;

    opacity: 0.8;

}



.nav-link:not(.get-started):hover {

    background-color: rgba(0, 40, 104, 0.05);

    transform: translateY(-2px);

    color: var(--texas-red) !important;

}



.nav-link.active {

    background-color: rgba(0, 40, 104, 0.1);

    color: var(--texas-red) !important;

}



.get-started {

    background: linear-gradient(45deg, var(--texas-red), #ff4646);

    color: white !important;

    padding: 0.5rem 1.25rem !important;

    border-radius: var(--border-radius-lg);

    margin-left: 0.5rem;

    border: 2px solid transparent;

    transition: var(--transition-standard);

}



.get-started:hover {

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(191, 10, 48, 0.2);

    border-color: var(--texas-red);

}



/* Content Header */

.content-header {

    margin-bottom: 3rem;

}



/* Breadcrumb Navigation */

.breadcrumb {

    display: flex;

    align-items: center;

    gap: 0.5rem;

    margin-bottom: 1rem;

    font-size: 0.875rem;

}



.breadcrumb-item {

    color: var(--text-light);

}



.breadcrumb-item:not(:last-child)::after {

    content: "/";

    margin-left: 0.5rem;

    color: var(--border-color);

}



.page-title {

    color: var(--texas-blue);

    font-size: 2.5rem;

    font-weight: 700;

    margin-bottom: 1rem;

}



/* Navigation Buttons */

.nav-buttons {

    display: flex;

    justify-content: space-between;

    margin-top: 3rem;

    padding-top: 2rem;

    border-top: 1px solid var(--border-color);

}



.nav-button {

    display: flex;

    align-items: flex-start;

    padding: 1.25rem;

    background: white;

    border: 1px solid var(--border-color);

    border-radius: 8px;

    text-decoration: none;

    color: var(--text-dark);

    transition: all 0.2s;

    min-width: 200px;

    max-width: 300px;

}



.nav-button:hover {

    background: var(--background-light);

    border-color: var(--texas-blue);

    transform: translateY(-2px);

}



.nav-button.prev {

    margin-right: auto;

}



.nav-button.next {

    margin-left: auto;

    text-align: right;

}



.nav-button .nav-label {

    font-size: 0.875rem;

    color: var(--text-light);

    display: block;

    margin-bottom: 0.25rem;

}



.nav-button h5 {

    margin: 0;

    font-size: 1rem;

    color: var(--text-dark);

}



/* Navigation Container */

.nav-container {

    flex: 1;

    overflow-y: auto;

    padding: 1rem 0;

}



.nav-section {

    margin-bottom: 1rem;

}



.nav-section-title {

    font-size: 0.75rem;

    text-transform: uppercase;

    color: var(--text-light);

    letter-spacing: 0.05em;

    padding: 0.5rem 1rem;

    margin: 0;

}



/* Navigation Links */

.nav-section .nav-link {

    display: block;

    padding: 0.75rem 1rem;

    color: var(--text-dark);

    text-decoration: none;

    transition: all 0.2s;

    border-radius: 4px;

    margin: 0.25rem 1rem;

}



.nav-section .nav-link:hover {

    background: var(--background-light);

    color: var(--texas-blue);

}



.nav-section .nav-link.active {

    background: var(--texas-blue);

    color: white;

}



/* Search Result Highlight */

.search-result-highlight {

    animation: highlightFade 2s ease-out;

}



/* Scrollbar Styling */

.nav-container::-webkit-scrollbar {

    width: 6px;

}



.nav-container::-webkit-scrollbar-track {

    background: var(--background-light);

}



.nav-container::-webkit-scrollbar-thumb {

    background: var(--border-color);

    border-radius: 3px;

}



.nav-container::-webkit-scrollbar-thumb:hover {

    background: var(--text-light);

}



/* Responsive Adjustments */

@media (max-width: 768px) {

    .nav-buttons {

        flex-direction: column;

        gap: 1rem;

    }



    .nav-button {

        width: 100%;

        max-width: none;

    }



    .breadcrumb {

        flex-wrap: wrap;

    }



    .page-title {

        font-size: 2rem;

    }



    .nav-section-title {

        padding: 0.5rem;

    }

}



/* Content Layout */

.main-content {

    flex: 1;

    margin-left: var(--sidebar-width);

    padding: 2rem;

    transition: margin-left 0.3s ease;

    max-width: calc(100% - var(--sidebar-width));

    background: var(--background-light);

    min-height: 100vh;

}



/* Grid Layouts */

.grid-2 {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1.5rem;

    margin: 1.5rem 0;

}



.grid-3 {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1.5rem;

    margin: 1.5rem 0;

}



/* ==========================================================================

   3. Hero & Banner Sections

   ========================================================================== */

.hero {

    background:

        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),

        url("/img/lone-star-header-image.jpg") center/cover;

    height: 600px;

    display: flex;

    align-items: center;

    color: var(--texas-white);

}



.hero-section {

    background: linear-gradient(135deg, var(--texas-blue) 0%, #1a365d 100%);

    padding: 6rem 0;

    position: relative;

    z-index: 1;

}



.bg-pattern {

    opacity: 0.1;

    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

}



/* ==========================================================================

   Features and Tabs Styles

   This section should be added after the main content sections

   ========================================================================== */



/* Features Section */

.features-section {

    padding: 5rem 0;

    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);

}



/* Tab Controls */

.feature-tab {

    border: none;

    padding: 1rem 2rem;

    background: transparent;

    color: var(--texas-blue);

    position: relative;

    transition: all 0.3s ease;

    font-weight: 600;

}



.feature-tab.active {

    color: var(--texas-red);

    background: white;

    border-radius: 10px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}



/* Tab Content */

.tab-pane {

    opacity: 0;

    transition: opacity 0.3s ease-in-out;

    display: none;

}



.tab-pane.show {

    opacity: 1;

    display: block;

}



/* Tab Feature Lists */

.spec-list {

    list-style: none;

    padding: 0;

}



.spec-list li {

    padding: 1rem;

    margin-bottom: 1rem;

    background: #f8f9fa;

    border-radius: 10px;

    display: flex;

    align-items: center;

}



.spec-list li i {

    color: var(--texas-red);

    margin-right: 1rem;

    font-size: 1.2rem;

}



/* Tech Badges */

.tech-badge {

    padding: 0.5rem 1rem;

    background: #f8f9fa;

    border-radius: 20px;

    margin: 0.5rem;

    display: inline-block;

    font-weight: 600;

}



/* Preview Components */

.cpanel-preview {

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

    margin: 2rem 0;

}



.feature-details {

    padding: 2rem;

    background: white;

    border-radius: 15px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



/* Responsive Adjustments */

@media (max-width: 768px) {

    .feature-tab {

        width: 100%;

        text-align: center;

        margin-bottom: 0.5rem;

    }



    .spec-list li {

        flex-direction: column;

        text-align: center;

    }



    .spec-list li i {

        margin-right: 0;

        margin-bottom: 0.5rem;

    }



    .cpanel-preview {

        margin: 1rem 0;

    }

}



/* Focus Section */

.focus-section {

    padding: 5rem 0;

    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);

}



.focus-card {

    background: white;

    border-radius: 15px;

    padding: 3rem;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    margin-bottom: 2rem;

}



.focus-card h2 {

    color: var(--texas-blue);

    margin-bottom: 1.5rem;

    font-weight: 700;

}



/* ==========================================================================

   4. Cards & Content Components

   ========================================================================== */



/* Feature Cards */

.feature-card {

    background: white;

    border-radius: var(--border-radius-md);

    padding: 2rem;

    height: 100%;

    border: 2px solid transparent;

    transition: var(--transition-standard);

}



.feature-card:hover {

    transform: translateY(-10px);

    border-color: var(--texas-red);

}



.feature-icon {

    width: 80px;

    height: 80px;

    background: var(--texas-white);

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 1.5rem;

    box-shadow: var(--card-shadow);

    transition: var(--transition-standard);

}



.feature-icon i {

    font-size: 2rem;

    color: var(--texas-red);

}



.feature-card:hover .feature-icon {

    background: var(--texas-red);

}



.feature-card:hover .feature-icon i {

    color: white;

}



/* Content Cards */

.content-card {

    background: white;

    border-radius: var(--border-radius-md);

    box-shadow: var(--card-shadow);

    margin-bottom: 2rem;

    transition: var(--transition-standard);

    border: 1px solid var(--border-color);

    scroll-margin-top: 2rem;

}



.card-header {

    padding: 1.5rem;

    border-bottom: 1px solid var(--border-color);

    background: var(--background-light);

    border-radius: 12px 12px 0 0;

}



.card-title {

    color: var(--texas-blue);

    font-size: 1.5rem;

    font-weight: 600;

    margin: 0;

    display: flex;

    align-items: center;

    gap: 0.75rem;

}



.card-body {

    padding: 1.5rem;

}



/* Pricing Cards */

.pricing-card {

    background: white;

    border-radius: 15px;

    overflow: hidden;

    transition: all 0.3s ease;

    border: 2px solid var(--texas-blue);

    height: 100%; /* Ensure all cards are same height */

    display: flex;

    flex-direction: column;

}



/* Header Section */

.pricing-header {

    background: var(--texas-blue);

    color: white;

    padding: 2.5rem;

    text-align: center;

}



.pricing-card.featured .pricing-header {

    background: var(--texas-red);

}



/* Body Section */

.pricing-body {

    padding: 2.5rem;

    flex: 1; /* Allow body to fill remaining space */

    display: flex;

    flex-direction: column;

}



/* Feature List */

.feature-list {

    list-style: none;

    padding: 0;

    margin: 0;

    flex: 1; /* Allow list to fill available space */

}



.feature-list li {

    padding: 0.75rem 1rem;

    color: #000000;

    border-bottom: 1px solid #eee;

    font-size: 1rem;

    display: flex;

    align-items: center;

    font-weight: 400;

}



.feature-list li:last-child {

    border-bottom: none;

}



.feature-list li i {

    color: var(--texas-red);

    margin-right: 1rem;

    font-size: 1rem;

}



/* Override dark mode styles */

@media (prefers-color-scheme: dark) {

    /* Remove or modify this block to prevent dark mode color changes */

    .feature-list li {

        color: #000000; /* Keep text black even in dark mode */

        border-bottom-color: rgba(0, 0, 0, 0.1);

    }



    .pricing-card {

        background: white; /* Ensure card background stays white */

    }



    .pricing-body {

        background: white; /* Ensure body background stays white */

    }

}



/* Additional specificity for feature text */

.pricing-card .pricing-body .feature-list li {

    color: #000000;

}



/* Button Container */

.pricing-body .text-center {

    margin-top: auto; /* Push button to bottom */

    padding-top: 2rem;

}



/* Make sure columns are equal width */

.col-lg-4 {

    flex: 0 0 33.333333%;

    max-width: 33.333333%;

}



/* Ensure consistent spacing */

.pricing-price {

    font-size: 3.5rem;

    font-weight: 700;

    color: white;

    margin: 1.5rem 0;

    line-height: 1;

}



.pricing-card.featured {

    border-color: var(--texas-red);

}



/* Add consistent bottom margin to rows */

.row.g-4 {

    margin-bottom: 3rem;

}



/* Alert Styles */

.alert-warning {

    background: rgba(166, 144, 52, 0.2);

    border: 1px solid var(--texas-sand);

    color: #ffffff;

    font-size: 0.9rem;

    border-radius: 10px;

    margin-top: 1rem;

}



/* Button Styles */

.pricing-body .btn {

    padding: 0.75rem 2rem;

    font-weight: 600;

    transition: all 0.3s ease;

    width: 100%;

    border-radius: 10px;

}



.pricing-body .btn-outline-primary {

    border-color: var(--texas-blue);

    color: var(--texas-blue);

}



.pricing-body .btn-outline-primary:hover {

    background: var(--texas-blue);

    color: white;

    transform: translateY(-2px);

}



.pricing-body .btn-danger {

    background: var(--texas-red);

    border: none;

}



.pricing-body .btn-danger:hover {

    background: #d60a2d;

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(191, 10, 48, 0.2);

}



/* Responsive Adjustments */

@media (max-width: 768px) {

    .pricing-section {

        padding: 3rem 0;

    }



    .plan-selector {

        padding: 1rem;

    }



    .plan-selector .btn-group {

        flex-direction: column;

        width: 100%;

        gap: 0.5rem;

    }



    .pricing-card {

        margin-bottom: 2rem;

    }



    .pricing-price {

        font-size: 2.5rem;

    }

}



/* Dark Mode Support */

@media (prefers-color-scheme: dark) {

    .pricing-section {

        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);

    }



    .pricing-card {

        background: #2d2d2d;

        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

    }



    .pricing-header {

        background: linear-gradient(to bottom, #2d2d2d, #333);

        border-bottom-color: #444;

    }



    .feature-list li {

        color: #ccc;

        border-bottom-color: #444;

    }



    .pricing-header small.text-muted {

        color: #aaa !important;

    }

}



.featured-badge {

    position: absolute;

    top: 0;

    right: 0;

    background: var(--texas-red);

    color: white;

    padding: 0.5rem 1rem;

    border-bottom-left-radius: 15px;

}



.pricing-section {

    padding: 5rem 0;

    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

}



.pricing-card {

    border: 2px solid var(--texas-blue);

    border-radius: 15px;

    transition: all 0.3s ease;

    overflow: hidden;

    background: white;

}



.pricing-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);

}



.pricing-card.featured {

    border-color: var(--texas-red);

    position: relative;

}



.pricing-header {

    background: var(--texas-blue);

    color: white;

    padding: 2rem;

    text-align: center;

}



.featured .pricing-header {

    background: var(--texas-red);

}



.pricing-price {

    font-size: 2.5rem;

    font-weight: bold;

    margin: 1rem 0;

}



.feature-list {

    list-style: none;

    padding: 0;

    margin: 0;

}



.feature-list li {

    padding: 0.75rem 1rem;

    border-bottom: 1px solid #eee;

}



.feature-list li i {

    color: var(--texas-red);

    margin-right: 10px;

}



.featured-badge {

    position: absolute;

    top: 0;

    right: 0;

    background: var(--texas-red);

    color: white;

    padding: 0.5rem 1rem;

    border-bottom-left-radius: 15px;

}

/* Desktop Styles (Base) */

.plan-selector {

    text-align: center;

    margin-bottom: 3rem;

    width: 100%;

}



/* Button Group Container */

.plan-selector .btn-group {

    display: inline-flex;

    justify-content: center;

    gap: 1rem;

    padding: 0.5rem;

    width: auto;

    background: transparent;

}



/* Individual Buttons */

.plan-selector .btn {

    background: white;

    color: var(--texas-blue);

    border: 2px solid var(--texas-blue);

    padding: 1rem 2rem;

    border-radius: 8px;

    min-width: 180px;

    transition: all 0.3s ease;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 0.5rem;

}



/* Save Text */

.plan-selector .btn small {

    font-size: 0.8rem;

    opacity: 0.8;

    display: block;

}



/* Active State */

.plan-selector .btn.active,

.plan-selector .btn.btn-danger {

    background: var(--texas-blue);

    color: white;

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.15);

}



/* Hover State */

.plan-selector .btn:hover:not(.active):not(.btn-danger) {

    background: rgba(0, 40, 104, 0.05);

    transform: translateY(-1px);

}



.compare-table {

    background: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



.compare-table th {

    background: var(--texas-blue);

    color: white;

    padding: 1rem;

}



.compare-table td {

    padding: 1rem;

    border-bottom: 1px solid #eee;

}

.footer {

    background: var(--texas-blue);

    color: var(--texas-white);

    padding-top: 5rem;

}

.texas-accent::before {

    content: "★";

    color: var(--texas-red);

    position: absolute;

    left: -20px;

    top: 50%;

    transform: translateY(-50%);

}



.footer {

    background: var(--texas-blue);

    color: var(--texas-white);

    padding-top: 5rem;

}



.footer-logo {

    margin-bottom: 1.5rem;

}



.footer-logo img {

    height: 50px;

}



.footer-description {

    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 2rem;

    max-width: 300px;

}



.footer-heading {

    color: var(--texas-sand);

    font-size: 1.2rem;

    font-weight: 600;

    margin-bottom: 1.5rem;

    position: relative;

    padding-bottom: 0.5rem;

}



.footer-heading::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 50px;

    height: 2px;

    background: var(--texas-red);

}



.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-links li {

    margin-bottom: 0.8rem;

}



.footer-links a {

    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    transition: all 0.3s ease;

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.footer-links a:hover {

    color: var(--texas-sand);

    transform: translateX(5px);

}



.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-contact li {

    margin-bottom: 1rem;

    display: flex;

    align-items: flex-start;

    gap: 1rem;

}



.footer-contact i {

    color: var(--texas-sand);

    font-size: 1.2rem;

    margin-top: 0.3rem;

}



.social-links {

    display: flex;

    gap: 1rem;

    margin-top: 1.5rem;

}



.social-link {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--texas-white);

    text-decoration: none;

    transition: all 0.3s ease;

}



.social-link:hover {

    background: var(--texas-red);

    color: white;

    transform: translateY(-3px);

}



.footer-newsletter {

    background: rgba(255, 255, 255, 0.05);

    padding: 2rem;

    border-radius: 15px;

    margin-bottom: 2rem;

}



.footer-newsletter input {

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.2);

    color: white;

    padding: 0.8rem;

}



.footer-newsletter input::placeholder {

    color: rgba(255, 255, 255, 0.5);

}



.footer-bottom {

    background: rgba(0, 0, 0, 0.2);

    padding: 1.5rem 0;

    margin-top: 4rem;

}



.footer-bottom-links {

    display: flex;

    gap: 2rem;

}



.footer-bottom-links a {

    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    font-size: 0.9rem;

    transition: color 0.3s ease;

}



.footer-bottom-links a:hover {

    color: var(--texas-sand);

}



.texas-accent {

    position: relative;

}



.award-badge {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    background: rgba(255, 255, 255, 0.1);

    padding: 0.5rem 1rem;

    border-radius: 20px;

    margin: 0.5rem;

}



.award-badge i {

    color: var(--texas-sand);

}



.trust-badges {

    display: flex;

    flex-wrap: wrap;

    gap: 1rem;

    margin-top: 2rem;

}



.trust-badge {

    background: rgba(255, 255, 255, 0.1);

    padding: 0.8rem;

    border-radius: 10px;

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.trust-badge i {

    color: var(--texas-sand);

}



@media (max-width: 768px) {

    .footer-bottom-links {

        flex-direction: column;

        gap: 1rem;

        text-align: center;

    }



    .footer {

        text-align: center;

    }



    .footer-heading::after {

        left: 50%;

        transform: translateX(-50%);

    }



    .social-links {

        justify-content: center;

    }



    .footer-links a {

        justify-content: center;

    }

}



#submitButton {

    padding: 0.75rem 2rem;

    font-size: 1rem;

    font-weight: 600;

    min-width: 200px;

    background-color: var(--texas-blue);

    border: none;

}



#submitButton:hover {

    background-color: var(--texas-red);

    transform: translateY(-2px);

    transition: all 0.3s ease;

}



/* Blog Cards */

.blog-card {

  min-height: 320px; /* or whatever fits your design */

  display: flex;

  flex-direction: column;

  justify-content: stretch;

}

.blog-card .card-body {

  display: flex;

  flex-direction: column;

  height: 100%;

}

.blog-card .blog-title {

  margin-bottom: 0.5rem;

}

.blog-card .blog-excerpt {

  margin-bottom: 1rem;

}



.filter-btn {

    padding: 0.5rem 1.5rem;

    border: none;

    background: transparent;

    color: #666;

    font-weight: 600;

    border-radius: 20px;

    transition: all 0.3s ease;

}



.filter-btn.active {

    background: var(--texas-blue);

    color: white;

}



.filter-btn:hover {

    color: var(--texas-red);

}



.loading-spinner {

    border: 4px solid #f3f3f3;

    border-top: 4px solid var(--texas-red);

    border-radius: 50%;

    width: 40px;

    height: 40px;

    animation: spin 1s linear infinite;

    margin: 2rem auto;

}



@keyframes spin {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(360deg);

    }

}

.btn-danger {

    background: var(--texas-red);

    border: none;

    padding: 0.75rem 1.5rem;

    border-radius: 25px;

    transition: all 0.3s ease;

}

/* Call to Action Sections*/

.cta-section {

    background-color: #f8f9fa;

    position: relative;

    z-index: 1;

}



.texas-gradient {

    background: linear-gradient(135deg, var(--texas-blue) 0%, #1a365d 100%);

}



.text-white-75 {

    color: rgba(255, 255, 255, 0.75) !important;

}



.cta-section .btn-warning {

    background-color: var(--texas-sand);

    border-color: var(--texas-sand);

    color: var(--texas-blue);

    font-weight: 600;

    transition: all 0.3s ease;

}



.cta-section .btn-warning:hover {

    background-color: #e5c53b;

    border-color: #e5c53b;

    color: var(--texas-blue);

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);

}



.cta-section .fas {

    transition: transform 0.3s ease;

}



.cta-section .d-flex:hover .fas {

    transform: scale(1.2);

}



.border-opacity-25 {

    border-color: rgba(255, 255, 255, 0.25) !important;

}



@media (max-width: 768px) {

    .cta-section .card-body {

        padding: 2rem !important;

    }



    .cta-section h2 {

        font-size: 1.75rem;

    }



    .cta-section .d-flex {

        justify-content: flex-start !important;

    }

}

.quote-form-section .form-label {

    font-weight: 500;

    margin-bottom: 0.5rem;

}



.quote-form-section .form-control,

.quote-form-section .form-select {

    padding: 0.75rem;

    border-radius: 0.5rem;

    border: 1px solid #dee2e6;

    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

}



.quote-form-section .form-control:focus,

.quote-form-section .form-select:focus {

    border-color: #86b7fe;

    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);

}



.quote-form-section .form-control.is-invalid,

.quote-form-section .form-select.is-invalid {

    border-color: #dc3545;

    padding-right: calc(1.5em + 0.75rem);

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");

    background-repeat: no-repeat;

    background-position: right calc(0.375em + 0.1875rem) center;

    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);

}



.quote-form-section .char-counter {

    font-size: 0.875rem;

}



.quote-form-section .char-counter.warning {

    color: #dc3545;

}



.spinner-border-sm {

    width: 1rem;

    height: 1rem;

    border-width: 0.2em;

}



.btn-primary:disabled {

    cursor: not-allowed;

    opacity: 0.65;

}

/* ==========================================================================

   5. Trust Indicators & Status Elements

   ========================================================================== */



/* Trust Badges */

.trust-badges {

    display: flex;

    flex-wrap: wrap;

    gap: 1rem;

    margin-top: 2rem;

}



.trust-badge {

    background: rgba(255, 255, 255, 0.1);

    padding: 0.8rem;

    border-radius: var(--border-radius-sm);

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.trust-badge i {

    color: var(--texas-sand);

}



/* Status Indicators */

.status-indicator {

    width: 12px;

    height: 12px;

    background: #28a745;

    border-radius: 50%;

    display: inline-block;

    margin-right: 0.5rem;

}



.progress-indicator {

    padding: 1rem;

    border-top: 1px solid var(--border-color);

    background: white;

}



.progress-label {

    display: flex;

    justify-content: space-between;

    font-size: 0.75rem;

    color: var(--text-light);

    margin-bottom: 0.5rem;

}



.progress-bar {

    height: 4px;

    background: var(--border-color);

    border-radius: 2px;

    overflow: hidden;

}



.progress-value {

    height: 100%;

    background: var(--texas-blue);

    width: 0%;

    transition: width 0.3s ease;

}



/* Award Badges */

.award-badge {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    background: rgba(255, 255, 255, 0.1);

    padding: 0.5rem 1rem;

    border-radius: 20px;

    margin: 0.5rem;

}



.award-badge i {

    color: var(--texas-sand);

}



/* ==========================================================================

   6. Footer & Social Elements

   ========================================================================== */

.footer {

    background: var(--texas-blue);

    color: var(--texas-white);

    padding-top: 5rem;

}



.footer-logo {

    margin-bottom: 1.5rem;

}



.footer-logo img {

    height: 50px;

}



.footer-description {

    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 2rem;

    max-width: 300px;

}



.footer-heading {

    color: var(--texas-sand);

    font-size: 1.2rem;

    font-weight: 600;

    margin-bottom: 1.5rem;

    position: relative;

    padding-bottom: 0.5rem;

}



.footer-heading::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 50px;

    height: 2px;

    background: var(--texas-red);

}



.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-links li {

    margin-bottom: 0.8rem;

}



.footer-links a {

    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    transition: var(--transition-standard);

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.footer-links a:hover {

    color: var(--texas-sand);

    transform: translateX(5px);

}



.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-contact li {

    margin-bottom: 1rem;

    display: flex;

    align-items: flex-start;

    gap: 1rem;

}



.footer-contact i {

    color: var(--texas-sand);

    font-size: 1.2rem;

    margin-top: 0.3rem;

}



.social-links {

    display: flex;

    gap: 1rem;

    margin-top: 1.5rem;

}



.social-link {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--texas-white);

    text-decoration: none;

    transition: var(--transition-standard);

}



.social-link:hover {

    background: var(--texas-red);

    color: white;

    transform: translateY(-3px);

}



.footer-newsletter {

    background: rgba(255, 255, 255, 0.05);

    padding: 2rem;

    border-radius: var(--border-radius-md);

    margin-bottom: 2rem;

}



.footer-newsletter input {

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.2);

    color: white;

    padding: 0.8rem;

}



.footer-newsletter input::placeholder {

    color: rgba(255, 255, 255, 0.5);

}



.footer-bottom {

    background: rgba(0, 0, 0, 0.2);

    padding: 1.5rem 0;

    margin-top: 4rem;

}



.footer-bottom-links {

    display: flex;

    gap: 2rem;

}



.footer-bottom-links a {

    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    font-size: 0.9rem;

    transition: color 0.3s ease;

}



.footer-bottom-links a:hover {

    color: var(--texas-sand);

}



/* ==========================================================================

   7. Forms & Interactive Elements

   ========================================================================== */

.form-control {

    border: 2px solid var(--border-color);

    padding: 0.8rem;

    margin-bottom: 1rem;

    border-radius: var(--border-radius-sm);

    transition: var(--transition-standard);

}



.form-control:focus {

    border-color: var(--texas-blue);

    box-shadow: none;

    outline: none;

}



.btn {

    cursor: pointer;

    position: relative;

    overflow: hidden;

    z-index: 10;

    transition: var(--transition-standard);

}



.btn-warning {

    background-color: var(--texas-sand);

    border-color: var(--texas-sand);

    color: var(--texas-blue);

    font-weight: 600;

}



.btn-warning:hover {

    background-color: #e5c53b;

    color: var(--texas-blue);

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);

}



/* ==========================================================================

   8. Utility Classes

   ========================================================================== */

.text-white-75 {

    color: rgba(255, 255, 255, 0.75) !important;

}



.bg-opacity-10 {

    --bs-bg-opacity: 0.1;

}



.texas-accent {

    position: relative;

}



.texas-accent::before {

    content: "★";

    color: var(--texas-red);

    position: absolute;

    left: -20px;

    top: 50%;

    transform: translateY(-50%);

}



.texas-border {

    border-bottom: 3px solid var(--texas-red);

    position: relative;

    padding-bottom: 30px;

    margin-bottom: 50px;

}



.texas-border::after {

    content: "★";

    color: var(--texas-red);

    position: absolute;

    bottom: -12px;

    left: 50%;

    transform: translateX(-50%);

    background: white;

    padding: 0 10px;

    font-size: 1.2rem;

}



.visually-hidden {

    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    border: 0;

}



/* ==========================================================================

   9. Notice & Alert Components

   ========================================================================== */

.notice {

    padding: 1.5rem;

    border-radius: 8px;

    margin: 1.5rem 0;

    display: flex;

    align-items: flex-start;

    gap: 1rem;

}



.notice.info {

    background: rgba(0, 40, 104, 0.1);

    color: var(--texas-blue);

}



.notice.warning {

    background: rgba(191, 10, 48, 0.1);

    color: var(--texas-red);

}



/* Loading States */

.content-loader {

    position: fixed;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 1rem;

}



.loader-spinner {

    width: 50px;

    height: 50px;

    border: 3px solid var(--border-color);

    border-top-color: var(--texas-blue);

    border-radius: 50%;

    animation: spin 1s linear infinite;

}



.loading-spinner {

    border: 4px solid #f3f3f3;

    border-top: 4px solid var(--texas-red);

    border-radius: 50%;

    width: 40px;

    height: 40px;

    animation: spin 1s linear infinite;

    margin: 2rem auto;

}



/* Error States */

.error-message {

    text-align: center;

    padding: 3rem;

    color: var(--texas-red);

    background: white;

    border-radius: 8px;

    box-shadow: var(--card-shadow);

}



.error-message h3 {

    margin-bottom: 1rem;

    color: var(--text-dark);

}



.reload-button {

    margin-top: 1rem;

    padding: 0.5rem 1rem;

    background: var(--texas-blue);

    color: white;

    border: none;

    border-radius: 4px;

    cursor: pointer;

    transition: background-color 0.2s;

}



.reload-button:hover {

    background-color: #001f4d;

}



/* ==========================================================================

   10. Animations & Transitions

   ========================================================================== */

.fade-in {

    animation: fadeIn 0.3s ease-in;

}



.slide-in {

    animation: slideIn 0.3s ease-out;

}



@keyframes fadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}



@keyframes slideIn {

    from {

        transform: translateY(20px);

        opacity: 0;

    }

    to {

        transform: translateY(0);

        opacity: 1;

    }

}



@keyframes starPulse {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.2);

    }

    100% {

        transform: scale(1);

    }

}



@keyframes spin {

    to {

        transform: rotate(360deg);

    }

}



@keyframes highlightFade {

    0% {

        background-color: rgba(0, 40, 104, 0.2);

    }

    100% {

        background-color: transparent;

    }

}



/* ==========================================================================

   11. Responsive Styles

   ========================================================================== */

@media (max-width: 1024px) {

    .grid-3 {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media (max-width: 991.98px) {

    .navbar-nav {

        padding: 1rem 0;

    }



    .nav-item {

        margin: 0.25rem 0;

    }



    .nav-link {

        padding: 0.75rem 1rem !important;

    }



    .get-started {

        margin: 0.5rem 0;

    }



    .service-card {

        margin-bottom: 2rem;

    }

}



@media (max-width: 768px) {

    :root {

        --sidebar-width: 100%;

    }



    .main-content {

        margin-left: 0;

        max-width: 100%;

        padding: 1rem;

    }



    .page-title {

        font-size: 2rem;

    }



    .grid-2,

    .grid-3 {

        grid-template-columns: 1fr;

    }



    .nav-buttons {

        flex-direction: column;

        gap: 1rem;

    }



    .nav-button {

        width: 100%;

        max-width: none;

    }



    .footer {

        text-align: center;

    }



    .footer-bottom-links {

        flex-direction: column;

        gap: 1rem;

        text-align: center;

    }



    .footer-heading::after {

        left: 50%;

        transform: translateX(-50%);

    }



    .social-links {

        justify-content: center;

    }



    .footer-links a {

        justify-content: center;

    }



    .hero-section {

        padding: 4rem 0;

    }



    .hero-content h1 {

        font-size: 2rem;

    }



    .trust-indicators {

        flex-direction: column;

        align-items: flex-start;

        gap: 1rem;

    }

}



/* ==========================================================================

   12. Print Styles

   ========================================================================== */

@media print {

    .no-print {

        display: none !important;

    }



    .footer,

    .header {

        display: none;

    }



    a[href]:after {

        content: " (" attr(href) ")";

    }

}

/* ==========================================================================

   13. FAQ Section Styles

   This section should be added after the main content sections and before the footer

   ========================================================================== */



/* FAQ Categories */

.faq-categories {

    display: flex;

    justify-content: center;

    gap: 1rem;

    flex-wrap: wrap;

    margin-bottom: 3rem;

}



.category-btn {

    padding: 0.75rem 1.5rem;

    border: 2px solid var(--texas-blue);

    border-radius: 25px;

    color: var(--texas-blue);

    background: transparent;

    transition: all 0.3s ease;

    font-weight: 600;

}



.category-btn:hover,

.category-btn.active {

    background: var(--texas-blue);

    color: white;

}

/* FAQ Section Styles */

.faq-section {

    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);

}



.accordion-item {

    border-radius: 10px;

    overflow: hidden;

    transition: all 0.3s ease;

}



.accordion-item:hover {

    transform: translateY(-2px);

}



.accordion-button {

    padding: 1.25rem;

    font-weight: 600;

    color: var(--texas-blue);

    background: white;

}



.accordion-button:not(.collapsed) {

    color: var(--texas-red);

    background: white;

    box-shadow: none;

}



.accordion-button:focus {

    box-shadow: none;

    border-color: rgba(191, 10, 48, 0.1);

}



.accordion-button::after {

    background-size: 1.25rem;

    transition: all 0.2s ease;

}



.accordion-body {

    padding: 1.25rem;

    color: #666;

    line-height: 1.6;

}



/* FAQ Items */

.faq-item {

    background: white;

    border-radius: 10px;

    margin-bottom: 1rem;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

    overflow: hidden;

}



.faq-question {

    padding: 1.5rem;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border: none;

    background: white;

    width: 100%;

    text-align: left;

    color: var(--texas-blue);

    font-weight: 600;

    transition: all 0.3s ease;

}



.faq-question:hover {

    color: var(--texas-red);

}



.faq-question i {

    transition: transform 0.3s ease;

}



.faq-question[aria-expanded="true"] i {

    transform: rotate(180deg);

}



.faq-answer {

    padding: 0 1.5rem;

    background: #f8f9fa;

    border-top: 1px solid #eee;

}



.faq-answer-content {

    padding: 1.5rem 0;

    color: #666;

}



/* Quick Links Section */

.quick-links {

    background: var(--texas-blue);

    color: white;

    padding: 2rem;

    border-radius: 10px;

    margin-top: 3rem;

}



.quick-link {

    color: white;

    text-decoration: none;

    display: block;

    padding: 0.5rem 0;

    transition: color 0.3s ease;

}



.quick-link:hover {

    color: var(--texas-sand);

}



/* FAQ Search */

.search-box {

    position: relative;

    margin-bottom: 3rem;

}



.search-box input {

    width: 100%;

    padding: 1rem 1.5rem;

    border: 2px solid #eee;

    border-radius: 25px;

    font-size: 1.1rem;

    transition: all 0.3s ease;

}



.search-box input:focus {

    border-color: var(--texas-blue);

    outline: none;

}



.search-box i {

    position: absolute;

    right: 1.5rem;

    top: 50%;

    transform: translateY(-50%);

    color: #666;

}



/* Search Results */

.search-results {

    position: absolute;

    top: calc(100% - 1rem);

    left: 1rem;

    right: 1rem;

    background: white;

    border: 1px solid var(--border-color);

    border-radius: 4px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    z-index: 1000;

    max-height: 300px;

    overflow-y: auto;

    display: none;

}



.search-result-item {

    padding: 0.75rem 1rem;

    border-bottom: 1px solid var(--border-color);

    cursor: pointer;

    transition: background-color 0.2s;

}



.search-result-item:last-child {

    border-bottom: none;

}



.search-result-item:hover {

    background: var(--background-light);

}



/* Responsive Adjustments */

@media (max-width: 768px) {

    .faq-categories {

        flex-direction: column;

        align-items: stretch;

    }



    .category-btn {

        width: 100%;

        text-align: center;

    }



    .search-box {

        margin: 1rem;

    }

}

/* ==========================================================================

   14. Contact Section Styles

   This section should be added after the FAQ section and before the footer

   ========================================================================== */



/* Contact Cards */

.contact-card {

    background: white;

    border-radius: 15px;

    padding: 2rem;

    height: 100%;

    transition: transform 0.3s ease;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



.contact-card:hover {

    transform: translateY(-5px);

}



.contact-icon {

    width: 80px;

    height: 80px;

    background: var(--texas-blue);

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 1.5rem;

    font-size: 2rem;

    transition: all 0.3s ease;

}



.contact-card:hover .contact-icon {

    background: var(--texas-red);

}



/* Status Indicators */

.status-indicator {

    width: 12px;

    height: 12px;

    background: #28a745;

    border-radius: 50%;

    display: inline-block;

    margin-right: 0.5rem;

}



/* Contact Form */

.contact-form {

    background: white;

    padding: 2rem;

    border-radius: 15px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



.contact-form .form-control {

    border: 2px solid #eee;

    padding: 0.8rem;

    margin-bottom: 1rem;

    border-radius: 10px;

}



.contact-form .form-control:focus {

    border-color: var(--texas-blue);

    box-shadow: none;

}



/* Knowledge Base Section */

.knowledge-base {

    background: #f8f9fa;

    border-radius: 15px;

    padding: 2rem;

    margin-top: 3rem;

}



.kb-article {

    padding: 1rem;

    border-bottom: 1px solid #eee;

    transition: all 0.3s ease;

    display: flex;

    align-items: center;

    text-decoration: none;

    color: inherit;

}



.kb-article:hover {

    background: white;

    border-radius: 10px;

    transform: translateX(10px);

    color: var(--texas-red);

}



.kb-article i {

    margin-right: 1rem;

    color: var(--texas-blue);

}



/* Support Hours Banner */

.support-hours {

    background: var(--texas-blue);

    color: white;

    padding: 2rem;

    border-radius: 15px;

    margin-top: 3rem;

    text-align: center;

}



/* Support Chat Button */

.support-chat {

    position: fixed;

    bottom: 2rem;

    right: 2rem;

    background: var(--texas-blue);

    color: white;

    padding: 1rem 2rem;

    border-radius: 30px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 0.5rem;

    transition: all 0.3s ease;

    z-index: 1000;

}



.support-chat:hover {

    background: var(--texas-red);

    color: white;

    transform: translateY(-5px);

}



/* Office Information */

.texas-map {

    position: relative;

    padding-top: 56.25%;

    background: #f8f9fa;

    border-radius: 15px;

    overflow: hidden;

}



.office-info {

    background: white;

    border-radius: 15px;

    padding: 2rem;

    margin-top: 2rem;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



/* Contact Method Links */

.contact-method {

    text-align: center;

    padding: 1.5rem;

}



.contact-method i {

    font-size: 2rem;

    color: var(--texas-blue);

    margin-bottom: 1rem;

}



.contact-method h3 {

    margin-bottom: 0.5rem;

    color: var(--text-dark);

}



/* Responsive Adjustments */

@media (max-width: 768px) {

    .contact-card {

        margin-bottom: 1.5rem;

    }



    .support-chat {

        bottom: 1rem;

        right: 1rem;

        padding: 0.75rem 1.5rem;

    }



    .contact-form {

        margin: 1rem;

    }



    .knowledge-base {

        margin: 2rem 1rem;

    }



    .office-info {

        margin: 1rem;

    }

}

/* ==========================================================================

   15. Service Section Styles

   This section should be added after the main feature cards section

   ========================================================================== */



/* Service Cards */

.service-card {

    transition:

        transform 0.3s ease,

        box-shadow 0.3s ease;

    border-radius: 1rem;

    overflow: hidden;

    background: white;

    height: 100%;

    position: relative;

    padding: 2rem;

    border: 2px solid transparent;

}



.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);

    border-color: var(--texas-red);

}



/* Service Icons */

.service-icon {

    width: 80px;

    height: 80px;

    background: rgba(var(--texas-blue-rgb), 0.1);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto;

    transition: all 0.3s ease;

}



.service-card:hover .service-icon {

    background: var(--texas-blue);

    transform: scale(1.1);

}



.service-card:hover .service-icon i {

    color: white !important;

}



/* Popular Badge */

.popular-badge {

    position: absolute;

    top: -15px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 1;

    background: var(--texas-red);

    color: white;

    padding: 0.5rem 1.5rem;

    border-radius: 20px;

    font-weight: 500;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}



/* Pricing Display */

.pricing {

    position: relative;

    padding: 1rem 0;

    text-align: center;

}



.pricing .text-muted {

    font-size: 0.875rem;

}



.pricing .h2 {

    color: var(--texas-blue);

    font-weight: 700;

    margin: 0.5rem 0;

}



/* Feature Lists */

.list-unstyled li {

    display: flex;

    align-items: flex-start;

    margin-bottom: 1rem;

    color: var(--text-dark);

}



.list-unstyled li i {

    margin-top: 0.25rem;

    min-width: 1.25rem;

    color: var(--texas-blue);

}



/* Call to Action Buttons */

.service-card .btn {

    padding: 0.75rem 1.5rem;

    font-weight: 600;

    transition: all 0.3s ease;

    width: 100%;

    margin-top: 1.5rem;

}



.service-card .btn-outline-primary {

    border-width: 2px;

}



.service-card .btn-outline-primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.15);

}



.service-card .btn-primary {

    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.15);

}



.service-card .btn-primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(0, 40, 104, 0.2);

}



/* Support Text */

.text-center.mt-5 {

    position: relative;

    padding-top: 2rem;

}



.text-center.mt-5::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 60px;

    height: 2px;

    background: var(--texas-blue);

    opacity: 0.2;

}



/* Custom Link Button */

.btn-link.text-primary {

    text-decoration: none;

    position: relative;

    font-weight: 600;

}



.btn-link.text-primary::after {

    content: "";

    position: absolute;

    bottom: -2px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--texas-blue);

    transition: width 0.3s ease;

}



.btn-link.text-primary:hover::after {

    width: 100%;

}



.btn-link.text-primary i {

    transition: transform 0.3s ease;

}



.btn-link.text-primary:hover i {

    transform: translateX(5px);

}



/* Responsive Adjustments */

@media (max-width: 991.98px) {

    .service-card {

        margin-bottom: 2rem;

    }

}



@media (max-width: 767.98px) {

    .pricing {

        padding: 0.5rem 0;

    }



    .service-icon {

        width: 60px;

        height: 60px;

    }



    .service-icon i {

        font-size: 1.5rem;

    }

}



/* Animation Keyframes */

@keyframes float {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0);

    }

}



/* Mobile-Specific Styles */

@media (max-width: 768px) {

    /* Active/Selected Button State */

    .plan-selector .btn.btn-danger,

    .plan-selector .btn.active {

        background: var(--texas-blue);

        color: white;

        border-color: var(--texas-blue);

        position: relative;

        box-shadow: 0 4px 12px rgba(0, 40, 104, 0.2);

        transform: translateY(-2px);

    }



    .plan-selector .btn {

        width: 100%;

        margin: 0.25rem 0;

    }

}

@media (max-width: 768px) {

    /* Pricing Section Mobile Styles */

    .pricing-section {

        padding: 2rem 1rem;

    }



    /* Plan Selector Mobile */

    .plan-selector {

        padding: 1rem;

        margin: 0 1rem 2rem 1rem;

    }



    .plan-selector .btn-group {

        flex-direction: column;

        width: 100%;

    }



    .plan-selector button {

        width: 100%;

        margin: 0.25rem 0;

        padding: 1rem;

    }



    /* Pricing Cards Mobile */

    .pricing-card {

        margin: 0 1rem 2rem 1rem;

        height: auto;

    }



    .pricing-header {

        padding: 1.5rem;

    }



    .pricing-price {

        font-size: 2.5rem;

    }



    .pricing-body {

        padding: 1.5rem;

    }



    /* Feature List Mobile */

    .feature-list li {

        padding: 0.75rem 0;

        font-size: 0.95rem;

    }



    /* Grid System Mobile */

    .col-lg-4 {

        flex: 0 0 100%;

        max-width: 100%;

        padding: 0;

    }



    .row.g-4 {

        margin: 0;

    }



    /* Compare Table Mobile */

    .compare-table {

        margin: 2rem 1rem;

        font-size: 0.9rem;

    }



    .compare-table th,

    .compare-table td {

        padding: 0.75rem;

    }



    /* Text Adjustments for Mobile */

    h2.text-center {

        font-size: 1.75rem;

        margin-bottom: 1.5rem;

        padding: 0 1rem;

    }



    .billing-text {

        font-size: 0.85rem;

    }



    /* Button Adjustments */

    .pricing-body .btn {

        padding: 0.75rem 1rem;

        font-size: 0.95rem;

    }

}



/* Extra Small Devices */

@media (max-width: 480px) {

    .pricing-price {

        font-size: 2rem;

    }



    .feature-list li {

        font-size: 0.9rem;

    }



    .pricing-header {

        padding: 1.25rem;

    }



    .pricing-body {

        padding: 1.25rem;

    }



    .plan-selector button {

        font-size: 0.9rem;

    }



    /* Ensure table is scrollable on very small devices */

    .compare-table {

        overflow-x: auto;

        display: block;

    }

}

/* Add checkmark indicator to selected term */

.plan-selector .btn.btn-danger::after,

.plan-selector .btn.active::after {

    content: "✓";

    position: absolute;

    right: 1rem;

    top: 50%;

    transform: translateY(-50%);

    font-size: 1.2rem;

    color: var(--texas-sand);

}



/* Inactive Button States */

.plan-selector .btn {

    background: white;

    color: var(--texas-blue);

    border: 2px solid var(--texas-blue);

    transition: all 0.3s ease;

    position: relative;

}



/* Hover state for inactive buttons */

.plan-selector .btn:hover:not(.btn-danger):not(.active) {

    background: rgba(0, 40, 104, 0.05);

    transform: translateY(-1px);

}



/* Style for save text on active button */

.plan-selector .btn.btn-danger small,

.plan-selector .btn.active small {

    color: rgba(255, 255, 255, 0.9);

}



/* Button Group Container */

.plan-selector .btn-group {

    display: flex;

    flex-direction: column;

    gap: 1rem;

    width: 100%;

}



/* Individual Term Buttons */

.plan-selector .btn {

    width: 100%;

    margin: 0; /* Remove default margins */

    padding: 1rem;

    border: 2px solid var(--texas-blue);

    border-radius: 10px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}



/* Save Text */

.plan-selector .btn small {

    display: block;

    width: 100%;

    text-align: center;

    margin-top: 0.25rem;

}



/* Active Button State */

.plan-selector .btn.active {

    background: var(--texas-blue);

    color: white;

    border-color: var(--texas-blue);

}
