/* Reset and 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: #333;
    background-color: #fff;
    border: 2px solid #000;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

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

/* Header Styles */
.header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 80px;
    width: auto;
    max-width: 300px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}



.header-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.header-link:hover {
    color: #fff;
}

.header-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.header-link:hover::after {
    width: 100%;
}

.header-contact-btn {
    background: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
    border: 1px solid #000;
}

.header-contact-btn:hover {
    opacity: 0.9;
    color: #000;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Trust Section */
.trust-section {
    background: #fff;
    color: #000;
    padding: 4rem 0;
    text-align: center;
}



.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
}

.trust-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #333;
}

/* Solutions Section */
.solutions-section {
    padding: 4rem 0;
    background-color: #fff;
}



.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.solution-box {
    background: #fff;
    color: #000;
    padding: 2rem;
    border: 1px solid #000;
    border-radius: 10px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.solution-box:hover {
    opacity: 0.9;
}

.solution-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.solution-box p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

/* Metrics Section */
.metrics {
    padding: 4rem 0;
    background-color: #fff;
}



.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #000;
    border-radius: 10px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.metric-card:hover {
    opacity: 0.9;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Brands Section */
.brands {
    padding: 4rem 0;
    background-color: #fff;
}



.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.brand-card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.brand-card:hover {
    opacity: 0.9;
}

.brand-header {
    padding: 2rem 2rem 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #000;
}

.brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: center;
}

.brand-content {
    padding: 0 2rem 2rem;
}

.brand-image {
    margin: 1.5rem 0;
}

.brand-promo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.brand-description p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Page Styles */
.contact {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.contact-boxes {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    gap: 2rem;
}

.team-box {
    grid-column: span 1;
}

.team-box.centered {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
}

.info-box {
    grid-column: span 1;
}

.contact-box {
    background: #fff;
    padding: 2rem;
    border: 1px solid #000;
    border-radius: 10px;
    text-align: center;
}

.contact-box h3 {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 0rem;
    text-align: left;
}

.contact-item strong {
    color: #000;
    font-weight: 600;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

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

.team-member {
    display: flex;
    align-items: center;
    text-align: left;
}

.team-info {
    display: flex;
    flex-direction: column;
}

.team-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 1rem;
    border: 1px solid #000;
    border-radius: 50%;
}

.team-member h3 {
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.team-member p {
    color: #333;
    line-height: 1.3;
    margin: 0;
    font-size: 0.9rem;
}

.team-email {
    margin-top: 0.5rem;
}

.team-email a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.team-email a:hover {
    text-decoration: underline;
}

.address-section {
    text-align: center;
    padding: 1rem 0;
}

.address-section p {
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.address-section a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.address-section a:hover {
    text-decoration: underline;
}

.email-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Legal Pages Styles */
.legal-content {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.legal-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin: 2rem 0 1rem;
}

.legal-wrapper p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-wrapper a {
    color: #000;
    text-decoration: none;
}

.legal-wrapper a:hover {
    text-decoration: underline;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.footer-copyright {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 1rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    color: #fff;
}



/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile Styles */
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .header-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
    }
    
    .header-link {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        margin-right: 1rem;
    }
    
    .header-contact-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin-left: 1rem;
    }
    
    .logo img {
        height: 60px;
        max-width: 250px;
    }
    
    /* Trust Mobile Styles */
    .section-title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .trust-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* Solutions Mobile Styles */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Metrics Mobile Styles */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1.5rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    /* Brands Mobile Styles */
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brand-card {
        margin: 0 1rem;
    }
    
    .brand-header,
    .brand-content {
        padding: 1.5rem;
    }
    
    .brand-promo {
        height: 150px;
    }
    
    /* Contact Mobile Styles */
    .contact-boxes {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .team-box {
        grid-column: span 1;
    }
    
    .full-width-box {
        grid-column: 1 / -1;
    }
    
    .contact-box {
        padding: 0.5rem;
    }
    
    .email-section {
        gap: 0.5rem;
    }
    
    /* Footer Mobile Styles */
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* Legal Mobile Styles */
    .legal-wrapper {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-wrapper h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Header Extra Small Mobile */
    .header-content {
        padding: 0.5rem 0;
    }
    
    .header-links {
        gap: 1rem;
    }
    
    .header-link {
        font-size: 0.8rem;
        margin-right: 0.8rem;
    }
    
    .header-contact-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-left: 0.8rem;
    }
    
    .logo img {
        height: 50px;
        max-width: 200px;
    }
    
    /* Metrics Extra Small Mobile */
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    /* Trust Extra Small Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .trust-description {
        font-size: 1rem;
    }
    
    /* Contact Extra Small Mobile */
    .contact-title {
        font-size: 2rem;
    }
    
    /* Legal Extra Small Mobile */
    .legal-wrapper h1 {
        font-size: 1.8rem;
    }
    
    /* Brand Cards Extra Small Mobile */
    .brand-card {
        margin: 0 0.5rem;
    }
    
    .brand-header,
    .brand-content {
        padding: 1rem;
    }
    
    .brand-promo {
        height: 120px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Focus styles for accessibility */
.nav-link:focus,
.submit-btn:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
} 