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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* 全局样式 - 绿色主题 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2e7d32;
    --light-green: #4caf50;
    --dark-green: #1b5e20;
    --accent-green: #81c784;
    --bg-light: #f1f8e9;
    --text-dark: #2e2e2e;
    --text-light: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    --gradient-secondary: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    --shadow: 0 4px 6px rgba(46, 125, 50, 0.1);
    --shadow-hover: 0 8px 15px rgba(46, 125, 50, 0.2);
}

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

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

/* Header 样式 */
header {
    background: var(--gradient-primary);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-family: 'Arial', sans-serif; 
    font-size: 2rem; 
    font-weight: bold; 
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navigation */
nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--bg-light);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    border-radius: 4px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* CSS-only fallback for mobile menu toggle */
.mobile-menu-toggle:target .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle:target .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle:target .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* 语言切换器 */
.language-switcher select {
    background: var(--text-light);
    color: var(--primary-green);
    border: 2px solid var(--accent-green);
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.language-switcher select:hover {
    background: var(--bg-light);
    border-color: var(--primary-green);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.language-switcher select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.3);
}

.language-switcher select option {
    background: var(--text-light);
    color: var(--primary-green);
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(129, 199, 132, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(129, 199, 132, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(129, 199, 132, 0.1) 50%, transparent 100%);
    animation: float 15s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: grid-move 25s infinite linear;
    z-index: 1;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% { 
        transform: translateY(-20px) rotate(120deg);
        opacity: 1;
    }
    66% { 
        transform: translateY(-10px) rotate(240deg);
        opacity: 0.8;
    }
}

@keyframes grid-move {
    0% { 
        transform: translate(0, 0);
    }
    100% { 
        transform: translate(60px, 60px);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: var(--text-light);
    color: var(--primary-green);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(129, 199, 132, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-light);
    color: var(--dark-green);
}

/* Hero decorative elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 8s infinite ease-in-out;
}

.decoration-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-2 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.decoration-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.decoration-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(129, 199, 132, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(5px);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 10%;
    transform: rotate(45deg);
    border-radius: 20px;
    animation: float 12s infinite ease-in-out reverse;
}

.shape-2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 20%;
    transform: rotate(30deg);
    border-radius: 15px;
    animation: float 10s infinite ease-in-out;
    animation-delay: 3s;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

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

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-green);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Service card list styles */
.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.service-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li:before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

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

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

.about-text h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-description {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.about-text p {
    margin-bottom: 0;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    text-align: justify;
    text-justify: inter-ideograph;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.about-image {
    text-align: center;
    font-size: 8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-green);
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 页面特定样式 */
.page-header {
    background: var(--gradient-primary);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--text-light);
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-content {
    padding: 80px 0;
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

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

.submit-btn {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
footer {
    background: var(--dark-green);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    font-size: 1.2rem;
    width: 24px;
    flex-shrink: 0;
}

.footer-section h3 {
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 0.5rem;
}

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

.contact-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.contact-links a:hover {
    color: var(--accent-green);
    padding-left: 0.5rem;
}

.contact-address {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    padding: 0.25rem 0;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom .tagline {
    color: var(--accent-green);
    margin: 0;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(76, 175, 80, 0.02);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    background: white;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.submit-btn .arrow {
    transition: transform 0.3s ease;
}

.submit-btn:hover .arrow {
    transform: translateX(5px);
}

/* Contact Info Section */
.contact-info-section {
    position: relative;
}

.info-header {
    margin-bottom: 2.5rem;
}

.info-header h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-header p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-green);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-details h3 {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details .main-info {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.contact-details .sub-info {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
}

/* Quick Contact Section */
.quick-contact {
    background: linear-gradient(135deg, var(--bg-light), rgba(76, 175, 80, 0.05));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.quick-contact h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.quick-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    max-width: 150px;
}

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

.phone-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

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

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

/* Map Section */
.map-section {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-header p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-placeholder {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    max-width: 400px;
}

.location-pin {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-content h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-content p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.access-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.access-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.access-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.access-details h4 {
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.access-details p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.access-details small {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.8rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .form-card,
    .map-section {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-btn {
        max-width: none;
        width: 200px;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .access-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .access-icon {
        width: 50px;
        height: 50px;
    }
}

/* =================================== */
/* COMPREHENSIVE MOBILE RESPONSIVE DESIGN */
/* =================================== */

/* Tablet Styles (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header adjustments */
    .header-content {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    /* Hero section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* About page team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Stats section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    /* Base container */
    .container {
        padding: 0 20px;
    }
    
    /* Header - Mobile Navigation */
    header {
        padding: 0.8rem 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    /* Show mobile menu toggle button */
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    /* Hide desktop navigation and show mobile navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--gradient-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .language-switcher {
        margin-top: 1rem;
        width: 100%;
    }
    
    .language-switcher select {
        width: 100%;
        max-width: 200px;
        font-size: 1rem;
        padding: 0.8rem 1rem;
        border-radius: 8px;
    }
    
    /* Hero section - Mobile */
    .hero {
        padding: 140px 0 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero h1::after {
        width: 60px;
        height: 3px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.6;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    /* Page headers */
    .page-header {
        padding: 120px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Services grid - Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .service-card ul li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    /* About page - Mobile */
    .about-content {
        padding: 3rem 0;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.4rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .value-item h4 {
        font-size: 1.2rem;
    }
    
    /* Stats section - Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Team section - Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
        text-align: center;
    }
    
    /* Home about section */
    .about-section {
        padding: 4rem 0;
    }
    
    .about-content-home {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Footer - Mobile */
    footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        padding: 2rem 0 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    /* Ultra-mobile adjustments */
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        gap: 0.8rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    /* Mobile menu adjustments for small screens */
    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 5rem 1.5rem 2rem;
    }
    
    .nav-menu a {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .language-switcher select {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    /* Hero ultra-mobile */
    .hero {
        padding: 130px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero h1::after {
        width: 50px;
        height: 2px;
    }
    
    .hero p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 0.7rem 1.5rem;
    }
    
    /* Page headers ultra-mobile */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    /* Services ultra-mobile */
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Stats ultra-mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* CTA ultra-mobile */
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    /* About ultra-mobile */
    .mission-card, .vision-card {
        padding: 1.5rem 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cta-button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .language-switcher select {
        min-height: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover {
        transform: none;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Landscape phone orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .page-header {
        padding: 100px 0 30px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    /* Adjust mobile menu for landscape */
    .nav-menu {
        padding: 4rem 2rem 2rem;
        gap: 1.5rem;
    }
    
    .nav-menu a {
        padding: 0.6rem;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .hero h1, .page-header h1 {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}