/* ============================================
   PikiPiki - Ride Hailing Website Styles
   Colors: Yellow (#FFD100), Red (#E31837), Black (#000000)
   Font: Quicksand
   ============================================ */

/* CSS Variables */
:root {
    --primary-red: #FFD100;
    --primary-yellow: #E31837;
    --primary-black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-black);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

.highlight {
    color: var(--primary-red);
}

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

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-black);
    color: var(--primary-black);
}

.btn-outline:hover {
    background-color: var(--primary-black);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-piki {
    color: var(--primary-black);
}

.logo-piki-red {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    color: var(--medium-gray);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-red);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-black);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-black);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--primary-black);
    border-radius: 40px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: var(--dark-gray);
    border-radius: 15px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--primary-red);
    color: var(--white);
    padding: 50px 20px 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.map-placeholder {
    flex: 1;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    position: relative;
}

.location-pin {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.location-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
}

.route-line {
    position: absolute;
    top: 45%;
    left: 30%;
    width: 40%;
    height: 3px;
    background: var(--primary-black);
    opacity: 0.3;
}

.ride-card {
    background: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.ride-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ride-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    border-radius: 10px;
}

.ride-details {
    display: flex;
    flex-direction: column;
}

.ride-type {
    font-weight: 700;
    color: var(--primary-black);
}

.ride-time {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.request-btn {
    background: var(--primary-black);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--medium-gray);
}

/* How It Works */
.how-it-works {
    padding: 100px 20px;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 250px;
}

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

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: var(--medium-gray);
}

.step-connector {
    width: 80px;
    height: 3px;
    background: var(--primary-yellow);
}

/* CTA Section */
.cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 40px;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary-black);
    padding: 12px 24px;
    border-radius: 10px;
    transition: var(--transition);
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-btn-icon {
    font-size: 1.5rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-btn-text span {
    font-size: 0.75rem;
}

.app-btn-text strong {
    font-size: 1.1rem;
}

/* Page Hero */
.page-hero {
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--primary-red);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon.motorcycle {
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
}

.service-icon.car {
    background: linear-gradient(135deg, var(--primary-black), var(--medium-gray));
}

.service-icon.delivery {
    background: linear-gradient(135deg, var(--primary-yellow), #ffa500);
}

.service-icon.business {
    background: linear-gradient(135deg, #4a90d9, #2c5282);
}

.service-icon svg {
    width: 50px;
    height: 50px;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--medium-gray);
    margin-bottom: 25px;
}

.service-features {
    text-align: left;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--medium-gray);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: var(--light-gray);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 1rem;
    color: var(--medium-gray);
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
}

.price .unit {
    font-size: 1rem;
    color: var(--medium-gray);
}

.pricing-card ul {
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--medium-gray);
}

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

/* Driver Section */
.driver-section {
    padding: 100px 20px;
}

.driver-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.driver-text h2 {
    margin-bottom: 20px;
}

.driver-text > p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.driver-benefits {
    margin-bottom: 30px;
}

.driver-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-black);
}

.driver-placeholder {
    background: var(--light-gray);
    border-radius: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.driver-avatar {
    width: 150px;
    height: 150px;
    background: var(--primary-red);
    border-radius: 50%;
    margin-bottom: 20px;
}

.earnings-card {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.earnings-label {
    display: block;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 5px;
}

.earnings-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form-container h2 {
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.phone {
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
}

.contact-icon.email {
    background: linear-gradient(135deg, var(--primary-yellow), #ffa500);
}

.contact-icon.location {
    background: linear-gradient(135deg, var(--primary-black), var(--medium-gray));
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.contact-details h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-details a {
    color: var(--primary-red);
    font-weight: 600;
}

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

.contact-details p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.social-links h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-red);
    color: var(--white);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form-container {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

.contact-form {
    margin-top: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 100px 20px;
    background: var(--light-gray);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
}

.faq-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--medium-gray);
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 80px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand p {
    margin-top: 15px;
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li,
.footer-contact ul li {
    padding: 8px 0;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links ul li:hover {
    opacity: 1;
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .driver-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .driver-benefits {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .driver-benefits li {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 0;
    }

    .nav-links.active li {
        padding: 15px 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 280px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        gap: 10px;
        box-shadow: var(--shadow);
    }

    h1 {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .step-connector {
        display: none;
    }

    .steps {
        flex-direction: column;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-form-container {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 15px 60px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Hero Image */
.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Step Images */
.step-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.step-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: var(--transition);
}

.step:hover .step-image img {
    transform: scale(1.05);
}

/* City Banner */
.city-banner {
    padding: 100px 20px;
    background: var(--light-gray);
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-text h2 {
    margin-bottom: 20px;
}

.banner-text p {
    color: var(--medium-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.banner-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Service Card Images */
.service-card-image {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* Driver Image */
.driver-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.driver-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.driver-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px;
    color: var(--white);
}

/* Contact Hero Image */
.contact-hero-image {
    margin-top: 40px;
}

.contact-hero-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Team Section */
.team-section {
    padding: 100px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary-red);
}

.team-card h3 {
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-img {
        max-width: 100%;
    }

    .step-image img {
        height: 120px;
    }
}
