/* Combined CSS - style.css + hero-image-fix.css + feature-fix.css */
/* Optimized for performance and reduced file size */

/* Global Styles */
:root {
    --primary-color: #0ba29a;
    --secondary-color: #E83428;
    --accent-color: #fc6c85;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #ffffff;
    --section-bg: #f9fbff;
    --card-bg: #ffffff;
    --border-color: #eef2f9;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

body {
    font-family: 'Open Sans', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: optimizeQuality;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

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

section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    font-weight: 600;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #777777;
    color: white;
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.btn-outline {
    border: 2px solid #000;
    color: #000;
    background: transparent;
}

.btn-outline:hover {
    background-color: #009944;
    color: white;
}

.features-content .btn-outline:hover,
.contact-form .btn-outline:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: black;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #F5F0EC;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: none;
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 80px;
    overflow: visible;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    height: 100%;
}

.logo-img {
    max-height: 45px;
    min-height: 38px;
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo-text {
    margin-left: 5px;
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Roboto', BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.2;
}

.logo-url {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 400;
    line-height: 0.9;
    font-style: italic;
}

.logo h1 {
    font-size: 2.0rem;
    color: #009944;
    font-weight: 700;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

nav ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    position: relative;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 400;
    position: relative;
    font-size: 1.1rem;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #CF1322;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #009944;
}

nav ul li a:hover::after {
    width: 100%;
}

.language-toggle {
    display: flex;
    align-items: center;
}

.lang-btn {
    padding: 5px 12px;
    border: none;
    background: transparent;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    font-weight: 500;
    margin-left: 5px;
    font-size: 0.9rem;
}

.lang-btn.active {
    background: #69C0FF;
    color: white;
}

.search-box {
    position: relative;
    margin-left: auto;
    max-width: 140px;
}

.search-box form {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 18px;
    padding: 2px 8px;
    transition: all 0.3s ease;
    position: relative;
}

.search-box form:focus-within {
    box-shadow: none;
}

.search-box input {
    background: transparent;
    border: none;
    padding: 5px 6px;
    width: 110px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    background: transparent;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    padding: 12px 5px;
    transition: color 0.3s ease;
}

.search-box button:hover {
    color: #009944;
}

.language-select {
    position: relative;
    margin-left: 8px;
    border: 1px solid #888888;
    border-radius: 20px;
}

.selected-lang {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 9.0px 12px;
    border-radius: 20px;
    background-color: white;
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.selected-lang i {
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-select:hover .selected-lang {
    background-color: #f0f0f0;
}

.language-select.active .selected-lang i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background-color: white;
    border-radius: 8px;
    box-shadow: none;
    overflow: hidden;
    width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-select.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-dropdown li:hover {
    background-color: #f5f5f5;
    color: #009944;
}

.lang-dropdown li.active {
    background-color: #f0f0f0;
    color: #009944;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
    padding: 0;
    margin-top: 80px;
    margin-bottom: 0;
    width: 100%;
    height: calc(100vh - 100px);
    max-height: 800px;
    border-radius: 0;
    /* Hero Image Fix */
    z-index: 3;
    mix-blend-mode: normal;
    filter: none;
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
    z-index: 2;
}

.hero-bg-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transition: none;
    transform: none;
    opacity: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: auto;
}

.hero:hover .hero-image {
    transform: none;
    transition: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 0;
    text-align: left;
    color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(3px);
    background: transparent;
    border: none;
    box-shadow: none;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #000000;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    justify-content: flex-start;
}

.hero .btn-primary {
    background: #777777;
    color: #000000;
    box-shadow: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.hero .btn-outline {
    border: 2px solid black;
    color: #000000;
    background: transparent;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero .btn-outline:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: black;
}

/* Continue with remaining styles... */
/* Services Section */
.services {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 15%, #f0f0f0 50%, #e0d0f0 85%, #d5c6e8 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon {
    margin-bottom: 20px;
    margin-left: 70px;
    color: #2AB568;
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon:hover {
    transform: translateY(-3px) scale(1.05);
}

.service-icon i {
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 2px 2px rgba(0,0,0,0.1), 0 0 5px rgba(42,181,104,0.2);
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
    transition: all 0.3s ease;
}

.service-icon:hover i {
    color: #1a8a4f;
    transform: translateY(-2px) scale(1.15);
    text-shadow: 0 1px 0 rgba(255,255,255,0.5), 0 3px 4px rgba(0,0,0,0.2), 0 0 10px rgba(26,138,79,0.4), 0 0 20px rgba(26,138,79,0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    font-weight: 600;
}

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

/* News Section */
.news {
    background-color: var(--bg-color);
}

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

.news-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 320px;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    opacity: 0.7;
    z-index: -1;
}

.news-card:hover {
    transform: translateY(-2px) scale(1.008);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075), 0 4px 12px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.news-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
}

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

.news-image img {
    width: 100%;
    height: 430px;
    object-fit: contain;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.news-card:hover .news-image img {
    transform: scale(1.005);
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #08979C;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.news-date .day {
    font-size: 1.4rem;
    font-weight: 700;
}

.news-date .month {
    font-size: 0.9rem;
}

.news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    font-weight: 600;
}

.news-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.news-link {
    color: #009944;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--secondary-color);
}

.news-link::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.news-link:hover::after {
    margin-left: 10px;
}

.news-more {
    text-align: center;
}

.news-more .btn-outline:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: black;
}

/* Features Section with Fixes */
.features {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.features .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    position: relative;
    width: 100%;
    min-height: 700px;
}

.circular-layout {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 0 auto;
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    animation: centerPulse 4s ease-in-out infinite;
    background: url('assets/images/Why_us.png');
    background-size: cover;
    background-position: center;
    z-index: 10;
    overflow: hidden;
}

.center-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

@keyframes centerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.02); }
}

.center-content h2 {
    font-size: 2.16rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    margin-left: 10px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    color: #000;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

.center-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    color: #000;
    font-weight: 500;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.center-content p {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.center-content .question-mark {
    display: none;
}

.feature-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-circle[data-position="top"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-circle[data-position="top-right"] {
    top: 15%;
    right: 0;
    transform: translateX(50%);
}

.feature-circle[data-position="bottom-right"] {
    bottom: 15%;
    right: 0;
    transform: translateX(50%);
}

.feature-circle[data-position="bottom"] {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-circle[data-position="bottom-left"] {
    bottom: 15%;
    left: 0;
    transform: translateX(-50%);
}

.feature-circle[data-position="top-left"] {
    top: 15%;
    left: 0;
    transform: translateX(-50%);
}

.feature-circle:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.03);
    box-shadow: none;
    background: #FFFFFF;
}

.feature-circle[data-position="top-right"]:hover,
.feature-circle[data-position="bottom-right"]:hover {
    transform: translateX(50%) translateY(-3px) scale(1.03);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #EC5517;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    color: white;
}

.feature-circle:hover .feature-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: none;
}

.feature-icon i {
    font-size: 26px;
    color: white;
}

.feature-circle h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333333;
    margin: 8px 0 6px;
    letter-spacing: 0.5px;
}

.feature-circle p {
    font-size: 0.75rem;
    color: #555555;
    line-height: 1.3;
    margin: 0;
    font-weight: 500;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #E6F7FF 0%, #bbdefb 25%, #FFF1F0 50%, #FFF2E8 75%, #fce4ec 100%);
    padding: 61px 0;
    min-height: 304px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    min-height: 300px;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: none;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-text {
    flex: 1;
    text-align: left;
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 41px;
    max-width: 700px;
    margin-left: auto;
}

.about-text .about-paragraph {
    margin-bottom: 35px;
    text-align: left;
}

.about-text .about-paragraph:last-child {
    margin-bottom: 0;
}

.about-text .about-line {
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 100%;
    margin-right: 0;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background-color: #E6F7FF;
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 398px;
    max-width: 100%;
}

.info-item i {
    font-size: 2rem;
    color: #009944;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ba29a, #009944);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-shrink: 0;
    margin-top: 5px;
}

.info-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

.info-text p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.external-link-icon {
    margin-left: auto;
    margin-top: 15px;
    color: #C41D7F;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.9;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #D32F2F;
}

.external-link-icon i {
    color: #C41D7F;
}

.external-link-icon:hover {
    opacity: 1;
    color: #C41D7F;
    background: #B71C1C;
    transform: scale(1.1);
}

.external-link-icon:hover i {
    color: #C41D7F;
}

.qrcode-section {
    display: flex;
    flex-direction: row;
    gap: 3px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    margin-left: -50px;
}

.qrcode-item {
    background: transparent;
    border-radius: 0;
    padding: 20px 15px;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    flex: 0 0 auto;
    max-width: 400px;
}

.qrcode-item:first-child {
    margin-right: 40px;
    margin-left: 5px;
}

.qrcode-item:last-child {
    margin-left: -30px;
}

.qrcode-image {
    width: 288px;
    height: 288px;
    margin: 0 auto 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
}

.qrcode-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    filter: contrast(1.1) saturate(1.05);
}

.qrcode-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

.qrcode-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Footer */
footer {
    background: #ffffff;
    color: #333333;
    padding: 40px 0 20px;
}

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

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 80px;
    overflow: visible;
    margin-bottom: 15px;
}

.footer-logo-img {
    max-height: 45px;
    min-height: 38px;
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-logo-text {
    flex: 1;
}

.footer-logo-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

.footer-logo-url {
    font-size: 1.2rem;
    color: #009944;
    font-weight: 500;
    font-style: italic;
}

.footer-logo p {
    color: #666666;
    margin-top: 15px;
    font-size: 1rem;
}

.footer-links h3,
.footer-services h3 {
    color: #333333;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    margin-right: 20px;
}

footer .footer-content .footer-services {
    margin-left: 20px;
}

.footer-links h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #009944;
    margin-top: 8px;
    border-radius: 2px;
}

.footer-services h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #009944;
    margin-top: 8px;
    border-radius: 2px;
}

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

.footer-links ul li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    font-weight: 400;
}

.footer-links ul li a:hover {
    color: #009944;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .circular-layout {
        width: 600px;
        height: 600px;
    }
    
    .center-content {
        width: 240px;
        height: 240px;
    }
    
    .center-content h2 {
        font-size: 2.16rem;
    }
    
    .feature-circle {
        width: 140px;
        height: 140px;
        padding: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        background: #EC5517;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-circle h3 {
        font-size: 0.85rem;
    }
    
    .feature-circle p {
        font-size: 0.7rem;
    }
    
    .qrcode-section {
        gap: 2px;
        max-width: 800px;
    }
    
    .qrcode-item {
        max-width: 350px;
    }
    
    .qrcode-item:first-child {
        margin-right: 40px;
        margin-left: 5px;
    }
    
    .qrcode-image {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 80px 0;
    }
    
    .features-showcase {
        min-height: 500px;
    }
    
    .circular-layout {
        width: 500px;
        height: 500px;
    }
    
    .center-content {
        width: 200px;
        height: 200px;
    }
    
    .center-content h2 {
        font-size: 1.62rem;
        margin-bottom: 10px;
    }
    
    .center-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .feature-circle {
        width: 120px;
        height: 120px;
        padding: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-circle h3 {
        font-size: 0.8rem;
        margin: 6px 0 4px;
    }
    
    .feature-circle p {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .info-item {
        width: 100%;
        max-width: 100%;
    }
    
    .info-item i {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .info-text h3 {
        font-size: 1.2rem;
    }
    
    .info-text p {
        font-size: 1rem;
    }
    
    .qrcode-section {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        margin-left: 0;
    }
    
    .qrcode-item {
        max-width: 250px;
    }
    
    .qrcode-item:first-child,
    .qrcode-item:last-child {
        margin: 0;
    }
    
    .qrcode-image {
        width: 200px;
        height: 200px;
    }
    
    .qrcode-item h4 {
        font-size: 1.2rem;
    }
    
    .qrcode-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .qrcode-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-item {
        padding: 20px;
        width: 100%;
    }
    
    .qrcode-item {
        max-width: 200px;
    }
    
    .qrcode-image {
        width: 160px;
        height: 160px;
    }
    
    .circular-layout {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .center-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 30px;
    }
    
    .center-content h2 {
        font-size: 1.5rem;
    }
    
    .center-subtitle {
        font-size: 0.8rem;
    }
    
    .feature-circle {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: 90%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 20px;
        padding: 15px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-circle h3 {
        font-size: 0.9rem;
        margin: 0 0 5px;
    }
    
    .feature-circle p {
        font-size: 0.75rem;
    }
} 