/* --- TOP BAR STYLES --- */
.top-bar {
    background-color: #111111;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__container {
    display: flex;
    justify-content: space-between; /* Pinagwawalay ang contact at socials */
    align-items: center;
    max-width: 1300px; /* Pwede mong i-adjust depende sa lapad ng navbar mo */
    margin: 0 auto;
    padding: 0 50px; /* Space sa gilid */
}

.top-bar__contact a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space sa pagitan ng icon at text */
    transition: color 0.3s ease;
}

.top-bar__contact a:hover {
    color: #cccccc; /* Bahagyang puputi kapag hino-hover */
}

.top-bar__socials {
    display: flex;
    gap: 20px; /* Space sa pagitan ng mga icons */
}

.top-bar__socials a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.top-bar__socials a:hover {
    color: #cccccc;
    transform: scale(1.1); /* Lumalaki kaunti kapag hino-hover */
}

/* Responsive adjustment para sa mobile */
@media screen and (max-width: 768px) {
    .top-bar__container {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
        text-align: center;
    }
    .top-bar__contact a {
        margin: 0 10px;
    }
}
/* --- GLOBAL RESET --- */
:root{
    --brand: #178ca4;
    --muted: #64748b;
    --bg: #f8fafc;
    --text: #1a1a1a;
    --accent: #10b981;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Para maiwasan ang unhelpful horizontal scrolling */
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: var(--text);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.content {
    width: 100%;
    padding: 60px 0;
}

section {
    padding: 60px 0;
}

.hero.small-hero {
    padding: 110px 0 90px;
}

.hero-inner {
    max-width: 820px;
    margin: 0 auto;
}

.hero-small .hero-inner {
    max-width: 760px;
}

.section-title {
    letter-spacing: 1.2px;
}

/* --- BASE DESKTOP STYLES (961px and above) --- */
.navbar {
    background: #ffffff;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative; /* Para sa maayos na positioning ng buttons at menu */
}

#navbar__logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0; 
}

.navbar__logo-img {
    height: 80px;    
    width: auto;     
    display: block;
}

/* --- AYOS NA DESKTOP MENU --- */
.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    justify-content: center; 
    flex-grow: 1;
    margin-left: 50px; /* Nilayuan ang unang link sa logo */
}

/* Kontrol sa agwat ng bawat link (About, Services, Our Fleet, Contact Us) */
.navbar__item {
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 50px; 
}

.navbar__links {
    color: #5a6b7b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.navbar__links:hover,
.navbar__links.active {
    color: var(--brand);
}

.navbar__links.active {
    color: #178ca4;
    font-weight: 700;
}

/* DESKTOP BUTTONS CONTAINER */
.navbar__btn {
    display: flex;
    align-items: center;
}

/* Tinulak ang "Request a quote" pakanan habang pinapanatiling nasa gitna ang links */
.navbar__menu .navbar__btn:nth-last-child(2) {
    margin-left: auto; 
}

.navbar__btn a.button {
    box-shadow: 0 10px 30px rgba(23, 140, 164, 0.12);
}

/* Eksaktong dikit ng dalawang button */
.navbar__menu .navbar__btn:last-child {
    margin-left: 10px; /* Swabeng 10px na lang para magkatabi na sila nang maayos */
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap; 
}

.button--quote, .button--phone {
    background-color: #f0f4f8;
    color: #2b7a9e;
}

.button--quote:hover, .button--phone:hover {
    background-color: #e1e9f0;
}

.navbar__toggle {
    display: none;
}

/* --- MOBILE RESPONSIVE STYLES (960px and below) --- */
@media screen and (max-width: 960px) {
    .navbar__toggle {
        display: block;
        cursor: pointer;
    }

    .navbar__toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #1a1a1a;
    }

    /* MOBILE SANDWICH MENU: Bababa lahat ng links pati buttons */
    .navbar__menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        position: absolute;
        top: 90px; 
        left: -100%; 
        opacity: 0;
        transition: all 0.4s ease;
        background: #ffffff; 
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 30px 0;
        gap: 20px; /* Spacing ng mga items kapag nasa loob ng sandwich */
        margin-left: 0; /* Panatilihin natin ito */
    }

  .navbar__menu.active {
        left: 0;
        /* Alisin muna natin ang right: 0; dito dahil sumusobra ang hatak */
        opacity: 1;
        z-index: 99;
    }

    .navbar__item {
        width: 100%;
        height: auto;
        justify-content: center;
    }

    .navbar__links {
        text-align: center;
        padding: 5px 0;
        width: 100%;
        font-size: 18px;
    }

    /* Tatanggalin ang desktop pushes para pantay sila sa mobile dropdown */
    .navbar__menu .navbar__btn:nth-last-child(2),
    .navbar__menu .navbar__btn:last-child {
        margin-left: 0; 
    }

    .navbar__btn {
        width: 100%;
        justify-content: center;
        padding: 0 24px;
    }

    .button {
        width: 100%; 
        padding: 14px 0;
        font-size: 15px;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .navbar__btn-container {
        display: none; /* Kusang mawawala ang mga buttons kapag sumapit sa mobile screen size */
    }
}

/* --- HERO SECTION STYLES --- */
.main {
    /* Background Image na may Dark Overlay para lutang ang puting text */
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('images/Mayon.jpg'); 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 75vh; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.main__container {
    display: flex;
    flex-direction: column;
    align-items: center;      
    justify-content: center;  
    text-align: center;       
    width: 100%;
    max-width: 850px;         
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- HERO TYPOGRAPHY --- */
.main__container h1 {
    color: #ffffff;           
    font-size: 52px;          
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.08;
}

.main__container p {
    color: #e2e8f0;           
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* --- HERO BUTTONS STYLES --- */
.main__buttons {
    display: flex;
    gap: 15px;                
    flex-wrap: wrap;          
    justify-content: center;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 10px 25px rgba(23,140,164,0.1);
}

.btn-primary {
    background: linear-gradient(180deg,var(--brand), #136b86);
    color: #ffffff;
}

.btn-primary:hover {
    filter: brightness(0.96);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.18);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.06);
}

/* --- MOBILE RESPONSIVE HERO --- */
@media screen and (max-width: 768px) {
    .main__container h1 {
        font-size: 28px;      
    }
    
    .main__container p {
        font-size: 15px;
    }
    
    .main__buttons {
        width: 100%;
        flex-direction: column; 
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;          
        box-sizing: border-box;
    }
}

/* --- BOOKING SECTION BASE --- */
.booking-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;   
    align-items: center;
    width: 100%;
}

.booking-container {
    width: 100%;
    max-width: 650px;         
    margin: 0 auto;
}

.form-step {
    display: none; 
    width: 100%;
}

.form-step--active {
    display: flex;            
    flex-direction: column;   
}

.booking-container h2 {
    text-align: center;
    color: #1a1a1a;
    font-size: 32px;
    margin-bottom: 20px;
}

.booking-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
}

.form-step h3 {
    color: #334155;
    margin-bottom: 25px;
    font-size: 20px;
}

/* --- INPUTS & DROPDOWNS --- */
.input-group select {
    width: 100%;
    padding: 16px; 
    font-size: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #334155;
    background-color: #ffffff;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
    appearance: none; 
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center; 
}

/* --- RADIO CARD SELECTION (STEP 2) --- */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.booking-card {
    position: relative;
    display: block;
    cursor: pointer;
    width: 100%;
    -webkit-tap-highlight-color: transparent; 
}

.booking-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    cursor: pointer;
    z-index: 2; 
}

.card-box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
}

.card-box small {
    font-weight: 400;
    color: #64748b;
    margin-top: 5px;
}

.booking-card input[type="radio"]:checked + .card-box {
    border-color: #178ca4 !important;
    background-color: #f0fdfa !important;
    color: #178ca4 !important;
}

/* --- INPUT FIELDS FORM --- */
.form-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group.full-width {
    grid-column: span 2;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
    font-size: 14px;
}

.input-group input, .input-group select, .input-group textarea {
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    border-color: #2b7a9e;
}

/* --- NAVIGATION BUTTONS --- */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.nav-btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1; 
    text-align: center;
}

.btn-prev {
    background-color: #e2e8f0;
    color: #475569;
}

.btn-prev:disabled {
    display: none; 
}

.btn-next {
    background-color: #178ca4; 
    color: #ffffff;
}

.btn-next:hover {
    background-color: #126d80; 
}

.btn-prev:disabled + .btn-next {
    flex: 1;
    width: 100%;              
}

/* --- STEP INDICATOR DESIGN --- */
.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.step {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    padding-bottom: 5px;
    border-bottom: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step--active {
    color: #178ca4;
    border-bottom-color: #178ca4;
}

/* --- SYSTEM UTILITIES --- */
.conditional-options, .self-drive-only, .with-driver-only {
    display: none; 
}

.submit-booking-btn {
    display: none; 
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #10b981; 
    color: white;
    text-transform: uppercase;
    transition: background 0.3s;
}

.submit-booking-btn:hover {
    background-color: #059669;
}

/* --- MOBILE RESPONSIVE FOR BOOKING --- */
@media screen and (max-width: 768px) {
    .step-indicator {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .step {
        width: 100%;
        text-align: left;
        border-bottom: none;
        border-left: 3px solid #e2e8f0;
        padding-left: 10px;
        padding-bottom: 0;
    }
    .step--active {
        border-left-color: #178ca4;
    }
    .form-fields-grid {
        grid-template-columns: 1fr;
    }
    .input-group.full-width {
        grid-column: span 1;
    }
    .booking-container {
        padding: 10px;
    }
    .form-navigation {
        display: flex !important;
        flex-direction: row !important; 
        gap: 10px !important;
        width: 100% !important;
    }
    .nav-btn {
        flex: 1 !important; 
        width: 100% !important;
        padding: 14px 10px !important;
        font-size: 15px !important;
    }
}

/* --- FLEET SECTION STYLES --- */
.fleet-section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

.fleet-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.fleet-title {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.fleet-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    margin-bottom: 40px;
}

.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    background-color: #ffffff;
    color: #475569;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.tab-btn:hover {
    border-color: #178ca4;
    color: #178ca4;
}

.tab-btn.active {
    background-color: #1a1a1a; 
    color: #ffffff;
    border-color: #1a1a1a;
}

.fleet-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 30px;
    width: 100%;
}

.fleet-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    max-width: 360px; 
}

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

.fleet-img-container {
    background-color: #f8fafc;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px; 
    overflow: hidden;
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    transition: transform 0.3s;
}

.fleet-card:hover .fleet-img {
    transform: scale(1.03);
}

.fleet-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-details h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.fleet-class {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

.fleet-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #475569;
}

.spec-item {
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.fleet-footer {
    margin-top: auto; 
}

.fleet-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #178ca4; 
    color: #ffffff;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.fleet-book-btn:hover {
    background-color: #126d80;
}

@media screen and (max-width: 768px) {
    .fleet-title {
        font-size: 28px;
    }
    .fleet-grid {
        grid-template-columns: 1fr; 
    }
}

/* --- WHY MAYON RENT A CAR STYLES --- */
.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.why-mrac-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

.why-mrac-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

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

.feature-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 35px;
    display: inline-block;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

/* --- SUMMARY OF SERVICES STYLES --- */
.services-summary-section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

.services-summary-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

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

.service-summary-card {
    background: #ffffff;
    border-left: 4px solid #178ca4;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-top: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.service-summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.service-summary-icon {
    font-size: 24px;
}

.service-summary-card h3 {
    font-size: 19px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-summary-card p {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

/* --- PARTNER WITH US STYLES --- */
.partner-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    width: 100%;
    border-top: 1px solid #e2e8f0;
}

.partner-container {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
}

.partner-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.partner-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.partner-input-group {
    display: flex;
    flex-direction: column;
}

.partner-input-group.full-width {
    grid-column: span 2;
}

.partner-input-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
    font-size: 14px;
}

.partner-input-group input, .partner-input-group textarea {
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}

.partner-input-group input:focus, .partner-input-group textarea:focus {
    border-color: #178ca4;
}

.partner-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #1a1a1a;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.partner-submit-btn:hover {
    background-color: #334155;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    .partner-form-grid {
        grid-template-columns: 1fr;
    }
    .partner-input-group.full-width {
        grid-column: span 1;
    }
    .partner-form {
        padding: 25px 20px;
    }
}

/* --- FOOTER BASE STYLES --- */
.footer {
    background-color: #1a1a1a; 
    color: #94a3b8;
    padding: 60px 20px 20px 20px;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

.footer__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.footer__brand-side {
    flex: 1 1 300px;
}

.footer__logo {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); 
}

.footer__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer__links-side {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2 1 600px;
    justify-content: space-between;
}

.footer__link-group {
    flex: 1 1 150px;
}

.footer__link-group h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__link-group ul li {
    margin-bottom: 12px;
}

.footer__link-group ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer__link-group ul li a:hover {
    color: #178ca4; 
}

.footer__contact-info li {
    font-size: 14px;
    line-height: 1.5;
}

.footer__contact-info a {
    color: #94a3b8 !important;
}

.footer__contact-info a:hover {
    color: #178ca4 !important;
}

.footer__bottom {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer__bottom p {
    font-size: 12px;
    color: #64748b;
}

@media screen and (max-width: 768px) {
    .footer__container {
        flex-direction: column;
        gap: 35px;
    }
    
    .footer__links-side {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer__link-group h4 {
        margin-bottom: 12px;
    }
}