/* ========================================
   ABOUT US PAGE - SPECIFIC STYLES
   ======================================== 
   
   This file contains styles ONLY for the About Us page.
   Global styles (navbar, footer, buttons, etc.) are in style.css
   
   ======================================== */

/* ========================================
   HERO BANNER (Static image with overlay)
   ======================================== */
.page-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-line-1 {
    color: #ffffff;
    display: block;
}

.title-line-2 {
    color: #ffffff;
    display: inline-block;
    background-color: #000000;
    padding: 0.25rem 1rem 0.25rem 0;
    margin-left: -0.25rem;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ========================================
   ENHANCED COMPANY EVOLUTION SECTION
   ======================================== */
.company-evolution-section {
    background: #011A38;
    padding: 6rem 1rem;
    color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.evolution-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base fade-in element styling */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Company Journey Timeline */
.company-journey {
    max-width: 900px;
    margin: 0 auto 5rem auto;
    position: relative;
}

.company-journey::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #22d3ee, #3b82f6);
    transform: translateX(-50%);
}

.journey-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.journey-item:nth-child(odd) {
    flex-direction: row;
}

.journey-item:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-year {
    flex: 0 0 120px;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    color: #ffffff;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.journey-content {
    flex: 1;
    background: rgba(10, 39, 68, 0.6);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 2rem;
    backdrop-filter: blur(10px);
}

.journey-content h3 {
    color: #22d3ee;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.journey-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Impact Statistics */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
    background: rgba(10, 39, 68, 0.4);
    padding: 2rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #22d3ee;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Company Visual */
.company-visual {
    margin-top: 4rem;
}

.visual-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.company-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(1, 26, 56, 0.9) 0%,
        rgba(1, 26, 56, 0.5) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.overlay-content h3 {
    color: #22d3ee;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   THE SLG ADVANTAGE SECTION
   ======================================== */
.slg-advantage-section {
    background: #011A38;
    padding: 6rem 1rem;
    color: #ffffff;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.advantage-content {
    padding-right: 2rem;
}

.advantage-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.advantage-title strong {
    color: #22d3ee;
}

.advantage-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.advantage-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-point h3 {
    color: #22d3ee;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.advantage-point p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.advantage-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.02);
}

/* ========================================
   ENHANCED PHILOSOPHY SECTION
   ======================================== */
.philosophy-section {
    background: #011A38;
    padding: 6rem 1rem;
    color: #ffffff;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.philosophy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.philosophy-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.philosophy-card {
    background: rgba(10, 39, 68, 0.4);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.3);
}

.philosophy-icon {
    margin-bottom: 2rem;
}

.icon-wrapper {
    display: inline-block;
    position: relative;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.principle-icon {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
    stroke-width: 2;
}

.philosophy-card h3 {
    color: #22d3ee;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* Philosophy Visual */
.philosophy-visual {
    text-align: center;
}

.philosophy-image {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.visual-caption {
    max-width: 800px;
    margin: 0 auto;
}

.visual-caption p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.visual-caption strong {
    color: #22d3ee;
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION - FIXED LAYOUT
   ======================================== */
.contact-section {
    background: #011A38;
    padding: 6rem 1rem;
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
}

/* Contact Form Styling */
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label,
.form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-input,
.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22d3ee;
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* reCAPTCHA styling */
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    margin-top: 1rem;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-message i {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.btn-submit {
    background: #22d3ee;
    color: #ffffff;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover:not(:disabled) {
    background: #1fb3d0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.3);
}

.btn-submit:disabled {
    background: rgba(34, 211, 238, 0.5);
    cursor: not-allowed;
    transform: none;
}

/* Map Section - Fixed Layout */
.map-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
    border-radius: 1rem;
}

/* "Open in Maps" Button Overlay - Centered */
.map-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(1, 26, 56, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #22d3ee;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.map-button:hover {
    background: rgba(34, 211, 238, 0.2);
    border-color: #ffffff;
    transform: translate(-50%, -50%) translateY(-3px);
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.4);
}

.map-button i {
    width: 1.25rem;
    height: 1.25rem;
    color: #22d3ee;
    transition: color 0.3s ease;
}

.map-button:hover i {
    color: #ffffff;
}

.map-button span {
    font-size: 1rem;
    font-weight: 600;
}

/* Mobile Responsiveness for Contact Section */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-wrapper {
        min-height: 400px;
    }
    
    .map-container {
        min-height: 400px;
    }
    
    .map-iframe {
        min-height: 400px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper h2 {
        font-size: 2rem;
    }
    
    .map-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .map-button i {
        width: 1.125rem;
        height: 1.125rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 4rem 1rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-form-wrapper h2 {
        font-size: 1.75rem;
    }
    
    .form-input,
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .map-button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        border-radius: 0.5rem;
    }
}
.contact-section {
    background: #011A38;
    padding: 6rem 1rem;
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22d3ee;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    background: #22d3ee;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1fb3d0;
    transform: translateY(-2px);
}

/* Map Section */
.contact-map h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-container {
    background: rgba(10, 39, 68, 0.6);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    height: 300px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
}

.contact-info strong {
    color: #22d3ee;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: #e8e8e8;
    padding: 6rem 1rem;
    position: relative;
}

.cta-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.cta-heading {
    font-family: 'League Gothic', 'Impact', 'Arial Black', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 0.95;
    color: #000000;
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #000000;
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 1.25rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   MOBILE RESPONSIVENESS
   ======================================== */
@media (max-width: 1024px) {
    .advantage-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .advantage-content {
        padding-right: 0;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .company-journey::before {
        left: 30px;
    }
    
    .journey-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 4rem;
    }
    
    .journey-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .journey-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 0.875rem;
        margin: 0;
    }
    
    .journey-content {
        margin: 0;
        width: 100%;
    }
    
    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .philosophy-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .advantage-title {
        font-size: 2.5rem;
    }
    
    .company-image {
        height: 300px;
    }
    
    .overlay-content h3 {
        font-size: 1.5rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-heading {
        font-size: 4rem;
    }
    
    .hero-content-wrapper {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .philosophy-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .advantage-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .journey-content {
        padding: 1.5rem;
    }
    
    .philosophy-card {
        padding: 1.5rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .principle-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .cta-heading {
        font-size: 3rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .btn-hero-outline {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

/* Footer Logo Image */
.footer-logo-image {
    height: 40px;
    width: 320px;
    display: block;
    transition: opacity 0.2s ease;
}

.footer-logo-image:hover {
    opacity: 0.8;
}

.footer-logo a {
    display: inline-block;
}

/* Mobile Logo Sizing */
@media (max-width: 768px) {
    .logo img,
    .footer-logo-image {
        height: 28px !important;
        width: auto;
    }
}

/* ========================================
   INLINE SEARCH BAR (Expandable)
   ======================================== */
.inline-search-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
}

.inline-search-input {
    width: 0;
    opacity: 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.5rem 0;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.inline-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.search-icon-btn {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.search-icon-btn i {
    width: 1.25rem;
    height: 1.25rem;
    transition: color 0.3s ease;
}

.search-icon-btn:hover i {
    color: #22d3ee;
}

.inline-search-container.expanded .inline-search-input {
    width: 180px;
    opacity: 1;
    border-bottom-color: #22d3ee;
    padding-right: 0.5rem;
    pointer-events: auto;
    margin-right: 0.5rem;
}

.inline-search-container.expanded .search-icon-btn {
    transform: translateX(-10px);
}

.inline-search-container.expanded .search-icon-btn i {
    color: #22d3ee;
}

/* Search expanded state */
.nav-links.search-active > a,
.nav-links.search-active > .spacer,
.nav-links.search-active > .btn-get-started {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links.search-active .inline-search-container {
    opacity: 1;
    pointer-events: auto;
}

.nav-links.search-active .inline-search-container.expanded .inline-search-input {
    width: 320px;
}

.nav-links > a,
.nav-links > .spacer,
.nav-links > .btn-get-started {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.2s ease;
}

/* Mobile: Hide inline search */
@media (max-width: 767px) {
    .inline-search-container {
        display: none;
    }
}