/* ========================================
   Terrain360 Sentinel - Unified Stylesheet
   All front-end styles in one place
   ======================================== */

/* ========================================
   1. RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: colfax-web, sans-serif;
    font-weight: 500;
    font-style: normal;
    background-image: url(https://d3kfjvhh435dey.cloudfront.net/_laravel/images/uploads/2023/12/pattern.png);
    background-repeat: no-repeat;
    background-size: 80%;
    background-attachment: fixed;
    background-position: right;
    background-color: #000000;
	min-height: 100vh;
	padding-top: 80px; /* Adjust based on your navbar height */
}
h1 {

    font-weight: 700;
    font-size: 50px;
	line-height: 44px!important;
	color: #ffffff;
    text-transform: uppercase;
}

.bg-primary {
 
    background-color:#3073AC!important;
}
.text-primary {
   color:#3073AC!important;
}
p {color: #ffffff;}
.btn {
    background-color: #fd7763;font-weight: 700;
    border: 1px solid #fd7763;
    border-radius: 15px;
    font-family: colfax-web, sans-serif;

    text-transform: uppercase;
    color: #ffffff;
    font-size: 12px;
    padding: .5em 1em;
    transition: all 0.5s 
ease;
}
strong {font-weight: 700;}
.btn:hover {
    background-color: #000000;
    border: 1px solid #fd7763;
	 color: #ffffff;
}

/* ========================================
   2. NAVIGATION / HEADER
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

/* Navbar when scrolled - clean transparent blur */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* More blur when scrolled further */
.navbar.scrolled-more {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar-dark {
    background: transparent;
}

.navbar.navbar-products {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
}

body.home-page .navbar {
    background: transparent !important;
}

body.home-page .navbar.scrolled {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.home-page .navbar.scrolled-more {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
/* ========================================
   3. FOOTER
   ======================================== */

.footer {
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    margin-top: 0;
    padding: 0;
}

.footer h5 {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fd7763;
    padding-left: 5px;
}

.footer-contact {
    margin: 0;
    padding: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fd7763;
}

.footer-contact .text-primary {
    color: #fd7763 !important;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #fd7763;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #fd7763;
    border-color: #fd7763;
    color: white;
    transform: translateY(-3px);
}

.hover-primary:hover {
    color: #fd7763 !important;
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}
/* ========================================
   4. COMMON COMPONENTS
   ======================================== */

/* Cards */
.card,
.status-card,
.product-card,
.device-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-card {
    padding: 3rem;
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-card {
    padding: 1.5rem;
}

/* Buttons */
.btn-checkout {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    width: 100%;
    margin-top: 2rem;
    transition: transform 0.2s;
}

.btn-checkout:hover {
    transform: scale(1.05);
    color: white;
}

/* Status Indicators */
.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffc107;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: #28a745;
}

.status-dot.offline {
    background: #dc3545;
    animation: none;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.status-online {
    background: #d4edda;
    color: #155724;
}

.status-offline {
    background: #f8d7da;
    color: #721c24;
}

/* Utility Classes */
.hidden {
    display: none;
}

/* ========================================
   5. PAGE-SPECIFIC STYLES
   ======================================== */

/* --- HOME PAGE --- */

/* Hero Background Image - Only on Homepage */
body.home-page {
    /* Keep the pattern from base body styles */
    /* Add hero image on top */
    background-image: 
        url(https://sentinel.terrain360.com/img/background.jpg),
        url(https://d3kfjvhh435dey.cloudfront.net/_laravel/images/uploads/2023/12/pattern.png);
    background-repeat: no-repeat, no-repeat;
    background-size: auto, 80%;
    background-attachment: scroll, fixed;
    background-position: center top, right;
    background-color: #000000;
    position: relative;
}

body.home-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,1) 100%);
    z-index: 0;
    pointer-events: none;
}


/* Hero section sits on the background */
body.home-page .hero-section {
    position: relative;
    z-index: 1;
}

/* Feature cards section has solid background */
body.home-page main > .container.py-5 {
    position: relative;
    z-index: 1;
    background: #f5f7fa;
    margin-top: -50px;
    padding-top: 3rem !important;
    border-radius: 20px 20px 0 0;
}

header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.auth-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.auth-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: #667eea;
}

.auth-form button {
    width: 100%;
    padding: 12px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.auth-form button:hover {
    background: #5a6fd8;
}

.auth-form p {
    text-align: center;
    margin-top: 20px;
}

.auth-form a {
    color: #667eea;
    text-decoration: none;
}

.auth-form a:hover {
    text-decoration: underline;
}
/* --- PRODUCTS PAGE --- */
body.products-page {
    font-family: 'colfax-web', sans-serif;
    background-image: url(https://d3kfjvhh435dey.cloudfront.net/_laravel/images/uploads/2023/12/pattern.png);
    background-repeat: no-repeat;
    background-size: 80%;
    background-attachment: fixed;
    background-position: right;
    background-color: #000000;
}

.price-badge {
    font-size: 3rem;
    font-weight: 700;
    color: #fd7763;
    margin: 1rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.3rem;
}
/* --- DASHBOARD PAGE --- */
body.dashboard-page {
    /* Dark theme matching main site */
    background-image: url(https://d3kfjvhh435dey.cloudfront.net/_laravel/images/uploads/2023/12/pattern.png);
    background-repeat: no-repeat;
    background-size: 80%;
    background-attachment: fixed;
    background-position: right;
    background-color: #000000;
}

/* Device cards for dashboard */
.device-card-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.device-card-dark:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(253, 119, 99, 0.3);
    transform: translateX(5px);
}

/* Dashboard map styling */
body.dashboard-page #map {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Text utilities for dark theme */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Dark theme form inputs */
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(253, 119, 99, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(253, 119, 99, 0.25) !important;
    color: white !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.form-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Dark theme DataTables */
table.dataTable,
.table {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border-collapse: separate !important;
    border-spacing: 0;
}

table.dataTable thead th,
.table thead th {
    background: rgba(255, 255, 255, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

table.dataTable tbody td,
.table tbody td {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

table.dataTable tbody tr:hover,
.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(255, 255, 255, 0.02) !important;
    --bs-table-accent-bg: transparent !important;
}

.table-striped > tbody > tr:nth-of-type(even) > * {
    background-color: transparent !important;
    --bs-table-accent-bg: transparent !important;
}

/* DataTables controls */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    color: rgba(255, 255, 255, 0.7) !important;
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-radius: 8px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: rgba(255, 255, 255, 0.7) !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: rgba(253, 119, 99, 0.3) !important;
    border-color: rgba(253, 119, 99, 0.5) !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* Dark theme accordion */
.accordion-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    border: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(253, 119, 99, 0.1) !important;
    color: white !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.accordion-body pre,
.accordion-body code {
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px;
    border-radius: 5px;
}

/* Dark theme modals */
.modal-content {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.modal-header .modal-title {
    color: white !important;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    color: rgba(255, 255, 255, 0.8) !important;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.6) !important;
}

.modal-footer {
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

/* Dark theme alerts */
.alert-warning {
    background: rgba(255, 193, 7, 0.1) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
    color: #ffc107 !important;
}

.alert-success {
    background: rgba(25, 135, 84, 0.1) !important;
    border: 1px solid rgba(25, 135, 84, 0.3) !important;
    color: #20c997 !important;
}

.alert-info {
    background: rgba(48, 115, 172, 0.1) !important;
    border: 1px solid rgba(48, 115, 172, 0.3) !important;
    color: #0dcaf0 !important;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    transition: all 0.3s;
}

.step.active .step-circle {
    background: #667eea;
    transform: scale(1.1);
}

.step.completed .step-circle {
    background: #28a745;
}

.step.completed .step-circle::before {
    content: '✓';
    font-size: 24px;
}

#map {
    height: 400px;
    border-radius: 10px;
}

/* --- DEVICE DETAILS PAGE --- */
body.device-page {
    font-family: 'colfax-web', sans-serif;
    background: #f5f7fa;
}

.device-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.video-container {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

#videoPlayer {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* ========================================
   6. LEGACY SUPPORT (for compatibility)
   ======================================== */
.dashboard-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.dashboard-section h2 {
    margin-bottom: 30px;
    color: #333;
}

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.logout-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.logout-btn:hover {
    background: #c82333;
}

.pi-status {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

.pi-status h3 {
    margin-bottom: 15px;
    color: #333;
}

.status-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#checkPiStatus {
    background: #17a2b8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

#checkPiStatus:hover {
    background: #138496;
}

.billing-section {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

.billing-section h3 {
    margin-bottom: 15px;
    color: #333;
}

#manageBilling {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

#manageBilling:hover {
    background: #218838;
}

/* ========================================
   LANDING PAGE SPECIFIC STYLES
   Add these to your styles.css file
   ======================================== */

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 80px;
}

.hero-section .badge {
    border-radius: 50px;
    font-weight: 600;
}

/* Hero buttons - prevent layout shift on hover */
.hero-buttons {
    position: relative;
    padding: 4px 0; /* Add small padding to allow space for button movement */
}

.hero-buttons .btn {
    transition: all 0.3s ease;
    position: relative;
    isolation: isolate;
}

.hero-visual .placeholder-visual {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Trusted By Section */
.trusted-by-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
}

/* Benefits Section */
.benefit-card {
    position: relative;
    overflow: hidden;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 119, 99, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fd7763;
}

/* How It Works Section */
.step-card {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fd7763 0%, #ff9a76 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
}

/* Use Cases Section */
.use-case-card {
    transition: all 0.3s ease;
}

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

.use-case-icon {
    width: 80px;
    height: 80px;
    background: rgba(253, 119, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.use-case-icon i {
    color: #fd7763;
}

/* Pricing Section */
.pricing-card {
    position: relative;
    height: 100%;
}

.pricing-card.featured-plan {
    background: rgba(253, 119, 99, 0.1);
    border: 2px solid rgba(253, 119, 99, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured-plan:hover {
    transform: scale(1.08) translateY(-5px);
}

.plan-price {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card ul li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
}

.monthly-fee {
    background: rgba(0, 0, 0, 0.2) !important;
}
.pricing-section {
    background-image: url(https://sentinel.terrain360.com/img/background2.jpg);
    background-repeat: no-repeat;
   background-size: 100% auto; /* Full width, natural height */
    background-attachment: scroll;
    background-position: center top;
    background-color: #000000;
    position: relative;
}

/* Add gradient overlay like hero section */
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Make sure pricing content is above the overlay */
.pricing-section > .container {
    position: relative;
    z-index: 1;
}
/* Enterprise Section */
.pricing-section .glass-card[style*="rgba(253, 119, 99, 0.08)"] {
    transition: all 0.3s ease;
}

.pricing-section .glass-card[style*="rgba(253, 119, 99, 0.08)"]:hover {
    background: rgba(253, 119, 99, 0.12) !important;
    border-color: rgba(253, 119, 99, 0.5) !important;
    transform: translateY(-3px);
}

/* Professional Installation Callout */
.pricing-section .glass-card.p-4:not(.pricing-card) {
    background: rgba(253, 119, 99, 0.05);
    border: 1px solid rgba(253, 119, 99, 0.2);
}

.pricing-section .glass-card.p-4:not(.pricing-card):hover {
    transform: none;
}

/* Testimonials Section */
.testimonial-card {
    height: 100%;
}

.stars i {
    font-size: 1rem;
}

/* FAQ Section */
.accordion-item {
    background: transparent !important;
    border: none !important;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 1.25rem !important;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: rgba(253, 119, 99, 0.1) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
}

.accordion-collapse {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 0 10px 10px;
}

.accordion-body {
    padding: 1.25rem;
}

/* Final CTA Section */
.final-cta-section {
    margin-bottom: 3rem;
}

.final-cta-section .glass-card {
    background: rgba(253, 119, 99, 0.05);
    border: 2px solid rgba(253, 119, 99, 0.2);
}

/* Backdrop Blur Utility */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Button Overrides for Landing Page */
.btn-primary {
    background: linear-gradient(135deg, #fd7763 0%, #ff9a76 100%);
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    /* Prevent layout shift by keeping the button in its own rendering context */
    isolation: isolate;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff9a76 0%, #fd7763 100%);
 
    box-shadow: 0 10px 25px rgba(253, 119, 99, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    /* Prevent layout shift */
    isolation: isolate;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
   
}


/* Mounting Options Cards */
.mounting-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mounting-card:hover {
    transform: translateY(-5px);
    border-color: rgba(253, 119, 99, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.mounting-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.mounting-icon {
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.mounting-icon i {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mounting-image {
        height: 150px;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured-plan {
        transform: scale(1);
    }
    
    .pricing-card.featured-plan:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured-plan {
        transform: scale(1);
    }
    
    .pricing-card.featured-plan:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}
/* ========================================
   7. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
	 .footer h5 {
        margin-top: 2rem;
    }
    
    .footer h5:first-child {
        margin-top: 0;
    }
    
    .footer .col-lg-4:first-child h5 {
        margin-top: 0;
    }
	   .hero-section {
        padding-top: 100px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
    .container {
        padding: 10px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .auth-section,
    .dashboard-section {
        padding: 20px;
    }

    .product-card {
        padding: 2rem;
        margin: 1rem;
    }

    .price-badge {
        font-size: 2rem;
    }

    .progress-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .progress-steps::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .navbar .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
}