/* Reset ve Genel Stiller */
:root {
    --primary-color: #2e7d32;
    --secondary-color: #4caf50;
    --accent-color: #81c784;
    --text-color: #333;
    --light-text: #fff;
    --background-light: #f5f5f5;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 2rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: bold;
}

.mobile-menu {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

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

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

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

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

.service-preview-content {
    padding: 20px;
    text-align: center;
}

/* Why Choose Us */
.why-us {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.why-us-text h2 {
    margin-bottom: 30px;
}

.why-us-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-us-list i {
    color: var(--primary-color);
}

.why-us-image img {
    width: 100%;
    border-radius: 10px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

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

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
}

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

/* Contact Form */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.info-items {
    display: grid;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

/* Map */
.map-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        margin-top: 1rem;
    }

    .social-links a {
        margin: 0 0.5rem;
    }
}

/* Page Hero */
.page-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../img/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    margin-top: 76px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: bold;
    margin: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--light-text);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--background-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* Detailed Services Page */
.services-detailed {
    padding: 4rem 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse .service-content {
    direction: ltr;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.service-placeholder {
    background-color: var(--background-light);
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #444;
    font-size: 1.05rem;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Service Packages */
.service-packages {
    margin-top: 4rem;
    text-align: center;
}

.service-packages h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
}

.package-card.featured::before {
    content: "En Çok Tercih Edilen";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

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

.package-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.package-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-card ul li {
    margin: 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .service-image img {
        height: 300px;
    }

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

    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .services-detailed {
        padding: 2rem 0;
    }

    .service-content h2 {
        font-size: 1.8rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .service-features li {
        font-size: 1rem;
    }

    .service-packages h2 {
        font-size: 1.8rem;
    }

    .package-card h3 {
        font-size: 1.3rem;
    }
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Projeler */
.projects {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

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

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

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.project-content {
    padding: 20px;
}

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

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

.project-details {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
}

.project-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-details i {
    color: #4CAF50;
}

/* Video Kartları */
.project-video {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #000;
}

.project-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Video */
@media (max-width: 768px) {
    .project-video {
        height: 200px;
    }
}

/* Video Kontrolleri */
video::-webkit-media-controls {
    background-color: rgba(0, 0, 0, 0.5);
}

video::-webkit-media-controls-panel {
    padding: 0 5px;
}

video::-webkit-media-controls-play-button {
    color: #fff;
}

/* Lightbox Özelleştirme */
.lb-data .lb-caption {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 200px;
    }

    .project-content h3 {
        font-size: 1.3rem;
    }

    .project-details {
        flex-direction: column;
        gap: 10px;
    }
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: var(--background-light);
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

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

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 3rem 0 1rem;
}

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

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        margin-top: 1rem;
    }

    .social-links a {
        margin: 0 0.5rem;
    }
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .page-hero {
        height: 30vh;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .service-image img {
        height: 300px;
    }

    .package-card.featured {
        transform: none;
    }
}

/* Packages Page Styles */
.packages {
    padding: 4rem 0;
}

.package-comparison {
    margin-bottom: 6rem;
}

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

.package-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.package-header {
    background: var(--background-light);
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 1.1rem;
    color: var(--text-color);
}

.period {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.package-features {
    padding: 2rem;
}

.package-features ul {
    list-style: none;
}

.package-features li {
    margin: 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.package-features i {
    margin-right: 1rem;
    font-size: 1.1rem;
}

.package-features i.fa-check {
    color: var(--primary-color);
}

.package-features i.fa-times {
    color: #dc3545;
}

.package-footer {
    padding: 2rem;
    text-align: center;
    background: var(--background-light);
}

/* Package Features Section */
.package-features-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Responsive Design for Packages Page */
@media (max-width: 768px) {
    .package-card.featured {
        transform: none;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 0 1rem 0;
    }

    .package-badge {
        right: -3rem;
        font-size: 0.7rem;
    }
}

/* Career Page Styles */
.career-section {
    padding: 4rem 0;
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.career-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.position-list {
    list-style: none;
    margin: 2rem 0;
}

.position-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.position-list i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.position-list h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefits {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
}

.benefits i {
    color: var(--primary-color);
    margin-right: 1rem;
}

/* Application Form */
.application-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.application-form h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.career-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.career-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.career-form input,
.career-form select,
.career-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.career-form textarea {
    resize: vertical;
}

.career-form .file-upload {
    position: relative;
}

.career-form .file-upload input {
    padding: 0.5rem;
    background: var(--background-light);
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input {
    width: auto !important;
    margin-right: 0.5rem;
}

.career-form button {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design for Career Page */
@media (max-width: 992px) {
    .career-content {
        grid-template-columns: 1fr;
    }

    .career-info {
        order: 2;
    }

    .application-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .career-form .form-row {
        grid-template-columns: 1fr;
    }

    .position-list li {
        flex-direction: column;
        text-align: center;
    }

    .position-list i {
        margin: 0 0 1rem 0;
    }
}

/* Facilities Section Styles */
.facilities-section {
    padding: 4rem 0;
}

.facilities-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.facilities-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.facility-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.facility-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.facility-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.facility-content ul {
    list-style: none;
}

.facility-content ul li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.facility-content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.facility-content ul li strong {
    color: var(--text-color);
    font-weight: 600;
}

.facility-content ul ul {
    margin-left: 1rem;
    margin-top: 0.5rem;
}

/* Technical Details */
.technical-details {
    background: var(--background-light);
    padding: 4rem 0;
    margin: 4rem -2rem;
}

.technical-details h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.detail-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.detail-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive Design for Facilities Page */
@media (max-width: 768px) {
    .facility-card {
        text-align: center;
    }

    .facility-content ul li {
        text-align: left;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Grants Section Styles */
.grants-section {
    padding: 4rem 0;
    background: var(--background-light);
    margin: 2rem -2rem;
}

.grants-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.info-cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.info-icon {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.grant-item {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
}

.grant-item.special {
    border-color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.05);
}

.percentage {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.grant-item ul {
    text-align: left;
    list-style: none;
    margin-top: 1rem;
}

.grant-item ul li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.grant-item ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Area Requirements Styles */
.area-requirements {
    margin-top: 4rem;
    padding: 0 2rem;
}

.area-requirements h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.requirement-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card ul li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.requirement-card ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.requirement-card ul ul {
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

/* Responsive Design for Grants Section */
@media (max-width: 768px) {
    .grants-section {
        margin: 2rem -1rem;
        padding: 2rem 1rem;
    }

    .grant-details {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .info-cards {
        padding: 0 1rem;
    }
}

/* Career Requirements Section */
.career-requirements {
    padding: 4rem 0;
    background: var(--background-light);
}

.career-requirements h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.requirement-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.requirement-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.requirement-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.requirement-card ul {
    list-style: none;
    text-align: left;
}

.requirement-card ul li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.requirement-card ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Career Form Section */
.career-form-section {
    padding: 4rem 0;
}

.career-form-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Form Responsive Design */
@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .requirement-card {
        padding: 1.5rem;
    }
}

/* Maintenance Calendar Styles */
.maintenance-calendar {
    padding: 4rem 0;
    background: var(--background-light);
}

.maintenance-calendar .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

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

.calendar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendar-scroll {
    overflow-x: auto;
    padding: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
}

.calendar-scroll::-webkit-scrollbar {
    height: 8px;
}

.calendar-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.calendar-scroll::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.maintenance-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    font-size: 1.05rem;
}

.maintenance-table th,
.maintenance-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.maintenance-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    white-space: nowrap;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: none;
}

.maintenance-table th:first-child {
    border-top-left-radius: 8px;
}

.maintenance-table th:last-child {
    border-top-right-radius: 8px;
}

.maintenance-table tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.maintenance-table tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

.maintenance-table td.task {
    text-align: left;
    font-weight: 600;
    background: #f8f9fa;
    white-space: nowrap;
    color: #2c3e50;
    border-left: 4px solid var(--primary-color);
    min-width: 180px;
}

.maintenance-table td.active {
    background: rgba(var(--primary-rgb), 0.08);
    position: relative;
}

.maintenance-table td.active i {
    color: var(--primary-color);
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

.maintenance-table tr:nth-child(even) {
    background-color: #fafafa;
}

.maintenance-table tr:hover {
    background-color: #f5f9ff;
}

.calendar-legend {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 2rem;
    background: #fafafa;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.legend-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.legend-icon.active {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
}

.legend-text {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .maintenance-calendar {
        padding: 2rem 0;
    }

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

    .maintenance-calendar .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .calendar-wrapper {
        margin: 0 1rem;
        border-radius: 12px;
    }

    .calendar-scroll {
        padding: 1rem 0.5rem;
    }

    .maintenance-table {
        font-size: 0.95rem;
    }

    .maintenance-table th,
    .maintenance-table td {
        padding: 1rem 0.75rem;
    }

    .maintenance-table td.task {
        min-width: 150px;
    }

    .legend-item {
        padding: 0.4rem 0.8rem;
    }

    .legend-text {
        font-size: 0.9rem;
    }
}
