/** app.css */
/* Color Scheme Variables */
:root {
    --primary-blue: #1763ac;
    --primary-blue-dark: #0f4a7e;
    --primary-blue-light: #2080d5;
    --text-dark: #1a2332;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

/* General Styles */
body {
    padding-top: 70px; /* Account for fixed navbar */
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}

.navbar-logo {
    height: 56px;
    width: auto;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 400;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    color: #2d3748;
    transition: color 0.2s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

/* Custom Dropdown Arrow */
.navbar-nav .dropdown-toggle::after {
    display: none;
}

.navbar-nav .dropdown-toggle {
    position: relative;
    padding-right: 1.5rem !important;
}

.navbar-nav .dropdown-toggle::before {
    content: '';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--text-dark);
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-toggle:hover::before {
    border-top-color: var(--primary-blue);
}

.navbar-nav .show > .dropdown-toggle::before {
    transform: translateY(-50%) rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
}

/* CTA Button */
.cta-btn {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(23, 99, 172, 0.2);
}

.cta-btn:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 99, 172, 0.3);
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-padding-small {
    padding: 60px 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-header {
    margin-bottom: 3rem;
}

.coming-soon {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Products Section */
.products-section {
    background-color: var(--bg-light);
}

.products-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.product-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 150px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.product-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Our Mission Section */
.mission-quote {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-style: italic;
}

.mission-video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
}

.mission-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Team Section */
.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    overflow: hidden;
    max-height: 240px;
    position: relative;
}

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

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

.team-info {
    padding: 1.5rem;
    text-align: center;
    background: #fff;
    position: relative;
    border-top: 1px solid #e8eef5;
}

.team-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.team-email {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
}

.team-card:hover .team-email {
    opacity: 1;
    visibility: visible;
}

.team-email:hover {
    background-color: var(--primary-blue-dark);
    transform: translateX(-50%) scale(1.1);
}

.team-email i {
    font-size: 1rem;
}

/* Footer Styles */
.footer {
    margin-top: auto;
    background-color: var(--text-dark) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 0.5rem;
}

.footer-link:hover {
    color: var(--primary-blue-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

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

.social-icon:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .social-links {
        justify-content: center;
    }
    
    .footer-text {
        text-align: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px rgba(23, 99, 172, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(23, 99, 172, 0.4);
}

.scroll-to-top i {
    font-size: 1.5rem;
}

/* Contact Section */
.contact-quote {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-style: italic;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-details {
    margin-top: 2rem;
}

.contact-text-only {
    margin-bottom: 1.5rem;
}

.contact-text-only h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-text-only p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-text-only a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text-only a:hover {
    color: var(--primary-blue);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form .form-control {
    border: 1px solid #d1d9e3;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: white;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(23, 99, 172, 0.1);
    outline: none;
    background-color: white;
}

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

.contact-form .btn-submit {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(23, 99, 172, 0.2);
}

.contact-form .btn-submit:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 99, 172, 0.3);
}

.contact-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-messages {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-messages.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-messages.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* reCAPTCHA Center */
.g-recaptcha {
    display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 1139px) {
    .navbar {
        padding: 0.35rem 0;
    }
    
    .navbar-nav {
        padding-top: 1rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .cta-btn {
        margin-top: 1rem;
    }
    
    .navbar-logo {
        height: 52px;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 0.35rem 0;
    }
    
    .navbar-nav {
        padding-top: 1rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .cta-btn {
        margin-top: 1rem;
    }
    
    .navbar-logo {
        height: 52px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}