/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.logo-link {
    text-decoration: none;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f0f0f0;
    transform: translateY(-2px);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    min-width: 100%;
    min-height: 100%;
}


/* Services Section */
.services {
    padding: 100px 0 0;
    background: white;
    position: relative;
}

.services-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.services-logo {
    text-align: center;
    margin-bottom: 30px;
}

.long-logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
}

.services-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sister-sites {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto 0;
}

.site-column {
    position: relative;
}

.site-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.site-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.site-card:hover {
    transform: translateY(-10px);
}

.site-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.site-card:hover .site-logo {
    transform: scale(1.1);
}

.site-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.site-card p {
    color: #666;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 0 0 100px;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    text-align: left;
}

.contact-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.contact-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    height: fit-content;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #333;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #333;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.form-control::placeholder {
    color: #888;
    font-weight: 300;
}

.form-control:focus::placeholder {
    color: #aaa;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background-color: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-message {
    margin-top: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
}

.form-message.success {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #4ade80;
}

.form-message.error {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #f87171;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Newsletter Section */
.newsletter-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.newsletter-subtitle {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    align-items: stretch;
    width: 100%;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background-color: #333;
    border: 2px solid #555;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background-color: #444;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-input::placeholder {
    color: #888;
    font-weight: 300;
}

.newsletter-button {
    padding: 12px 24px;
    background-color: white;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.newsletter-button:active {
    transform: translateY(0);
}

.footer-section {
    text-align: left;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Privacy Policy Page */
.privacy-section {
    padding: 120px 0 100px;
    background: white;
    min-height: 100vh;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.privacy-updated {
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
    font-style: italic;
}

.privacy-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 15px;
    color: #333;
}

.privacy-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.privacy-text ul {
    margin: 15px 0 20px 20px;
}

.privacy-text li {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

/* Terms of Service Page */
.terms-section {
    padding: 120px 0 100px;
    background: white;
    min-height: 100vh;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.terms-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.terms-updated {
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
    font-style: italic;
}

.terms-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 15px;
    color: #333;
}

.terms-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.terms-text ul {
    margin: 15px 0 20px 20px;
}

.terms-text li {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero-video {
        object-fit: cover;
        object-position: center;
    }
    
    
    .contact-title {
        font-size: 2rem;
    }
    
    .long-logo {
        max-height: 90px;
    }
    
    .services-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .sister-sites {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .site-card {
        padding: 30px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .privacy-title,
    .terms-title {
        font-size: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .newsletter-button {
        width: 100%;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    
    .services {
        padding: 60px 0 10px;
    }
    
    .contact {
        padding: 10px 0 60px;
    }
    
    .services-title,
    .contact-title {
        font-size: 1.8rem;
    }
}

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

