/* Policy on Track - Grey and Light Purple Theme */

:root {
    --primary-purple: #9d72ff; /* Light Purple */
    --primary-purple-dark: #7c4dff;
    --bg-grey-light: #f4f4f7; /* Soft Grey */
    --bg-grey-dark: #2d2d35; /* Dark Grey */
    --bg-white: #ffffff;
    --text-dark: #1f1f23;
    --text-muted: #6b6b75;
    --text-white: #ffffff;
    --border-color: #e1e1e6;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.text-purple { color: var(--primary-purple); }
.bg-purple { background-color: var(--primary-purple); }
.bg-grey { background-color: var(--bg-grey-light); }
.bg-dark-grey { background-color: var(--bg-grey-dark); }

/* Navbar */
.navbar {
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--text-dark) !important;
}

.navbar-brand span {
    color: var(--primary-purple);
}

.nav-link {
    font-weight: 700;
    color: var(--text-dark) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin: 0 12px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-purple) !important;
}

.btn-quote {
    background: var(--primary-purple);
    color: white;
    font-weight: 800;
    border-radius: 50px;
    padding: 12px 28px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(157, 114, 255, 0.3);
}

.btn-quote:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 114, 255, 0.4);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f4f4f7 0%, #ffffff 100%);
}

.hero-tag {
    color: var(--primary-purple);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--bg-grey-dark);
}

/* Section Styling */
.section-padding {
    padding: 120px 0;
}

.section-subtitle {
    color: var(--primary-purple);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--bg-grey-dark);
}

/* Cards */
.custom-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 45px;
    border-radius: 24px;
    height: 100%;
    transition: var(--transition);
}

.custom-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-grey-light);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.custom-card:hover .card-icon {
    background: var(--primary-purple);
    color: white;
}

/* Process Steps */
.step-item {
    position: relative;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-white);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--bg-grey-light);
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--border-color) !important;
    margin-bottom: 15px;
    border-radius: 16px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 700;
    padding: 1.5rem;
    box-shadow: none !important;
    background: var(--bg-white);
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-grey-light) !important;
    color: var(--primary-purple) !important;
}

/* Footer */
.footer {
    background: var(--bg-grey-dark);
    color: #a0a0ab;
    padding: 100px 0 50px;
}

.footer h3, .footer h5 {
    color: white;
}

.footer-link {
    color: #a0a0ab;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-purple);
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
}

/* Fix horizontal scrollbar */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.row {
    margin-right: 0;
    margin-left: 0;
}
