/* ===== CONTAINER OVERRIDES ===== */
@media (min-width: 1200px) {
    .container {
        max-width: 80rem !important; /* 1280px */
    }
}

/* ===== FONTS & BASE STYLES ===== */
:root {
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Lexend', sans-serif;
    --primary-color: #f59e0b;
    --primary-dark: #d97706;
    --secondary-color: #374151;
    --dark-bg: #0f172a;
    --dark-secondary: #1e293b;
    --glass-bg: rgba(55, 65, 81, 0.4);
    --glass-border: rgba(156, 163, 175, 0.2);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
	background-color: #0f172a;
    /* background: linear-gradient(to bottom right, #475569, #334155, #0f172a); */
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

/* ===== GLASS EFFECTS ===== */
.glass-panel {
    background: rgba(55, 65, 81, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.5);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-nav {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(156, 163, 175, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container-fluid {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.brand-logo {
    height: 48px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.btn-phone {
	border-radius: calc(infinity * 1px) !important;
    background: var(--primary-color) !important;
    border: none !important;
    color: var(--dark-bg) !important;
    font-weight: 700 !important;
    padding: 0.75rem 1.5rem !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.btn-phone:hover,
.btn-phone:focus {
    background: #fbbf24 !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-phone:active {
    background: var(--primary-color) !important;
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.phone-number {
    font-size: 1.1rem;
    margin-left: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--primary-color) !important;
    border: none !important;
    color: var(--dark-bg) !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    gap: 0.5rem
}

.btn-primary:hover,
.btn-primary:focus {
    background: #fbbf24 !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-primary:active {
    background: var(--primary-color) !important;
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: var(--secondary-color) !important;
    border: 1px solid rgba(156, 163, 175, 0.3) !important;
    color: var(--text-light) !important;
    font-weight: 600 !important;
    padding: 0.75rem 2rem !important;
    border-radius: 0.75rem !important;
    transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #4b5563 !important;
    border-color: var(--primary-color) !important;
    color: var(--text-light) !important;
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary:active {
    background: var(--secondary-color) !important;
    transform: translateY(0) scale(1);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

.trust-badge i {
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem; /* text-xl */
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: stretch;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    line-height: 1.2;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.hero-buttons .btn-primary {
    border: 1px solid transparent !important;
}

.trust-points {
    margin-top: 2rem;
}

.trust-points i {
    color: var(--primary-color);
}

.hero-form-container {
    position: relative;
	z-index: 111;
}

.hero-form-container::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.hero-form-container::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

/* Decorative frustrated image - matching React version */
.hero-decorative-image {
    position: absolute;
    top: -5rem;
    left: -5rem;
    width: 16rem;
    height: 16rem;
    background-image: url('../img/frustrated-1.webp');
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    opacity: 0.5;
    transform: rotate(-6deg);
    z-index: 0;
    border: 4px solid rgba(30, 41, 59, 0.8);
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.hero-decorative-image:hover {
    filter: grayscale(0%);
    opacity: 0.7;
}

/* ===== FORM STYLES ===== */
.form-control {
    background: #0f172a !important;
    border: 1px solid rgba(71, 85, 105, 1) !important;
    color: var(--text-light) !important;
    border-radius: 0.75rem !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
	height: auto !important;
}

/* Form input with icon wrapper */
.input-with-icon {
    position: relative;
}

.input-with-icon .form-control {
    padding-left: 2.75rem !important;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    z-index: 10;
}

.input-with-icon .form-control:focus ~ .input-icon {
    color: var(--primary-color);
}

select.form-control {
    padding-right: 2.5rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 12px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.input-with-icon select.form-control {
    padding-left: 2.75rem !important;
}

.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25) !important;
    color: var(--text-light) !important;
}

.form-control::placeholder {
    color: rgba(148, 163, 184, 0.5) !important;
    opacity: 1;
}

.form-control::-webkit-input-placeholder {
    color: rgba(148, 163, 184, 0.5) !important;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: rgba(148, 163, 184, 0.5) !important;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: rgba(148, 163, 184, 0.5) !important;
    opacity: 1;
}

.form-control:-moz-placeholder {
    color: rgba(148, 163, 184, 0.5) !important;
    opacity: 1;
}

label {
    color: #94a3b8 !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.text-slate-400 {
    color: #94a3b8 !important;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: rgba(15, 23, 42, 0.3);
    border-top: 1px solid rgba(156, 163, 175, 0.2);
    border-bottom: 1px solid rgba(156, 163, 175, 0.2);
}

.trust-bar i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ===== SECTIONS ===== */
.why-choose-us {
    background: transparent;
}

.section-title {
    font-size: 2.5rem; /* text-4xl */
    font-weight: 700;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.125rem; /* text-lg */
    color: #b0bfd0;
    line-height: 1.7;
}

.feature-list .feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary-color);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    transition: all 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 2rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.service-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.service-icon-box {
    width: 4rem;
    height: 4rem;
    background: rgba(30, 41, 59, 1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-box {
    transform: scale(1.1);
}

.service-icon-box i {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    color: rgba(203, 213, 225, 1);
}

.service-features li i {
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== SOFTWARE PAGE ===== */
.software-icon-large {
    width: 6rem; /* 96px - matches w-24 */
    height: 6rem;
    background: rgba(30, 41, 59, 1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.software-icon-large i {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.feature-badge {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.5);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    color: rgba(203, 213, 225, 1);
    display: flex;
    align-items: center;
    min-width: fit-content;
}

.badge-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

/* Premium Feature Badge */
.badge-secondary {
    background: rgba(30, 41, 59, 1) !important;
    color: #94a3b8 !important;
    border: 1px solid rgba(71, 85, 105, 1) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    border-radius: 0.5rem !important;
}

/* ===== AGENT IMAGE ===== */
.agent-image-container {
    position: relative;
}

.agent-quote {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

/* ===== FRUSTRATIONS SECTION ===== */
.frustrations-section {
    background: rgba(15, 23, 42, 0.3);
}

.frustration-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.frustration-item h4 {
    color: var(--text-light);
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f59e0b  50%, #d97706 100%);
    position: relative;
}

.cta-bg::after {
    display: none;
}

.cta-image-slot {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 5;
    min-height: 320px;
    border-radius: 1rem;
    background-color: rgba(71, 85, 105, 0.45);
    background-image:
        linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.38)),
        url('../img/agent-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cta-image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(15, 23, 42, 0.8);
    font-weight: 500;
    max-width: 600px;
}

.cta-phone-btn {
    background: var(--dark-bg) !important;
    color: var(--text-light) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    padding: 1rem 2.5rem !important;
    border-radius: 1rem !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-phone-btn:hover,
.cta-phone-btn:focus {
    background: #1e293b !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.cta-phone-btn:active {
    background: var(--dark-bg) !important;
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-hours {
    color: rgba(15, 23, 42, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    padding-top: 120px;
    background: transparent;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    background: transparent;
    position: relative;
}

.contact-info-item {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(245, 158, 11, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-right: 1rem;
}

.contact-info-item:hover .contact-icon {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.contact-info-item:hover .contact-icon i {
    color: var(--dark-bg);
}

.promise-panel {
    background: rgba(245, 158, 11, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 1.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.promise-list li {
    color: var(--text-muted);
}

.promise-list i {
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
footer {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(156, 163, 175, 0.2) !important;
    box-shadow: 
        0 -4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-link {
    color: var(--text-muted) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    color: var(--text-muted) !important;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITIES ===== */
.min-vh-100 {
    min-height: 100vh;
}

.text-warning {
    color: var(--primary-color) !important;
}

.bg-dark {
    background-color: rgba(15, 23, 42, 0.3) !important;
}

.border-secondary {
    border-color: rgba(156, 163, 175, 0.2) !important;
}

.bg-none {
  background: none !important;
}

/* ===== BRAND NAME NO-WRAP ===== */
.brand-name {
    white-space: nowrap;
}



