/* ========================================
   Reference Locksmith Academy - Main Styles
   ======================================== */

/* Variables */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #f6ad55;
    --warning-color: #ecc94b;
    --success-color: #48bb78;
    --danger-color: #f56565;
    --info-color: #4299e1;
    --light-bg: #f7fafc;
    --dark-bg: #1a202c;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --border-radius: 15px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

/* Section Styles */
.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Navbar */
#mainNav {
    padding: 15px 0;
    transition: var(--transition);
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

#mainNav.scrolled {
    background: white;
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
}

.navbar-brand img {
    height: 45px;
    transition: var(--transition);
}

#mainNav.scrolled .navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
    transition: var(--transition);
    color: var(--primary-color) !important;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-buttons .btn {
    padding: 8px 20px;
    font-weight: 500;
}

.nav-buttons .btn-outline-light {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.nav-buttons .btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.nav-buttons .btn-warning {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.nav-buttons .btn-warning:hover {
    background: #e69a3a;
    border-color: #e69a3a;
    color: white;
}

/* Navbar Toggler for Light Background */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a365d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: auto;
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-stats .stat-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}

.hero-stats h3 {
    font-size: 2rem;
    font-weight: 700;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    z-index: 10;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* iOS/Mobile button fix */
.hero-buttons a.btn {
    display: inline-block;
    text-decoration: none;
}

.hero-image {
    position: relative;
    z-index: 1;
}

/* Ensure buttons are always clickable */
.hero-buttons {
    position: relative;
    z-index: 10;
}

.video-preview-card {
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.video-player-card {
    text-align: center;
}

.video-player-card #heroVideoPlayer {
    background: #000;
}

.video-thumbnail {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    padding: 80px;
    margin-bottom: 20px;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail .play-overlay {
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-preview-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* About Section */
.about-image-wrapper {
    position: relative;
    text-align: center;
}

.about-image-main {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: var(--border-radius);
    padding: 100px;
    display: inline-block;
}

.about-image-main i {
    color: white;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.about-feature-item .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-feature-item .feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.about-feature-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Course Cards */
.course-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.course-image {
    position: relative;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 40px;
    text-align: center;
}

.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.course-content {
    padding: 25px;
}

.course-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.course-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
}

.course-rating {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Features Section */
.feature-box {
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon-lg i {
    color: white;
}

.feature-box h5 {
    margin-top: 20px;
    font-weight: 600;
}

/* Pricing Section */
.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-header h4 {
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-price {
    text-align: center;
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-save {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Pricing Features Short - Compact list for card view */
.pricing-features-short {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    min-height: 140px;
}

.pricing-features-short li {
    padding: 6px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #edf2f7;
}

.pricing-features-short li:last-child {
    border-bottom: none;
}

/* Pricing Buttons */
.pricing-buttons {
    margin-top: auto;
    padding-top: 15px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.author-avatar i {
    color: white;
    font-size: 1.2rem;
}

.author-info h6 {
    font-weight: 600;
    margin-bottom: 0;
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 20px 25px;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 25px;
    background: white;
}

/* Contact Section */
.contact-info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    color: white;
}

.contact-info-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--text-muted);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #edf2f7;
    padding: 12px 15px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.contact-map-wrapper {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Footer */
.footer {
    background: var(--dark-bg);
}

.footer-stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
}

.footer-stats .stat-item {
    padding: 10px;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links-inline li {
    margin-bottom: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Footer Newsletter */
.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: none;
    color: white;
}

.footer-newsletter .btn {
    padding: 12px 20px;
}

/* Trust Badges */
.trust-badges .badge {
    padding: 8px 12px;
    font-weight: 500;
    font-size: 0.75rem;
}

/* Payment Icons */
.footer-payments {
    background: rgba(0, 0, 0, 0.2);
}

.payment-icons {
    gap: 15px;
}

.payment-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    padding: 5px;
}

.payment-icon:hover {
    color: white;
    transform: scale(1.1);
}

.payment-icon.affirm-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    color: #0fa0ea;
    font-family: 'Poppins', sans-serif;
}

.payment-icon.affirm-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Payment Icons */
.payment-methods {
    margin-top: 15px;
}

.payment-icon {
    height: 30px;
    margin: 0 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.payment-icon:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .nav-buttons {
        margin-top: 15px;
        display: flex;
        gap: 10px;
    }
    
    /* Navbar Mobile Fix */
    #mainNav .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    #mainNav .navbar-nav {
        text-align: center;
    }
    
    #mainNav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(26, 54, 93, 0.1);
        color: var(--primary-color) !important;
    }
    
    #mainNav .nav-link:last-child {
        border-bottom: none;
    }
    
    #mainNav .nav-buttons {
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid rgba(26, 54, 93, 0.1);
    }
    
    #mainNav .nav-buttons .btn {
        flex: 1;
        max-width: 150px;
    }
    
    /* Navbar Toggler Style */
    .navbar-toggler {
        border: 2px solid var(--primary-color);
        padding: 8px 12px;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        border-color: var(--accent-color);
    }
    
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
}

@media (max-width: 767px) {
    .hero-content {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .about-image-main {
        padding: 60px;
    }
    
    .contact-info-card {
        margin-bottom: 20px;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .lead {
        font-size: 0.95rem;
    }
    
    .hero-stats .row {
        gap: 10px;
    }
    
    .hero-stats .stat-item {
        padding: 10px;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 1.2rem;
    }
    
    .hero-stats .stat-item small {
        font-size: 0.7rem;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
    }
    
    /* Course Cards Mobile */
    .course-card {
        margin-bottom: 20px;
    }
    
    .course-content h4 {
        font-size: 1rem;
    }
    
    .course-meta {
        font-size: 0.75rem;
    }
    
    /* Pricing Cards Mobile */
    .pricing-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .pricing-price .amount {
        font-size: 2.5rem;
    }
    
    /* Feature Boxes Mobile */
    .feature-box {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .feature-icon-lg {
        width: 60px;
        height: 60px;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    /* Contact Section Mobile */
    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 25px 20px;
    }
    
    /* Footer Mobile */
    .footer {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Accordion Mobile */
    .accordion-button {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .pricing-price .amount {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-brand i {
        display: none;
    }
    
    /* Stats on very small screens */
    .hero-stats .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-stats .row {
        flex-direction: column;
    }
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #edf2f7;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Plan Detail Modal */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.modal-header.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%) !important;
}

.modal-body .pricing-price {
    margin-bottom: 0;
}

.modal-body .pricing-price .amount {
    font-size: 2.5rem;
}

.modal-body .list-unstyled li {
    padding: 8px 0;
}

.modal-footer {
    border-top: 1px solid #edf2f7;
}
