/* Park n Charge+ Brand Colors */
:root {
    /* Main brand colors */
    --blue: #173283; /* Primary blue color */
    --vibrant-blue: #4A90E2; /* Younger, lighter, vibrant blue for CTAs */
    --yellow: #FFDC52; /* Accent yellow from logo */
    --black: #000000;
    --dark: #222222;
    --light: #f8f9fa;
    --light-alt: #f0f2f5;
    --gray: #6c757d;
    
    /* Legacy colors kept for reference */
    --teal: #26b6b0;
    --orange: #ff8a00;
    --coral: #ff5b62;
    --dark-blue: #003366;
    --old-yellow: #ffcb09; /* Keep old yellow for reference */
    
    /* Main color assignments */
    --primary: var(--blue);
    --secondary: var(--yellow);
    --accent: var(--yellow);
    
    /* Layout variables */
    --section-padding: 100px 0;
    --card-border-radius: 15px;
    --button-border-radius: 30px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Aspria Font Face Declarations */
@font-face {
    font-family: "Aspira";
    src: url("https://db.onlinewebfonts.com/t/a1d5522f913d9bd1eca5adbfdb6fd287.eot");
    src: url("https://db.onlinewebfonts.com/t/a1d5522f913d9bd1eca5adbfdb6fd287.eot?#iefix") format("embedded-opentype"),
         url("https://db.onlinewebfonts.com/t/a1d5522f913d9bd1eca5adbfdb6fd287.woff2") format("woff2"),
         url("https://db.onlinewebfonts.com/t/a1d5522f913d9bd1eca5adbfdb6fd287.woff") format("woff"),
         url("https://db.onlinewebfonts.com/t/a1d5522f913d9bd1eca5adbfdb6fd287.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Aspira";
    src: url("https://db.onlinewebfonts.com/t/b54b1b6a55e84cf598e52c4c4c3e9d63.woff2") format("woff2"),
         url("https://db.onlinewebfonts.com/t/b54b1b6a55e84cf598e52c4c4c3e9d63.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Aspira";
    src: url("https://db.onlinewebfonts.com/t/2b8c1f1b4a51a8b3e8b8f8f8f8f8f8f8.woff2") format("woff2"),
         url("https://db.onlinewebfonts.com/t/2b8c1f1b4a51a8b3e8b8f8f8f8f8f8f8.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

/* Base Styles */
body {
    font-family: 'Aspira', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Aspira', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

.brand-font {
    font-family: 'Aspira', 'Pacifico', cursive;
    color: var(--yellow);
    font-weight: 700;
}

.btn {
    padding: 10px 25px;
    border-radius: var(--button-border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    line-height: 1.2;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: var(--blue);
    color: white;
    font-weight: 700;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.btn-primary:hover {
    background-color: var(--blue);
    box-shadow: 0 5px 15px rgba(23, 50, 131, 0.3);
}

.btn-secondary {
    background-color: var(--black);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--black);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-accent {
    background-color: var(--yellow);
    color: black;
    font-weight: 700;
    border: none;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.btn-accent:hover {
    background-color: #F0CA42;
    color: black;
    transform: scale(1.05);
}

/* Black icons for accent buttons */
.btn-accent i {
    color: black;
}

.btn-accent:hover i {
    color: black;
}

/* Outline button styles - for "Learn More" button */
.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.9);
    background-color: transparent;
    font-weight: 700;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: scale(1.05);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
    border-color: white;
    color: black;
    background-color: white;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-dark { color: var(--dark) !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-light { background-color: var(--light) !important; }
.bg-dark { background-color: var(--dark) !important; }

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.navbar-brand img:hover {
    opacity: 1;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--yellow);
    background-color: rgba(255, 220, 82, 0.15);
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-scrolled .navbar-nav .nav-link {
    color: var(--black) !important;
    text-shadow: none;
}

.navbar-scrolled .navbar-nav .nav-link:hover {
    color: var(--accent) !important;
}

.navbar-scrolled .navbar-nav .nav-link.active {
    color: var(--accent) !important;
    text-shadow: none;
}

.navbar-scrolled .btn-outline-light {
    border-color: var(--black);
    color: var(--black);
}

.navbar-scrolled .btn-outline-light:hover {
    background-color: var(--black);
    border-color: var(--black);
    color: white;
}

/* Mobile menu fixes */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 20px;
        margin-top: 0;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        color: white !important;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-shadow: none;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--yellow) !important;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .btn-accent {
        margin-top: 10px;
        width: 100%;
    }
}

/* Hero Section - New Design */
.hero-new {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 15vh;
    overflow: hidden;
    margin-top: -86px; /* Pull hero section up to cover navbar area */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/ChatGPT Image Aug 8, 2025, 02_58_08 PM_1754690344254.png') center 65% / cover no-repeat;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 220px;
}

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

.hero-invitation {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-style: italic;
    font-size: clamp(1.6rem, 3.8vw, 2.8rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.hero-main-title {
    font-family: 'Aspira', 'Inter', Arial, sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-buttons .btn {
    flex-shrink: 0;
    height: 56px !important;
    padding: 12px 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-sizing: border-box;
}

.hero-buttons .btn-accent {
    margin-top: 20px;
}



/* Additional responsive adjustments for very small screens */
@media (max-width: 480px) {
    .hero-new {
        margin-top: 0 !important;
        padding-top: 86px;
    }
    
    .hero-content-wrapper {
        padding-top: 120px !important;
    }
    
    .hero-invitation {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
        margin-top: 0;
        margin-bottom: 2rem;
    }
    
    .hero-main-title {
        font-size: clamp(2.0rem, 8vw, 3.2rem);
        line-height: 1.0;
    }
    
    .hero-text-content {
        padding: 0 1rem;
        margin-top: 0;
    }
    
    .hero-new {
        padding-bottom: 20vh;
        min-height: 100vh;
    }
    
    .hero-buttons .btn-accent {
        margin-top: 0 !important;
    }
}

/* Medium screens - tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-new {
        margin-top: 0 !important;
        padding-top: 86px;
    }
    
    .hero-content-wrapper {
        padding-top: 120px;
    }
    
    .hero-invitation {
        margin-bottom: 1.5rem;
        font-size: clamp(2.4rem, 6vw, 3.2rem);
    }
    
    .hero-main-title {
        font-size: clamp(3.0rem, 9vw, 4.5rem);
        line-height: 1.0;
    }
    
    .hero-text-content {
        margin-top: 0;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        flex: 1;
        margin-top: 0 !important;
    }
    
    .hero-buttons .btn-accent {
        margin-top: 20px;
    }
}

/* Large tablets and small desktops */
@media (max-width: 990px) and (min-width: 769px) {
    .hero-new {
        margin-top: 0 !important;
        padding-top: 86px;
    }
    
    .hero-content-wrapper {
        padding-top: 180px;
    }
    
    .hero-invitation {
        margin-bottom: 1.5rem;
        font-size: clamp(2.8rem, 6vw, 4rem);
    }
    
    .hero-main-title {
        font-size: clamp(3.5rem, 8vw, 6rem);
        line-height: 0.95;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        flex: 1;
        margin-top: 0 !important;
    }
    
    .hero-buttons .btn-accent {
        margin-top: 20px;
    }
}

/* Ensure readability on very large screens */
@media (min-width: 1400px) {
    .hero-invitation {
        font-size: 3rem;
    }
    
    .hero-main-title {
        font-size: 6rem;
    }
    
    .hero-background {
        background-position: center 70%;
    }
}

/* Ultra-wide screens - focus even higher */
@media (min-width: 1920px) {
    .hero-background {
        background-position: center 75%;
    }
}

/* How It Works Section */
#how-it-works {
    padding: var(--section-padding);
    background-color: white;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--dark);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--yellow);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--yellow);
    color: black;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Removing conflicting rule */

.step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-description {
    color: var(--gray);
    font-size: 1rem;
}

.process-icon {
    font-size: 4.5rem; /* 1.5x bigger */
    color: var(--yellow);
    margin-bottom: 25px;
}

.tab-content {
    padding-top: 30px;
}

/* Balance image height with process steps */
#hosts .img-fluid,
#drivers .img-fluid {
    height: 550px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Balance contact section image with form */
#contact .img-fluid {
    height: 600px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.nav-tabs {
    border-bottom: 2px solid var(--light);
    justify-content: center;
    margin-bottom: 40px;
}

.nav-tabs .nav-link {
    border: none;
    font-weight: 600;
    color: var(--gray);
    padding: 15px 30px;
    border-radius: 0;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: var(--yellow);
    background-color: transparent;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--yellow);
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--yellow);
}

/* Benefits Section */
#benefits {
    padding: var(--section-padding);
    background-color: var(--light-alt);
    position: relative;
    overflow: hidden;
}

#benefits::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--yellow);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

#benefits::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--orange);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.benefit-card {
    background-color: white;
    border-radius: var(--card-border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
    border-top: 4px solid var(--yellow);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3.75rem; /* 1.5x bigger */
    margin-bottom: 25px;
    color: var(--yellow);
}

.benefit-card:nth-child(2n) .benefit-icon {
    color: var(--black);
}

.benefit-card:nth-child(3n) .benefit-icon {
    color: var(--yellow);
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* New benefits showcase style */
.benefits-showcase {
    margin-top: 30px;
}

.benefit-card-new {
    border-radius: var(--card-border-radius);
    margin-bottom: 30px;
    transition: var(--transition);
    height: 100%;
    background-color: white;
    overflow: hidden;
    text-align: center;
}

.benefit-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
    border-top-left-radius: var(--card-border-radius);
    border-top-right-radius: var(--card-border-radius);
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-card-new:hover .benefit-image img {
    transform: scale(1.1);
}

.benefit-title-new {
    font-size: 1.3rem;
    margin-bottom: 10px;
    padding: 0 15px;
    font-weight: 700;
    color: var(--black);
}

.benefit-description-new {
    padding: 0 15px 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

.benefit-description {
    color: var(--gray);
    font-size: 1rem;
}

/* Host Education Section - Subtle and Organized */
#host-education {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fbfcfd 0%, #f8f9fa 100%);
    position: relative;
}

#host-education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFDC52' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.education-content {
    padding-right: 30px;
    position: relative;
    z-index: 1;
}

.education-title {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
}

.education-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow));
    border-radius: 2px;
}

.education-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
}

.education-features {
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 220, 82, 0.1);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item:hover {
    background: rgba(255, 220, 82, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 220, 82, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffeb3b 100%);
    color: #2c3e50;
    border-color: var(--yellow);
}

.feature-icon i {
    font-size: 1.1rem;
}

.feature-text h5 {
    color: #2c3e50;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-text p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.education-cta {
    margin-top: 30px;
}

.education-visual {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 220, 82, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.outlet-comparison {
    text-align: center;
}

.outlet-item {
    margin-bottom: 40px;
}

.outlet-image {
    width: 160px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.outlet-diagram {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.outlet-item h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.outlet-item p {
    color: #6c757d;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.outlet-specs {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.spec-item {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffeb3b 100%);
    color: #2c3e50;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(255, 220, 82, 0.2);
}

.preference-info h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

.preference-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 60px;
}

.stat-item {
    text-align: center;
    max-width: 160px;
}

.stat-item h5 {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.stat-item p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0 auto;
    line-height: 1.4;
    max-width: 140px;
}

.stat-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow) 0%, #ffeb3b 100%);
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
    box-shadow: 0 4px 12px rgba(255, 220, 82, 0.2);
}

.stat-circle.small {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #495057;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-circle.small .stat-number {
    font-size: 1.4rem;
}



.preference-note {
    background: rgba(248, 249, 250, 0.8);
    border-left: 4px solid var(--yellow);
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    color: #6c757d;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.preference-note i {
    color: #2c3e50;
}

.mobile-outlet-display {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(255, 220, 82, 0.1);
}

.mobile-outlet-display .outlet-item {
    margin-bottom: 0;
}

.mobile-outlet-display .outlet-image {
    width: 100px;
    height: 80px;
}

.mobile-outlet-display .outlet-diagram {
    width: 80px;
    height: 80px;
}

@media (max-width: 991.98px) {
    .education-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .outlet-image {
        width: 120px;
        height: 90px;
    }
    
    .outlet-diagram {
        width: 100px;
        height: 100px;
    }
    
    .preference-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-circle {
        width: 80px;
        height: 80px;
    }
    
    .stat-circle.small {
        width: 60px;
        height: 60px;
    }
}

/* Testimonials Section */
#testimonials {
    padding: var(--section-padding);
    background-color: white;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: var(--light-alt);
    border-radius: var(--card-border-radius);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-left: 4px solid var(--yellow);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--yellow);
    opacity: 0.3;
    line-height: 1;
}

/* CTA Section */
#cta {
    padding: 80px 0;
    background-color: var(--black);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Contact Section */
#contact {
    padding: 100px 0;
    background-color: var(--light);
}

.contact-form {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 220, 82, 0.2);
    border-color: var(--yellow);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

textarea.form-control {
    min-height: 150px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h5 {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--yellow);
    margin-right: 15px;
    margin-top: 3px;
}

.contact-text {
    flex: 1;
}

.contact-text h6 {
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-about {
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background-color: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #b8b8b8;
}

.footer-bottom p.legal-entity {
    margin-top: 5px;
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.footer-legal-links {
    text-align: right;
}

.footer-legal-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-legal-links .separator {
    margin: 0 10px;
    color: #6c757d;
}

@media (max-width: 767.98px) {
    .footer-bottom {
        text-align: center;
    }
    
    .footer-legal-links {
        text-align: center;
        margin-top: 10px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Utility Classes */
.rounded-lg {
    border-radius: 15px;
}

.shadow-sm {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Footer contact section */
.footer-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.footer-contact-heading {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-contact-item {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--yellow);
}
