
/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

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

/* === HEADER === */
header {
    background: #ffffff;
    border-bottom: 3px solid #F2A900;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-top {
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.company-name {
    font-size: 14px;
    font-weight: 600;
    color: #003082;
    display: none;
}

@media (min-width: 768px) {
    .company-name {
        display: inline;
    }
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 12px 16px;
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    color: #F2A900;
}

.main-nav .contact-btn {
    background: #F2A900;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    padding: 10px 20px;
    margin-left: 8px;
}

.main-nav .contact-btn:hover {
    background: #FFB800;
    color: #ffffff;
}

.has-dropdown > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.2s;
}

.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 999;
    margin-top: 8px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 16px;
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: #f9fafb;
    color: #F2A900;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    margin-top: 0;
}

.hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,48,130,.85) 0%, rgba(0,80,160,.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 40px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: #F2A900;
    color: #ffffff;
}

.cta-primary:hover {
    background: #FFB800;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 169, 0, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #F2A900;
}

.cta-secondary:hover {
    background: #F2A900;
    color: #ffffff;
}

/* === TRUST BAR === */
.trust-bar {
    background: #f9fafb;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 900;
    color: #F2A900;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === INDUSTRY SELECTOR === */
.industry-selector-section {
    padding: 80px 0;
    background: #ffffff;
}

.industry-selector-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #1f2937;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

.industry-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.industry-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.industry-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 700;
    padding: 20px 20px 8px;
    color: #003082;
}

.industry-card p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #6b7280;
}

/* === SOLUTIONS GRID === */
.solutions-grid-section {
    padding: 80px 0;
    background: #f9fafb;
}

.solutions-grid-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #1f2937;
}

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

.solution-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.solution-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #003082;
}

.solution-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    color: #F2A900;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.card-link:hover {
    color: #FFB800;
    transform: translateX(4px);
    display: inline-block;
}

/* === WHY CHOOSE US === */
.why-choose-us-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-choose-us-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #1f2937;
}

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

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-number {
    font-size: 40px;
    font-weight: 900;
    color: #F2A900;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF8E8;
    border-radius: 50%;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* === PARTNERS SECTION === */
.partners-section {
    padding: 80px 0;
    background: #003082;
    color: #ffffff;
}

.partners-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #ffffff;
}

.partners-section .section-subtitle {
    color: #d1d5db;
}

.partners-scroll {
    margin-top: 50px;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 40px;
    overflow-x: hidden;
    padding: 0 40px;
    animation: scroll-partners 30s linear infinite;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-scroll:hover .partners-track {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 180px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    min-width: 180px;
    transition: all 0.3s;
}

.partner-logo:hover {
    background: rgba(255,255,255,0.2);
    border-color: #F2A900;
    color: #F2A900;
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 50px;
    color: #1f2937;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 4px solid #F2A900;
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-quote::before {
    content: '"';
    font-size: 40px;
    color: #F2A900;
    line-height: 0;
    margin-right: 4px;
}

.testimonial-author {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

/* === FAQ === */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 50px;
    color: #1f2937;
}

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

.faq-item {
    padding: 24px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #F2A900;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #F2A900;
}

.faq-answer {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* === CTA SECTION === */
.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #003082 0%, #004da8 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .cta-primary {
    background: #F2A900;
    color: #ffffff;
    font-size: 18px;
    padding: 16px 40px;
}

/* === FOOTER === */
.site-footer {
    background: #1f2937;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #F2A900;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #F2A900;
}

.footer-section p {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .main-nav a {
        width: 100%;
    }
    
    .container {
        padding: 0 20px;
    }
    
    h2 {
        font-size: 28px !important;
    }
}
