@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');
        
:root {
    --primary: #2563eb;      /* Main blue */
    --primary-dark: #1d4ed8; /* Darker blue */
    --primary-light: #3b82f6; /* Lighter blue */
    --secondary: #ff9800;    /* Main amber/orange */
    --secondary-dark: #ed8c02; /* Darker amber */
    --secondary-light: #ffb74d; /* Lighter amber */
    --light: #1e293b;        /* Dark blue-gray for "light" sections */
    --dark: #0f172a;         /* Darker blue for dark sections */
    --accent: #10b981;       /* Green accent */
    --text-light: #f8fafc;   /* Light text */
    --text-muted: #ccd1da;   /* Muted text */
    --card-bg: #1e293b;      /* Card background */
    --card-darker: #0f172a;  /* Darker card background */
    --section-bg: #0f172a;   /* Section background */
    --border-color: #334155; /* Border color */
    --border-light: #475569; /* Lighter border color */
    --overlay-dark: rgba(15, 23, 42, 0.1); /* Dark overlay */
    --overlay-light: rgba(37, 99, 235, 0.2); /* Light overlay */
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background-color: var(--dark);
    color: var(--text-light);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .nav-link, .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Decorative Elements */
.shape-top {
    position: fixed;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.shape-bottom {
    position: fixed;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, rgba(255, 152, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.dot-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.3;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: var(--dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-light) !important;
}

.navbar-brand span {
    color: var(--secondary);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    padding: 0.75rem 1rem;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown menu styles */
.dropdown-menu-dark {
    background-color: var(--card-darker);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.dropdown-item {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
}

/* Mobile navbar styles */
@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1rem;
    }
    .navbar-collapse {
        background: rgba(18, 24, 38, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-collapse .navbar-nav {
        padding: 0.5rem 0;
    }
    
    .navbar-collapse .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 5px;
    }
    
    .navbar-collapse .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-collapse .btn {
        margin: 0.5rem 1rem !important;
        width: calc(100% - 2rem);
        text-align: center;
    }
}

.nav-link {
    margin: 0 0rem;
    padding: 0.5rem 0.7rem !important;
    transition: all 0.3s ease;
    color: var(--text-light) !important;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: all 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.btn-secondary {
    background: var(--secondary);
    border: none;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
    background-color: var(--secondary-dark);
}

.btn-secondary.active {
    background-color: var(--secondary-dark);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
}

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--card-darker) 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 110, 253, 0.15);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
}

.page-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-left: 8px;
}

.badge-pulse {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    position: relative;
}

.badge-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.8);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-muted);
    max-width: 90%;
}

/* Quote Image Styles */
.quote-image-container {
    position: relative;
    max-width: 500px;
    z-index: 2;
}

.quote-image-container img {
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.quote-image-container:hover img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 5px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.quote-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quote-badge i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.quote-badge span {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--dark);
    background-image: linear-gradient(135deg, var(--card-bg) 0%, var(--dark) 100%);
}

.section-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 3rem;
}

/* Quote Form Styles */
.quote-form-container {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.quote-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
    opacity: 0.05;
    z-index: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.form-divider {
    margin: 2rem 0;
    border-color: var(--border-color);
    opacity: 0.2;
}

.form-section-title {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.custom-input {
    background-color: var(--card-darker);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    height: 58px;
    border-radius: 10px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: var(--card-darker);
    border-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.form-floating > .custom-input {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: var(--text-muted);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: 0.8;
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
}

.form-floating .form-select {
    background-position: right 0.75rem center;
}

textarea.custom-input {
    min-height: 100px;
}

.form-check-input {
    border-color: var(--border-light);
    background-color: transparent;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 5;
    position: relative;
}

.form-check {
    position: relative;
    z-index: 10;
    margin-left: 5px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.form-check-label a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.form-check-label a:hover {
    color: var(--secondary-light);
    text-decoration: underline;
}

.btn-cta {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    color: white;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
}

.btn-cta:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(13, 110, 253, 0.3);
}

/* Benefit Card Styles */
.benefit-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 20px;
    margin-bottom: 1.5rem;
    position: relative;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.benefit-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* FAQ Accordion Styles */
.faq-accordion {
    margin-top: 3rem;
}

.accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 1rem;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: linear-gradient(90deg, var(--card-bg), var(--card-darker));
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border-radius: 10px !important;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--text-light);
    background: linear-gradient(90deg, var(--primary-dark), var(--card-darker));
    box-shadow: none;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f8fafc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f8fafc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-collapse {
    border: 1px solid var(--border-color);
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--card-bg);
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer Styles */
footer {
    background-color: var(--dark);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    z-index: 0;
    pointer-events: none; /* Ensure background doesn't block clicks */
}

.footer-heading {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

footer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links, .social-links-form {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.social-connect-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-connect-wrapper h5 {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.social-links-form {
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Social icon specific colors on hover */
.social-icon:hover .fa-facebook-f {
    color: #ffffff;
}

.social-icon:hover .fa-tiktok {
    color: #ffffff;
}

.social-icon:hover .fa-linkedin-in {
    color: #ffffff;
}

.social-icon:hover .fa-instagram {
    color: #ffffff;
}

.footer-links-container {
    position: relative;
    z-index: 2;
}

.footer-link {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 1199.98px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 160px 0 80px;
    }
}

@media (max-width: 991.98px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 140px 0 60px;
    }
    
    .quote-image-container {
        margin-top: 3rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .quote-form-container {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .page-header {
        padding: 120px 0 50px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .quote-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .page-badge {
        padding: 5px 12px;
    }
    
    .page-badge span {
        font-size: 0.7rem;
    }
    
    .badge-pulse {
        width: 8px;
        height: 8px;
    }
    
    .page-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .quote-badge {
        width: 60px;
        height: 60px;
        bottom: -10px;
        right: -10px;
    }
    
    .quote-badge i {
        font-size: 1.25rem;
    }
    
    .quote-badge span {
        font-size: 0.5rem;
    }
} 