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

:root {
    --primary-green: #C2D400;
    --secondary-green: #0F1D2E;
    --light-green: #D4E940;
    --dark-green: #060C13;
    --white: #FFFFFF;
    --black: #0F1D2E;
    --gray: #5A6A7A;
    --light-gray: #F4F6F8;
    --border-color: #D8DEE4;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

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

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar:hover {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
    max-width: 160px;
}

.nav-brand-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F1D2E;
    white-space: nowrap;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.nav-brand-name span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: #C2D400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0; /* Better touch targets on mobile */
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px; /* Larger touch target */
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    background: #0F1D2E;
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    object-fit: cover;
    display: block;
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Fallback for missing images */
.hero-img:not([src]), 
.hero-img[src=""],
.hero-img[src*="undefined"],
.hero-img[src*="null"] {
    display: none;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    opacity: 0.8;
}

.hero-image:has(.hero-img:not([src])),
.hero-image:has(.hero-img[src=""]),
.hero-image:has(.hero-img[src*="undefined"]),
.hero-image:has(.hero-img[src*="null"]) {
    position: relative;
}

.hero-image:has(.hero-img:not([src]))::after,
.hero-image:has(.hero-img[src=""])::after,
.hero-image:has(.hero-img[src*="undefined"])::after,
.hero-image:has(.hero-img[src*="null"])::after {
    content: '🏢';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    opacity: 0.8;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--black);
}

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

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

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

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

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Locations */
.locations {
    padding: 80px 0;
    background-color: var(--white);
}

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

.location-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid var(--primary-green);
    transition: transform 0.3s ease;
}

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

.location-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.location-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-green);
    color: var(--white);
    padding: 80px 0;
    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: 40px;
    opacity: 0.9;
}

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

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

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

.footer-section h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-green);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-green);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sponsor-section {
    text-align: center;
}

.sponsor-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.copyright {
    text-align: center;
}

.copyright p {
    opacity: 0.8;
    margin-bottom: 5px;
}

.copyright a {
    color: var(--primary-green);
    text-decoration: none;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-logo {
    width: 120px;
    height: 120px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.about-logo i {
    font-size: 3rem;
    color: var(--white);
}

.about-logo-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid var(--white);
    background-color: var(--white);
    padding: 5px;
}

.about-intro h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

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

.about-card {
    background-color: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid var(--primary-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.about-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.about-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--gray);
    line-height: 1.6;
}

.about-description {
    margin-bottom: 60px;
}

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

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.industry-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.industry-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: block;
}

.industry-item span {
    font-weight: 500;
    color: var(--black);
}

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

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--light-gray);
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
    transition: transform 0.3s ease;
}

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

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

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--gray);
    font-weight: 500;
}

.about-values {
    margin-top: 60px;
}

.about-values h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin-bottom: 40px;
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-top: 5px;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.value-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

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

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

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 300px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background: var(--secondary-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image::before {
    content: '👤';
    font-size: 80px;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.6;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: transparent;
    max-width: 280px;
    max-height: 280px;
}

/* Fallback for team member images */
.team-img:not([src]), 
.team-img[src=""],
.team-img[src*="undefined"],
.team-img[src*="null"] {
    display: none;
}

/* Ensure SVG images are visible */
.team-img[src*=".svg"] {
    display: block !important;
    opacity: 1 !important;
}

.team-image:has(.team-img:not([src]))::after,
.team-image:has(.team-img[src=""])::after,
.team-image:has(.team-img[src*="undefined"])::after,
.team-image:has(.team-img[src*="null"])::after {
    content: '👤';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    opacity: 0.8;
}

/* Fallback for logo */
.logo:not([src]), 
.logo[src=""],
.logo[src*="undefined"],
.logo[src*="null"] {
    display: none;
}

.nav-logo:has(.logo:not([src]))::after,
.nav-logo:has(.logo[src=""])::after,
.nav-logo:has(.logo[src*="undefined"])::after,
.nav-logo:has(.logo[src*="null"])::after {
    content: 'FI';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 8px;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 29, 46, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

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

.team-social a {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 30px;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.team-position {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.team-description {
    color: var(--gray);
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 40px 30px;
}

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

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    background: #0F1D2E;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-info-section {
    padding: 60px 0;
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-info-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(15, 29, 46, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(194, 212, 0, 0.35);
}

.contact-info-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info-card p {
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 29, 46, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(194, 212, 0, 0.35);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(194, 212, 0, 0.35);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(194, 212, 0, 0.45);
}

.contact-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 5px;
}

.contact-main {
    padding: 80px 0;
    background-color: var(--white);
}

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

.contact-form-section h2,
.locations-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--black);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(15, 29, 46, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--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(15, 29, 46, 0.1);
    transform: translateY(-2px);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f44336;
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.office-card {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-green);
}

.office-card h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-card p {
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

.office-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

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

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

.map-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

/* CV Upload Page Styles */
.cv-hero {
    background: #0F1D2E;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.cv-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cv-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cv-upload-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.cv-upload-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.cv-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.form-description {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cv-upload-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.file-upload-wrapper:hover {
    border-color: var(--primary-green);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-info {
    pointer-events: none;
}

.file-upload-info i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.file-upload-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--black);
}

.file-upload-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.file-upload-wrapper.has-file {
    border-color: var(--primary-green);
    background-color: rgba(194, 212, 0, 0.05);
}

.file-upload-wrapper.has-file .file-upload-info i {
    color: var(--primary-green);
}

.file-selected-name {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    word-break: break-all;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cv-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.sidebar-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--gray);
}

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

.sidebar-card p {
    color: var(--gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Employee Forms Page Styles */
.employee-hero {
    background: #0F1D2E;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.employee-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.employee-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.employee-forms-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

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

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

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

.form-icon i {
    font-size: 2rem;
    color: var(--white);
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.form-card p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.form-features {
    margin-bottom: 30px;
}

.form-features ul {
    list-style: none;
    text-align: left;
}

.form-features ul li {
    margin-bottom: 8px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-features ul li i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.quick-access-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.quick-access-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
}

.quick-access-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-access-card p {
    color: var(--gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.quick-access-card ul {
    list-style: none;
    padding: 0;
}

.quick-access-card ul li {
    margin-bottom: 8px;
    color: var(--gray);
    padding-left: 20px;
    position: relative;
}

.quick-access-card ul li:before {
    content: '•';
    color: var(--primary-green);
    position: absolute;
    left: 0;
}

.quick-access-card ul li a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-access-card ul li a:hover {
    color: var(--dark-green);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-container {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px; /* Slightly smaller navbar on mobile */
    }
    
    .nav-logo .logo {
        height: 40px;
    }

    .nav-brand-name {
        font-size: 0.95rem;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 20px;
        display: block;
        border-radius: 8px;
        margin: 0 20px;
        min-height: 50px; /* Larger touch target */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link:hover {
        background-color: var(--light-gray);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 140px; /* Ensure buttons are wide enough to touch */
        min-height: 50px; /* Larger touch target */
    }
    
    .hero-img {
        max-width: 90%;
        border-radius: 20px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .about-intro h3 {
        font-size: 2.2rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-card {
        padding: 25px 20px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .industry-item {
        padding: 15px 10px;
        font-size: 0.9rem;
        min-height: 60px; /* Larger touch target */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .values-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .value-icon {
        margin-bottom: 15px;
        font-size: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* Team section mobile improvements */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
    .team-image {
        height: 250px;
        width: 250px;
    }
    
    /* Contact section mobile improvements */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 15px;
        font-size: 16px; /* Prevent zoom on iOS */
        min-height: 50px; /* Larger touch target */
    }
    
    /* Contact page hero mobile improvements */
    .contact-hero {
        padding: 90px 0 50px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-main {
        padding: 50px 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* CV Upload page mobile improvements */
    .cv-hero {
        padding: 90px 0 50px;
    }

    .cv-hero-title {
        font-size: 2.5rem;
    }

    .cv-hero-subtitle {
        font-size: 1.1rem;
    }

    .cv-upload-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px 20px;
    }

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

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

    /* Employee Forms mobile improvements */
    .employee-forms-container {
        padding: 25px 20px;
    }
    
    .forms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
        height: 65px;
    }
    
    .nav-logo .logo {
        height: 36px;
    }
    
    .nav-menu {
        top: 65px;
        max-height: calc(100vh - 65px);
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 12px 15px;
        margin: 0 15px;
        min-height: 50px;
    }

    .hero {
        padding: 90px 0 50px;
        min-height: 85vh;
    }
    
    .hero-container {
        gap: 30px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .btn {
        padding: 15px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        min-height: 55px; /* Even larger touch target for phones */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-img {
        max-width: 95%;
        border-radius: 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .service-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .location-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .location-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .location-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .location-address {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .about-intro h3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .about-lead {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .about-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .about-card h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .about-card p {
        font-size: 0.95rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .industry-item {
        padding: 15px 10px;
        font-size: 0.9rem;
        min-height: 50px;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .value-item {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .value-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .value-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .value-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Team section extra small improvements */
    .team-grid {
        gap: 25px;
    }
    
    .team-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .team-image {
        height: 200px;
        width: 200px;
        margin: 0 auto 15px;
    }
    
    .team-name {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .team-position {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    /* Contact page hero extra small improvements */
    .contact-hero {
        padding: 80px 0 40px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-main {
        padding: 40px 0;
    }

    /* CV Upload page hero extra small improvements */
    .cv-hero {
        padding: 80px 0 40px;
    }

    .cv-hero-title {
        font-size: 2rem;
    }

    /* Contact section extra small improvements */
    .contact-grid {
        gap: 25px;
    }

    .contact-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 15px;
        font-size: 16px;
        min-height: 50px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 8px;
        display: block;
    }
    
    /* CV Upload extra small improvements */
    .cv-upload-container {
        padding: 20px 15px;
    }
    
    .cv-form {
        gap: 15px;
    }
    
    .cv-form .form-group {
        margin-bottom: 15px;
    }
    
    /* Employee Forms extra small improvements */
    .employee-forms-container {
        padding: 20px 15px;
    }
    
    .forms-grid {
        gap: 15px;
    }
    
    .form-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .form-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .form-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    /* Footer improvements */
    .footer-content {
        padding: 40px 15px;
    }
    
    .footer-section {
        margin-bottom: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .footer-bottom {
        padding: 20px 15px;
        gap: 10px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Back to top button mobile optimization */
    .back-to-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 55px !important;
        height: 55px !important;
        font-size: 20px !important;
    }
}

/* Extra small phones (iPhone SE, small Android) */
@media (max-width: 375px) {
    .container {
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 0 8px;
        height: 60px;
    }
    
    .nav-logo .logo {
        height: 40px;
    }
    
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 10px 12px;
        margin: 0 12px;
        min-height: 45px;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: 80vh;
    }
    
    .hero-container {
        gap: 25px;
    }

    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 0.95rem;
        min-height: 50px;
        max-width: 260px;
    }
    
    .hero-img {
        max-width: 98%;
        border-radius: 12px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .service-card {
        padding: 20px 12px;
        margin-bottom: 15px;
    }
    
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .service-description {
        font-size: 0.9rem;
    }

    .location-card {
        padding: 18px 12px;
        margin-bottom: 12px;
    }
    
    .location-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .location-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .location-address {
        font-size: 0.85rem;
    }

    .about-intro h3 {
        font-size: 1.6rem;
    }

    .about-lead {
        font-size: 0.95rem;
    }
    
    .about-card {
        padding: 18px 12px;
        margin-bottom: 15px;
    }
    
    .about-card h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .about-card p {
        font-size: 0.9rem;
    }

    .industry-item {
        padding: 12px 8px;
        font-size: 0.85rem;
        min-height: 45px;
    }

    .stat-item {
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }

    .value-item {
        padding: 12px 8px;
        margin-bottom: 12px;
    }
    
    .value-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .value-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .value-description {
        font-size: 0.85rem;
    }
    
    .team-card {
        padding: 18px 12px;
        margin-bottom: 15px;
    }
    
    .team-image {
        height: 180px;
        width: 180px;
        margin: 0 auto 12px;
    }
    
    .team-name {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }
    
    .team-position {
        font-size: 0.85rem;
    }
    
    .contact-hero {
        padding: 75px 0 35px;
    }

    .contact-hero-title {
        font-size: 1.8rem;
    }

    .contact-main {
        padding: 35px 0;
    }

    .cv-hero {
        padding: 75px 0 35px;
    }

    .cv-hero-title {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 18px 12px;
        margin-bottom: 15px;
    }

    .contact-form {
        padding: 18px 12px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 16px;
        min-height: 45px;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .cv-upload-container {
        padding: 18px 12px;
    }
    
    .employee-forms-container {
        padding: 18px 12px;
    }
    
    .form-card {
        padding: 18px 12px;
        margin-bottom: 12px;
    }
    
    .form-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .form-card p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .footer-content {
        padding: 30px 12px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 15px 12px;
        gap: 8px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .back-to-top {
        bottom: 12px !important;
        right: 12px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        max-height: 60vh;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .btn {
        width: auto;
        min-width: 140px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .hero-img:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .team-card:hover {
        transform: none;
    }
    
    .contact-card:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 44px;
    }
    
    /* Add touch feedback */
    .btn:active,
    .nav-link:active {
        transform: scale(0.98);
    }
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .hero-buttons,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 20px 0;
        min-height: auto;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-title {
        font-size: 24pt;
        color: black;
    }
    
    .hero-subtitle {
        font-size: 14pt;
        color: black;
    }
}

/* Values Section - Modernized */
.values-section {
    padding: 80px 0;
    background: #0F1D2E;
    color: var(--white);
}

.values-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.values-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.value-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.value-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.value-feature i {
    color: var(--light-green);
    font-size: 1rem;
}

.value-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive design for values section */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .values-section .section-title {
        font-size: 2rem;
    }
    
    .values-section .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    margin: 60px 0;
    text-align: center;
}

.why-choose-us h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 40px;
}

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

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-3px);
}

.why-choose-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    width: 30px;
    text-align: center;
}

.why-choose-item span {
    font-weight: 500;
    color: var(--black);
}

/* Testimonials Section */
.testimonials-section {
    margin: 60px 0;
    text-align: center;
}

.testimonials-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 40px;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-left: 4px solid var(--primary-green);
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: var(--black);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CV Timeline */
.cv-timeline {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-gray);
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 500;
    color: var(--black);
}

.timeline-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Enhanced Buttons */
.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Legal Pages Styling */
.legal-content {
    padding: 120px 0 80px;
    background-color: var(--white);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 25px 0 15px;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 8px;
}

.legal-section strong {
    color: var(--black);
    font-weight: 600;
}

.contact-info {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: var(--primary-green);
    text-decoration: none;
}

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

/* Footer Updates */
.footer-tagline {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-link {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Resources Section */
.resources-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.resources-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.resources-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.resource-icon i {
    font-size: 2rem;
    color: var(--white);
}

.resource-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.resource-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

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

.resource-card .btn {
    width: 100%;
    margin-top: 10px;
}

.resource-card .btn i {
    margin-right: 8px;
}

/* Scroll animations */
.js-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Form success state */
.form-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-success-icon {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.form-success p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.form-success p a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.form-success p a:hover {
    text-decoration: underline;
}

/* Responsive design for resources section */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-card {
        padding: 30px 20px;
    }
    
    .resources-section .section-title {
        font-size: 2rem;
    }
    
    .resources-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Hero Stats Responsive */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stat {
        padding: 15px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    /* Why Choose Us Responsive */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-choose-item {
        padding: 15px;
    }
    
    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    /* CV Timeline Responsive */
    .cv-timeline {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-item {
        justify-content: center;
    }
    
    /* Legal Pages Responsive */
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-body {
        padding: 0 20px;
    }
    
    .contact-info {
        padding: 20px;
    }
}
