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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-link:hover {
    color: #007bff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)), url('/images/new-hero.jpg') center center/cover;
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Keep brand name together when present in hero title */
.brand-nowrap { white-space: nowrap; }

.btn-primary {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Reviews Section */
.reviews {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.rating {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: inline-block;
}

.stars {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 10px;
    display: block;
}

.rating h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #333;
}

.rating p {
    color: #666;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

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

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 80px 0;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    padding: 20px;
    font-size: 1.3rem;
    text-align: center;
    color: #333;
}

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

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Process Section */
.process {
    padding: 80px 0;
}

.process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.process-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

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

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.process-step p {
    color: #666;
    font-size: 1rem;
}

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

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color:#333;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Keep contact form width consistent when status alert is present */
.contact-content .contact-info { grid-column: 1; grid-row: 1; }
.contact-content .contact-form { grid-column: 2; grid-row: 1; }
.contact-content .alert { grid-column: 1 / -1; grid-row: 2; }

@media (max-width: 768px) {
    .contact-content .contact-info,
    .contact-content .contact-form,
    .contact-content .alert { grid-column: 1; grid-row: auto; }
}

.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.4;
}
.alert-success {
    background: #e8f7ee;
    color: #17643c;
    border: 1px solid #c7ebd4;
}
.alert-error {
    background: #fdecea;
    color: #8a1f17;
    border: 1px solid #f5c6c3;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form button {
    background: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #0056b3;
}

/* Certification Section */
.certification {
    padding: 80px 0;
}

.certification h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.cert-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.cert-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.cert-logo {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 10px;
    isolation: isolate; /* limit any blending to this container */
}

.cert-logo img {
    width: 220px;
    height: auto;
    display: block;
    filter: none;
    image-rendering: auto;
}

/* Almega text wordmark (image-less) */
.cert-logo {
    gap: 12px;
}

.almega-divider {
    display: inline-block;
    width: 1px;
    height: 28px;
    background: #dcdcdc;
}

.almega-wordmark {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: #111;
    line-height: 1;
    display: inline-block;
}

@media (max-width: 768px) {
    .almega-wordmark {
        font-size: 1.6rem;
    }
    .almega-divider {
        height: 22px;
    }
}

/* ===============================
   News Section
   =============================== */
.news {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.news h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    margin: 20px auto;
    border-radius: 2px;
}

.news-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.news-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.news-article:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 0.9rem;
    color: #3498db;
    font-weight: 600;
    display: inline-block;
    background: rgba(52, 152, 219, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

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

.news-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-link:hover {
    color: #2980b9;
    gap: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .news {
        padding: 60px 0;
    }
    
    .news h2 {
        font-size: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 20px;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content h3 {
        font-size: 1.2rem;
    }
    
    .news-intro {
        margin-bottom: 40px;
        padding: 0 20px;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

/* Modal Styles */
.modal[aria-hidden="true"] { display: none; }
.modal[aria-hidden="false"] { display: block; }
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
}
.modal-content {
    position: relative;
    background: #fff;
    color: #222;
    max-width: 640px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.35);
    padding: 34px 40px 38px;
    font-size: 1rem;
    line-height: 1.55;
    animation: modalFade 0.35s ease;
}
.modal-content h2 {
    margin-top: 0;
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #111;
}
.modal-content p { margin-bottom: 18px; }
.policy-points { margin: 0 0 18px 0; padding-left: 20px; }
.policy-points li { margin-bottom: 6px; color: #444; }
.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: color .2s ease;
}
.modal-close:hover { color: #000; }
@keyframes modalFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px){
  .modal-content { padding: 28px 24px 30px; }
  .modal-content h2 { font-size:1.4rem; }
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
}

.footer h4 {
    margin-bottom: 20px;
    color: white;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

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

.footer ul li a:hover {
    color: #007bff;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #ccc;
}

.footer-contact a {
    color: #007bff;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #007bff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: auto;
        max-width: 280px;
        text-align: center;
        padding: 12px 22px;
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cert-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        font-weight: 500;
    }
    
    /* Service Cards Mobile Fix */
    .service-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .service-card img {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .service-card .btn {
        display: inline-block;
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        width: auto;
        margin-top: 10px;
    }
    
    /* Service Detail Cards Mobile */
    .service-detail-card {
        margin-bottom: 30px;
        padding: 20px;
    }
    
    .service-detail-card img {
        height: 200px;
        margin-bottom: 20px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .service-content p {
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .service-content ul {
        margin-bottom: 20px;
    }
    
    .service-content ul li {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .service-content .btn {
        display: inline-block;
        padding: 12px 24px;
        font-size: 1rem;
        width: auto;
        text-align: center;
        margin-top: 15px;
    }
}

/* Additional Page Styles */

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
}

.services-detail .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.service-detail-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-detail-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.service-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-content ul li {
    margin-bottom: 8px;
    color: #666;
}

.service-content .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.service-content .btn:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

.why-choose-us, .what-we-offer {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.benefit, .offer-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit i, .offer-item i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.benefit h3, .offer-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-story {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.about-story p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

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

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.team-section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: #007bff;
    color: white;
    border-radius: 10px;
}

.stat h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat p {
    font-size: 1.1rem;
    margin: 0;
}

.about-certifications {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Careers Page */
.why-work-with-us {
    padding: 80px 0;
}

.open-positions {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.position-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.position-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.position-details {
    margin-bottom: 20px;
}

.position-details p {
    margin-bottom: 8px;
    color: #666;
}

.position-description h4 {
    margin-bottom: 15px;
    color: #333;
}

.position-description ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.position-description ul li {
    margin-bottom: 8px;
    color: #666;
}

.no-positions {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.no-positions h3 {
    margin-bottom: 20px;
    color: #333;
}

.application-form {
    padding: 80px 0;
}

.job-application-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.file-upload {
    margin-bottom: 20px;
}

.file-upload label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
}

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

.contact-method {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-method i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-method p {
    margin-bottom: 8px;
    color: #666;
}

.contact-method a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
}

.service-areas {
    padding: 80px 0;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-areas > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

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

.area-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.areas-note {
    text-align: center;
    font-size: 1rem;
    color: #666;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

/* Individual Service Pages */
.service-detail {
    padding: 80px 0;
    background: #ffffff;
}

.service-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.3;
}

.service-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-features h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.service-features ul li i {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
    background: #f8f9fa;
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid #007bff;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 1rem;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Benefits Section */
.benefits {
    background: #f8f9fa;
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

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

.benefit {
    background: white;
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    background: #007bff;
    color: white;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    padding: 25px;
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Service CTA Section */
.service-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #007bff;
}

/* Mobile Responsive for new pages */
@media (max-width: 768px) {
    .services-detail .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card img {
        height: 200px;
    }
    
    .service-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-image img {
        height: 250px;
    }
    
    .service-info h2 {
        font-size: 2rem;
    }
    
    .service-intro {
        font-size: 1.1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid, .offer-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid, .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 250px;
    }
    
    .service-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .faq h2, .process h2, .pricing h2, .benefits h2 {
        font-size: 2rem;
    }
}

/* Additional Hemstädning Styles */
.service-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Service How It Works Section */
.service-how-it-works {
    background: #f8f9fa;
    padding: 80px 0;
}

.service-how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.section-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.checklist-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.checklist-link:hover {
    border-bottom-color: #007bff;
    text-decoration: none;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Service Weekly Section */
.service-weekly {
    padding: 80px 0;
    background: white;
}

.service-weekly h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.weekly-cta {
    text-align: center;
    margin-top: 40px;
}

/* Service Included Section */
.service-included {
    background: #f8f9fa;
    padding: 80px 0;
}

.service-included h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

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

.included-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.included-item h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.included-item ul {
    list-style: none;
    padding: 0;
}

.included-item ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.included-item ul li i {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Contact Info in CTA (scoped to CTA section to avoid global override) */
.service-cta .contact-info {
    margin-top: 40px;
    text-align: center;
}

.service-cta .contact-info p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.service-cta .contact-info a {
    color: white;
    text-decoration: none;
}

.service-cta .contact-info a:hover {
    text-decoration: underline;
}
