/*
 * OctaTrip B2B - Custom Styles
 * Matching logo colors: Magenta (#BA4790), Blue (#3392D0), Orange (#F7941D)
 */

/* ========================================
   Header & Navigation
   ======================================== */

.page-header,
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background: #ffffff !important;
    backdrop-filter: blur(10px);
    padding: 2.5rem 4rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

.navbar-brand {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar .brand-logo {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-nav {
    gap: 1.5rem;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    color: #2d3748 !important;
    font-weight: 600;
    padding: 1rem 0 !important;
    transition: all 0.3s ease;
    font-size: 1.8rem;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #BA4790 0%, #3392D0 100%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #3392D0 !important;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: #BA4790 !important;
    font-weight: 700;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
    background: #BA4790;
}

.btn-login-header {
    background: #3392D0;
    color: #ffffff !important;
    border-radius: 25px;
    padding: 1.2rem 4rem;
    margin-left: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
    box-shadow: 0 3px 10px rgba(51, 146, 208, 0.25);
    border: none;
}

.btn-login-header:hover {
    background: #2680C0;
    box-shadow: 0 5px 15px rgba(51, 146, 208, 0.35);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.btn-login-header:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(51, 146, 208, 0.3);
}

.footer-social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link svg {
    fill: #ffffff;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #F7941D;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
}

.footer-social-link:hover svg {
    transform: scale(1.2);
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/home-bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #F7941D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-illustration {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   Buttons
   ======================================== */

.btn-primary {
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(186, 71, 144, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(186, 71, 144, 0.4);
    background: linear-gradient(135deg, #a03d7a 0%, #2a7db8 100%);
}

.btn-outline-primary {
    border: 2px solid #BA4790;
    color: #BA4790;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #BA4790;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(186, 71, 144, 0.3);
}

.btn-outline-light {
    border: 2px solid #BA4790;
    color: #BA4790;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    background: transparent;
}

.btn-outline-light:hover {
    background: #BA4790;
    color: #ffffff;
    border-color: #BA4790;
    transform: translateY(-3px);
}

/* Override for pages with light hero background */
.api-header .btn-outline-light,
.agency-header .btn-outline-light,
.about-header .btn-outline-light {
    border: 2px solid #BA4790;
    color: #BA4790;
    background: rgba(255, 255, 255, 0.9);
}

.api-header .btn-outline-light:hover,
.agency-header .btn-outline-light:hover,
.about-header .btn-outline-light:hover {
    background: #BA4790;
    color: #ffffff;
    border-color: #BA4790;
}

.btn-light {
    background: #ffffff;
    color: #BA4790;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    border: none;
}

.btn-light:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.6rem;
    font-weight: 700;
    color: #3B3E43;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #636F7B;
}

/* ========================================
   Feature Cards
   ======================================== */

.feature-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(186, 71, 144, 0.2);
}

.feature-icon {
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #3B3E43;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.5rem;
    color: #636F7B;
    line-height: 1.6;
}

/* ========================================
   Page Header Section
   ======================================== */

.page-header-section {
    background: linear-gradient(135deg, #E8F4F8 0%, #F5F8FF 50%, #E8F4F8 100%);
    color: #3B3E43;
    padding: 50px 0;
    text-align: center;
}

.page-header-section .page-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #3B3E43;
}

.page-header-section .page-subtitle {
    font-size: 1.8rem;
    color: #636F7B;
}

.api-header {
    padding: 50px 0;
    text-align: left;
    background: linear-gradient(135deg, #E8F4F8 0%, #F5F8FF 50%, #E8F4F8 100%);
}

.agency-header {
    padding: 50px 0;
    text-align: left;
    background: linear-gradient(135deg, #E8F4F8 0%, #F5F8FF 50%, #E8F4F8 100%);
}

.api-header .page-title,
.api-header .page-subtitle,
.api-header .hero-description,
.agency-header .page-title,
.agency-header .page-subtitle,
.agency-header .hero-description {
    color: #3B3E43;
}

.api-header .page-subtitle,
.agency-header .page-subtitle {
    color: #636F7B;
}

/* ========================================
   API Code Preview
   ======================================== */

.api-code-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.api-code-preview pre {
    margin: 0;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
}

.api-code-preview code {
    color: #ffffff;
}

/* ========================================
   API Endpoints
   ======================================== */

.api-endpoint-card {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.endpoint-header {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.http-method {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
}

.method-get {
    background: #3392D0;
}

.method-post {
    background: #BA4790;
}

.method-put {
    background: #F7941D;
}

.method-delete {
    background: #dc3545;
}

.endpoint-header code {
    font-size: 1.4rem;
    color: #333;
}

.endpoint-body {
    padding: 2rem;
}

.endpoint-body h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3B3E43;
    margin-bottom: 1rem;
}

.endpoint-example {
    background: #f8f9fa;
    border-left: 4px solid #BA4790;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 5px;
}

.endpoint-example pre {
    margin: 1rem 0 0 0;
    background: #2d3436;
    color: #00ff00;
    padding: 1.5rem;
    border-radius: 5px;
    overflow-x: auto;
}

/* ========================================
   Solutions Cards
   ======================================== */

.solution-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.solution-icon {
    margin-bottom: 2rem;
}

.solution-card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #3B3E43;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.solution-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 1.5rem;
}

.solution-features li:last-child {
    border-bottom: none;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    padding: 80px 0;
}

.cta-box {
    color: #ffffff;
}

.cta-box h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-box p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Stats Section
   ======================================== */

.stats-section {
    background: #f9f9f9;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.6rem;
    color: #636F7B;
    font-weight: 500;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    font-weight: 600;
    color: #3B3E43;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.contact-form .form-control {
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.2rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #BA4790;
    box-shadow: 0 0 0 0.2rem rgba(186, 71, 144, 0.1);
}

.contact-info-wrapper {
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    height: 100%;
}

.contact-info-wrapper h2 {
    color: #ffffff;
    font-weight: 700;
}

.contact-info-wrapper h4 {
    color: #ffffff;
}

.contact-info-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-details p {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.95;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-details a:hover {
    color: #FFD93D;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #F7941D;
    transform: translateY(-3px);
}

/* ========================================
   Registration Forms
   ======================================== */

.registration-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #BA4790;
    margin-bottom: 2rem;
}

.registration-form .form-group {
    margin-bottom: 0;
}

.registration-form label {
    font-weight: 600;
    color: #3B3E43;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.registration-form .form-control,
.registration-form .form-select {
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.2rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.registration-form .form-control:focus,
.registration-form .form-select:focus {
    border-color: #BA4790;
    box-shadow: 0 0 0 0.2rem rgba(186, 71, 144, 0.1);
}

.agency-type-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agency-type-radio,
.api-plan-option {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.agency-type-radio:hover,
.api-plan-option:hover {
    background: #f0f4ff;
    border-color: #BA4790;
}

.agency-type-radio input:checked ~ label,
.api-plan-option input:checked ~ label {
    color: #BA4790;
}

.agency-type-radio .form-check-label,
.api-plan-option .form-check-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.agency-type-radio .form-check-label span,
.api-plan-option .form-check-label span {
    font-size: 1.3rem;
    color: #636F7B;
    font-weight: normal;
}

/* ========================================
   Agency Types
   ======================================== */

.agency-type-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
}

.agency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.agency-badge.sub {
    background: linear-gradient(135deg, #3392D0 0%, #F7941D 100%);
}

.agency-type-card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #3B3E43;
    margin-bottom: 1.5rem;
}

.agency-description {
    font-size: 1.5rem;
    color: #636F7B;
    margin-bottom: 2rem;
}

.agency-features h4,
.agency-requirements h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3B3E43;
    margin-bottom: 1.5rem;
}

.agency-features ul,
.agency-requirements ul {
    list-style: none;
    padding: 0;
}

.agency-features ul li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.5rem;
    color: #636F7B;
}

.agency-features ul li:last-child {
    border-bottom: none;
}

.agency-features ul li strong {
    color: #BA4790;
}

/* ========================================
   Step Cards
   ======================================== */

.step-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(186, 71, 144, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.step-icon {
    margin-bottom: 1.5rem;
}

.step-card h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3B3E43;
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1.4rem;
    color: #636F7B;
}

/* ========================================
   Pricing Cards
   ======================================== */

.pricing-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(186, 71, 144, 0.2);
}

.pricing-card.featured {
    border: 3px solid #BA4790;
}

.badge-featured {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #F7941D;
    color: #ffffff;
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
}

.pricing-header {
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 2.4rem;
    margin-top: 1rem;
}

.amount {
    font-size: 4.8rem;
    font-weight: 700;
}

.period {
    font-size: 1.6rem;
    margin-top: 2rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 3rem 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.5rem;
    color: #636F7B;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ========================================
   Comparison Table
   ======================================== */

.comparison-table-wrapper {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    margin: 0;
}

.comparison-table thead {
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
}

.comparison-table thead th {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.6rem;
    padding: 1.5rem;
    border: none;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody td {
    padding: 1.5rem;
    font-size: 1.5rem;
}

.comparison-table .check {
    color: #28a745;
    font-size: 2rem;
    font-weight: 700;
}

.comparison-table .cross {
    color: #dc3545;
    font-size: 2rem;
    font-weight: 700;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonial-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-rating {
    color: #F7941D;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.5rem;
    color: #636F7B;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.6rem;
    color: #3B3E43;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    font-size: 1.4rem;
    color: #636F7B;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: #213D4A;
    color: #B0C4CD;
    padding: 60px 0 0;
}

.footer-col h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #F7941D;
    font-family: 'Poppins', sans-serif;
}

.footer-col p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #B0C4CD;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li {
    display: flex;
    align-items: center;
}

.footer-col ul li svg {
    fill: #F7941D;
    flex-shrink: 0;
}

.footer-col ul li a {
    color: #B0C4CD;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom {
    background: #1A303A;
    padding: 2rem 0;
    margin-top: 4rem;
}

.copyright {
    text-align: center;
    color: #B0C4CD;
    font-size: 1.4rem;
}

/* ========================================
   Benefits & Features
   ======================================== */

.benefit-card,
.benefit-box {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover,
.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(51, 146, 208, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.benefit-card h3,
.benefit-box h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3B3E43;
    margin-bottom: 1rem;
}

.benefit-card p,
.benefit-box p {
    font-size: 1.4rem;
    color: #636F7B;
    line-height: 1.6;
}

.feature-number,
.benefit-icon {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Accordion (FAQ)
   ======================================== */

.accordion-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px !important;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.accordion-button {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3B3E43;
    background: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    color: #ffffff;
}

.accordion-body {
    font-size: 1.5rem;
    line-height: 1.8;
    padding: 2rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
    }
    
    .navbar-nav .nav-link.btn-register {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* ========================================
   About Page Redesign - Clean & Modern
   ======================================== */

/* Remove background image from about page */
.section-page.about-page {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%) !important;
    background-image: none !important;
}

/* Modern breadcrumb header */
.about-page .breadcrumb {
    background: transparent;
    padding: 4rem 0 3rem;
}

.about-page .breadcrumb .heading h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #F7941D;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-page .breadcrumb .heading .description {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

/* Clean white card with modern shadow */
.about-page .details-page {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    padding: 5rem;
    margin-bottom: 8rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Enhanced typography */
.about-page .details-page h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #3392D0;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #F7941D;
    position: relative;
}

.about-page .details-page h3:first-child {
    margin-top: 0;
}

.about-page .details-page h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #BA4790 0%, #3392D0 100%);
}

.about-page .details-page p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 2rem;
    text-align: justify;
}

/* Redesigned list styling */
.about-page .list-style-three {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.about-page .list-style-three p {
    font-size: 1.7rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 2rem;
}

.about-page .list-style-three ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-page .list-style-three ul li {
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    margin-bottom: 1.5rem;
    background: #ffffff;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border-left: 4px solid #3392D0;
    line-height: 1.7;
    text-align: left;
}

.about-page .list-style-three ul li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(186, 71, 144, 0.15);
    border-left-color: #BA4790;
}

.about-page .list-style-three ul li:before {
    content: '✓';
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #BA4790 0%, #3392D0 100%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.about-page .list-style-three ul li strong {
    color: #BA4790;
    font-weight: 700;
}

/* Add accent cards for key sections */
.intro-section,
.mission-section {
    background: linear-gradient(135deg, rgba(186, 71, 144, 0.05) 0%, rgba(51, 146, 208, 0.05) 100%);
    border-left: 5px solid #BA4790;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.why-choose-section {
    background: linear-gradient(135deg, rgba(51, 146, 208, 0.05) 0%, rgba(247, 148, 29, 0.05) 100%);
    border-left: 5px solid #3392D0;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

/* Responsive design for About page */
@media (max-width: 768px) {
    .about-page .details-page {
        padding: 3rem 2rem;
        margin-bottom: 5rem;
    }
    
    .about-page .details-page h3 {
        font-size: 2.4rem;
    }
    
    .about-page .details-page p {
        font-size: 1.5rem;
    }
    
    .about-page .list-style-three ul li {
        padding: 1.2rem 1rem 1.2rem 3.5rem;
    }
    
    .about-page .breadcrumb .heading .description {
        font-size: 3rem;
    }
}

/* ========================================
   About Page - New Layout Styles
   ======================================== */

.about-header {
    padding: 50px 0;
    text-align: left;
    background: linear-gradient(135deg, #E8F4F8 0%, #F5F8FF 50%, #E8F4F8 100%);
}

.about-header .page-title {
    color: #3B3E43;
}

.about-header .page-subtitle,
.about-header .hero-description {
    color: #636F7B;
}

/* API Feature Cards (reusable for services) */
.api-feature-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.api-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(186, 71, 144, 0.2);
}

.api-feature-card .feature-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.api-feature-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #3B3E43;
    margin-bottom: 1rem;
}

.api-feature-card p {
    font-size: 1.5rem;
    color: #636F7B;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Feature List Items */
.feature-list .feature-item {
    margin-bottom: 2rem;
}

.feature-list .feature-icon-small {
    flex-shrink: 0;
}

.feature-list h5 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3B3E43;
    margin-bottom: 0.5rem;
}

.feature-list p {
    font-size: 1.4rem;
    color: #636F7B;
}

/* Why Choose Section */
.why-choose-about-section {
    background: #f8f9fa;
}

.why-choose-about-section .lead {
    font-size: 1.8rem;
    color: #4A5568;
    line-height: 1.7;
}

.why-choose-about-section p {
    font-size: 1.6rem;
    color: #636F7B;
    line-height: 1.7;
}

/* Mission Section */
.mission-section-about {
    padding: 80px 0;
}

.mission-section-about .lead {
    font-size: 1.8rem;
    color: #4A5568;
    line-height: 1.7;
    font-weight: 500;
}

.mission-section-about p {
    font-size: 1.6rem;
    color: #636F7B;
    line-height: 1.7;
}

/* Hero Illustration Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-illustration svg {
    animation: float 6s ease-in-out infinite;
}

/* Responsive adjustments for new layout */
@media (max-width: 768px) {
    .about-header,
    .api-header,
    .agency-header,
    .page-header-section {
        padding: 30px 0;
    }
    
    .about-header .page-title,
    .api-header .page-title,
    .agency-header .page-title,
    .page-header-section .page-title {
        font-size: 3rem;
    }
    
    .about-header .page-subtitle,
    .api-header .page-subtitle,
    .agency-header .page-subtitle,
    .page-header-section .page-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-illustration {
        margin-top: 3rem;
    }
    
    .api-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-list .ms-3 {
        margin-left: 1rem !important;
    }
}

/* ========================================
   Privacy Policy Page
   ======================================== */

.privacy-content-wrapper {
    background: #ffffff;
    border-radius: 15px;
    padding: 4rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.privacy-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e8e8;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #3392D0;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F7941D;
    display: inline-block;
}

.privacy-section p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.privacy-list li {
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 1rem;
    background: #F8F9FA;
    border-left: 4px solid #3392D0;
    border-radius: 5px;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #4A5568;
    position: relative;
}

.privacy-list li:before {
    content: '•';
    position: absolute;
    left: 1.5rem;
    color: #BA4790;
    font-weight: bold;
    font-size: 1.8rem;
}

.privacy-list li strong {
    color: #BA4790;
    font-weight: 600;
}

.contact-info-box {
    background: linear-gradient(135deg, rgba(186, 71, 144, 0.05) 0%, rgba(51, 146, 208, 0.05) 100%);
    border-left: 4px solid #BA4790;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.contact-info-box p {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.contact-info-box a {
    color: #3392D0;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:hover {
    color: #BA4790;
    text-decoration: underline;
}

.privacy-consent {
    background: linear-gradient(135deg, rgba(51, 146, 208, 0.05) 0%, rgba(247, 148, 29, 0.05) 100%);
    border-left: 4px solid #F7941D;
    padding: 2.5rem;
    border-radius: 10px;
}

.privacy-consent h3 {
    color: #F7941D;
    border-bottom-color: #BA4790;
}

/* Responsive for Privacy Page */
@media (max-width: 768px) {
    .privacy-content-wrapper {
        padding: 2rem;
    }
    
    .privacy-section h3 {
        font-size: 2rem;
    }
    
    .privacy-section p,
    .privacy-list li {
        font-size: 1.4rem;
    }
}

