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

:root {
    /* Theme Colors - Based on RGP Logo */
    --primary-green: #52C41A;
    --secondary-green: #4CAF50;
    --accent-yellow: #FFD700;
    --dark-green: #389E0D;
    --light-green: #F6FFED;
    
    /* Neutral Colors */
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --background-white: #FFFFFF;
    --background-light: #F8F9FA;
    --border-color: #E8E8E8;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 8px;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--background-white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition-medium);
}

.navbar {
    padding: 15px 0;
}

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

.nav-logo .logo {
    height: 50px;
    width: auto;
    transition: var(--transition-medium);
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition-fast);
}

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

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition-fast);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Sections */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    /* Background layers: gradient on top, image behind */
    background-image: 
        linear-gradient(135deg, rgba(3, 146, 3, 0.795), rgba(82, 204, 1, 0.733)),
        url('../uploads/home_hero.jpeg'); /* <-- Adjust path if needed */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-text {
    text-align: center;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    opacity: 0.95;
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--accent-yellow);
    text-align: center;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FFD700;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23FFD700;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="300" r="150" fill="url(%23a)"/><circle cx="800" cy="700" r="200" fill="url(%23a)"/><circle cx="600" cy="200" r="100" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

/* Different hero backgrounds for each page */
.about-hero {
     background-image: 
        linear-gradient(135deg, rgba(0, 150, 0, 0.7), rgba(0, 100, 0, 0.7)),
        url('../uploads/about_hero.jpeg'); /* make sure path is correct */
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    

}

.services-hero {
     background-image: 
        linear-gradient(135deg, rgba(0, 150, 0, 0.7), rgba(0, 100, 0, 0.7)),
        url('../uploads/services_hero.jpg'); /* make sure path is correct */
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.careers-hero {
     background-image: 
        linear-gradient(135deg, rgba(0, 150, 0, 0.7), rgba(0, 100, 0, 0.7)),
        url('../uploads/careers_hero.jpg'); /* make sure path is correct */
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero {
     background-image: 
        linear-gradient(135deg, rgba(0, 150, 0, 0.7), rgba(0, 100, 0, 0.7)),
        url('../uploads/contactus.jpeg'); /* make sure path is correct */
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-medium);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* What We Do Section */
.what-we-do {
    background: var(--background-light);
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.service-image {
    text-align: center;
    margin-bottom: 30px;
}

.service-image i {
    font-size: 4rem;
    color: var(--primary-green);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: justify;
}

/* About Section */
.about-section {
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission, .vision {
    padding: 30px;
    background: var(--light-green);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-green);
}

.mission h3, .vision h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mission i, .vision i {
    color: var(--primary-green);
}

.about-image {
    text-align: center;
}

.company-logo {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

/* About Page Specific */
.about-content-section {
    background: var(--background-light);
}

.about-details {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

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

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition-medium);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: justify;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    text-align: center;
}

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

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

/* Services Page */
.services-content {
    background: var(--background-light);
}

.service-detail {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
    
}

.service-detail .service-icon {
    text-align: center;
    margin-bottom: 30px;
}

.service-detail .service-icon i {
    font-size: 4rem;
    color: var(--primary-green);
}

.service-detail h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.service-detail p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

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

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.additional-services {
    margin-top: 60px;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
}

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

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition-medium);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.advantage-card p {
    color: var(--text-light);
}

/* Careers Page */
.careers-content {
    background: var(--background-light);
}

.career-intro {
    margin-bottom: 60px;
}

.career-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.career-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

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

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.job-openings h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.job-list {
    display: grid;
    gap: 30px;
}

.job-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.job-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.job-type {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.job-requirements h5 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.job-requirements ul {
    color: var(--text-light);
    margin-left: 20px;
    margin-bottom: 15px;
}

.job-requirements li {
    margin-bottom: 5px;
}

.job-location {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.job-location i {
    margin-right: 5px;
}

.application-section {
    margin-top: 60px;
}

.application-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.application-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.application-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.contact-details {
    background: var(--light-green);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

.contact-details p {
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-details i {
    color: var(--primary-green);
}

/* Contact Page */
.contact-content {
    background: var(--background-light);
}

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

.contact-info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info-section > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: justify;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.career-contact {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.career-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.career-info i {
    color: var(--primary-green);
}

.career-info p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.career-info a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

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

/* Contact Form */
.form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.form-container h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(82, 196, 26, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-message {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    text-align: center;
}

.form-message.success {
    background: var(--light-green);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.form-message.error {
    background: #FFF2F0;
    color: #FF4D4F;
    border: 1px solid #FF4D4F;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-column p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-info i {
    color: var(--primary-green);
    width: 16px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

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

.footer-bottom p {
    color: #999999;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition-medium);
        box-shadow: var(--shadow-medium);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero sections */
    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .page-hero {
        height: 50vh;
        min-height: 300px;
    }

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

    /* Sections */
    section {
        padding: 60px 0;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* Job cards */
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Feature grids */
    .feature-grid,
    .advantage-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

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

    .service-card,
    .form-container,
    .application-card {
        padding: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.mv-card,
.advantage-card,
.job-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card:hover,
    .mv-card:hover,
    .advantage-card:hover {
        animation: none;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}