/**
 * Common CSS Styles
 * Shared styles across all pages
 */

/* Contact Info Bar */
.contact-info {
    background: var(--primary-color);
    padding: 10px 0;
    color: var(--white);
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.contact-info .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-details {
    display: flex;
    gap: 30px;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 0.8;
}

.contact-details a i {
    font-size: 0.85rem;
}

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

.social-links a {
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Header Auth Buttons */
.header-content nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.btn-login,
.btn-signup {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-signup {
    background: var(--logo-yellow);
    color: var(--primary-color);
    border: 2px solid var(--logo-yellow);
}

.btn-signup:hover {
    background: #FFC947;
    border-color: #FFC947;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 209, 100, 0.4);
}

@media (max-width: 992px) {
    .header-auth-buttons {
        display: none; /* Hide on mobile, can be shown in mobile menu if needed */
    }
}

/* Common Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Common Button Styles */
.btn-primary,
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover,
.cta-button:hover {
    background: var(--highlight);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--secondary-color);
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--highlight) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-top: 38px;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.services-hero .underline {
    width: 100px;
    height: 4px;
    background: var(--white);
    margin: 20px auto;
    border-radius: 2px;
}

.services-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--highlight) 100%);
    padding: 100px 0 80px;
    color: var(--white);
    text-align: center;
    margin-top: 38px;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-hero-content .underline {
    width: 100px;
    height: 4px;
    background: var(--white);
    margin: 20px auto;
    border-radius: 2px;
}

.contact-hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Info Box */
.info-box {
    background: #e7f3ff;
    border-left: 4px solid var(--secondary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.info-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #495057;
}

.info-box ul li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-yes {
    background: #d4edda;
    color: #155724;
}

.badge-no {
    background: #f8d7da;
    color: #721c24;
}

.badge-required {
    background: #fff3cd;
    color: #856404;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-hero h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        font-size: 0.8rem;
        padding: 8px 0;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .services-hero,
    .contact-hero {
        padding: 60px 0;
    }

    .services-hero h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero p,
    .contact-hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .services-hero h1,
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
}


