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

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-top {
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
}

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

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

.social-link {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.social-link:hover {
    color: #007bff;
}

.contact-info {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-main {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Navigation */
.main-nav {
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    background-color: #f8f8f8;
}

.nav-list .dropdown:hover .dropdown-menu,
.nav-list .dropdown-submenu:hover .submenu {
    display: block;
}

.dropdown-menu,
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    z-index: 1000;
}

.dropdown-menu li,
.submenu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child,
.submenu li:last-child {
    border-bottom: none;
}

.dropdown-menu a,
.submenu a {
    padding: 12px 20px;
    white-space: nowrap;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .submenu {
    left: 100%;
    top: 0;
}

/* .quote-btn rules removed - markup no longer uses this class */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.6)),
                url('image/1.jpg') center/cover no-repeat;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.4);
}

.hero .container {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero p:first-of-type {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #007bff;
}

/* Welcome Section */
.welcome {
    padding: 60px 0;
    background: #f8f9fa;
}

.welcome h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.welcome p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    padding: 60px 0;
    background: #fff;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-image {
    height: 200px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-item h3 {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.service-link {
    display: block;
    padding: 0 20px 20px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.service-link:hover {
    text-decoration: underline;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 40px 0;
    background: #f8f9fa;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.why-choose-us > .container > p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.reason-item {
    background: #fff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.reason-icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 20px;
}

.reason-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.reason-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.contact-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 22px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-link {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #007bff;
    border-radius: 5px;
    transition: all 0.3s;
}

.contact-link:hover {
    background: #007bff;
    color: #fff;
}

.contact-cta {
    background: linear-gradient(135deg, #1a365d, #2d3748);
    color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
}

.contact-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-cta .btn {
    background: #fff;
    color: #1a365d;
    border: none;
}

.contact-cta .btn:hover {
    background: #f8f9fa;
    color: #1a365d;
}

/* Page Header */
.page-header {
    padding: 80px 0;
    background: linear-gradient(rgba(26, 54, 93, 0.7), rgba(26, 54, 93, 0.5)),
                url('image/1.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

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

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff;
}

.page-header p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Content */
.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-content .container {
    max-width: 1200px;
}

.about-main {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    margin-bottom: 80px;
}

.about-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,123,255,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,123,255,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

.about-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.why-choose-section {
    margin-top: 100px;
}

.why-choose-section h3 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.why-choose-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

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

.reason-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(0,123,255,0.25);
}

.reason-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.reason-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Sidebar */
.sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

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

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.sidebar-section > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

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

.sidebar-section ul li {
    margin-bottom: 8px;
}

.sidebar-section ul li a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.sidebar-section ul li a:hover {
    text-decoration: underline;
}

.sidebar-reasons .reason-item {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sidebar-reasons .reason-item:last-child {
    margin-bottom: 0;
}

.sidebar-reasons h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.sidebar-reasons p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

.contact-item i {
    color: #007bff;
    font-size: 18px;
    margin-top: 3px;
}

.contact-item .address {
    line-height: 1.6;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.contact-form > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
}

/* Container Specifications */
.container-specs {
    padding: 60px 0;
    background: #fff;
}

.container-specs h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.container-specs > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.container-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.container-item h3 {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
}

.container-image {
    height: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
}

.container-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.image-link {
    display: block;
    text-align: center;
    padding: 15px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.image-link:hover {
    text-decoration: underline;
}

/* Incoterms */
.incoterms {
    padding: 60px 0;
    background: #f8f9fa;
}

.incoterms h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.incoterms > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

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

.incoterm-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.incoterm-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.incoterm-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.incoterm-item strong {
    color: #007bff;
}

/* Services Content */
.services-content {
    padding: 80px 0;
    background: #fff;
}

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

.services-content .services-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.services-content .services-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.services-content .services-intro p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(0,123,255,0.25);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-card .btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    transform: translateY(-2px);
}

/* Special Services */
.special-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.special-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.special-service .service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.special-service .service-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.special-service .service-info p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* Service Highlights */
.service-highlights {
    padding: 80px 0;
    background: #fff;
}

.service-highlights h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    background: #007bff;
    color: #fff;
}

.highlight-item:hover i {
    color: #fff;
}

.highlight-item i {
    font-size: 32px;
    color: #007bff;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 16px;
    font-weight: 500;
    color: inherit;
}

/* Service Detail Content */
.service-detail-content {
    padding: 80px 0;
    background: #fff;
}

.service-detail-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-main .service-intro {
    margin-bottom: 60px;
}

.service-main .service-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.service-main .service-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.service-main .service-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 80px;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(0,123,255,0.25);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.special-service-section {
    margin-bottom: 60px;
}

.service-sidebar {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

.service-sidebar .sidebar-section {
    margin-bottom: 40px;
}

.service-sidebar .sidebar-section:last-child {
    margin-bottom: 0;
}

.service-sidebar .sidebar-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.service-sidebar .sidebar-reasons .reason-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-sidebar .sidebar-reasons .reason-item:last-child {
    margin-bottom: 0;
}

.service-sidebar .sidebar-reasons h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.service-sidebar .sidebar-reasons p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.sidebar-cta {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.sidebar-cta h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.sidebar-cta p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.sidebar-cta .btn {
    margin: 0 5px 10px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: #fff;
}

.contact-content .container {
    max-width: 1200px;
}

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

.contact-main .contact-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.contact-main .contact-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.contact-main .contact-intro p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.contact-info-section h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contact-info-section > p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,123,255,0.25);
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contact-form-section h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-form-section > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

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

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

.form-group:last-child {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

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

/* Map Section */
.map-section {
    margin-top: 80px;
}

.map-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.map-placeholder i {
    font-size: 48px;
    color: #007bff;
}

.map-placeholder h4 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.map-placeholder p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.map-note {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-top: 10px;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: #f8f9fa;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars {
    color: #ffc107;
    font-size: 20px;
}

.rating-number {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.review-count {
    color: #666;
}

.review-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.review-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.review-link:hover {
    text-decoration: underline;
}

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

.review-item {
    background: #fff;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

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

.review-header strong {
    color: #333;
}

.review-date {
    color: #999;
    font-size: 12px;
}

.review-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a365d, #2d3748);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.footer-section ul li a i {
    margin-right: 8px;
    font-size: 10px;
    opacity: 0.7;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #007bff;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.footer-copyright p:last-child {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 5px;
}

.footer-actions {
    text-align: right;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.back-to-top:hover {
    color: #0056b3;
}

.back-to-top i {
    font-size: 12px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #007bff;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item .address {
    line-height: 1.5;
    font-size: 14px;
}

.footer-actions {
    display: flex;
    align-items: center;
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.back-to-top:hover {
    color: #fff;
    transform: translateY(-2px);
}

.back-to-top i {
    font-size: 12px;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* About Hero */
.about-hero {
    padding: 60px 0;
    background: linear-gradient(rgba(0,123,255,0.8), rgba(0,123,255,0.6)),
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIyMDAiIHZpZXdCb3g9IjAgMCAxMjAwIDIwMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjEyMDAiIGhlaWdodD0iMjAwIiBmaWxsPSIjZTllOWU5Ii8+Cjx0ZXh0IHg9IjYwMCIgeT0iMTAwIiBmb250LWZhbWlseT0iQXJpYWwiIGZvbnQtc2l6ZT0iMjAiIGZpbGw9IiM2NjYiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGR5PSIuM2VtIj5BYm91dCBIZXJvIEJhY2tncm91bmQ8L3RleHQ+Cjwvc3ZnPg==') center/cover;
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-text {
    text-align: left;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Mission Section */
.mission {
    padding: 60px 0;
    background: #fff;
}

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

.mission-item {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

.mission-icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 20px;
}

.mission-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.mission-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 60px 0;
    background: #f8f9fa;
}

.team h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

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

.team-member {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-image {
    height: 200px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 18px;
    margin: 15px 0 5px;
    color: #333;
}

.team-member p {
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

/* Services Hero */
.services-hero {
    padding: 60px 0;
    background: linear-gradient(rgba(0,123,255,0.8), rgba(0,123,255,0.6)),
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIyMDAiIHZpZXdCb3g9IjAgMCAxMjAwIDIwMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjEyMDAiIGhlaWdodD0iMjAwIiBmaWxsPSIjZTllOWU5Ii8+Cjx0ZXh0IHg9IjYwMCIgeT0iMTAwIiBmb250LWZhbWlseT0iQXJpYWwiIGZvbnQtc2l6ZT0iMjAiIGZpbGw9IiM2NjYiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGR5PSIuM2VtIj5TZXJ2aWNlcyBIZXJvIEJhY2tncm91bmQ8L3RleHQ+Cjwvc3ZnPg==') center/cover;
    color: #fff;
    text-align: center;
}

.services-hero h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.services-hero p {
    font-size: 18px;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Services */
.main-services,
.on-site-services {
    padding: 60px 0;
    background: #fff;
}

.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.services-intro p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.service-detail {
    margin-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 40px;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 0;
    color: #333;
    grid-column: 1 / -1;
}

.service-image {
    height: 200px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.feature-item i {
    color: #28a745;
    font-size: 16px;
}

.feature-item span {
    font-size: 14px;
}

/* Contact CTA */
.contact-cta {
    padding: 60px 0;
    background: #007bff;
    color: #fff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .header-main .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-list .dropdown-menu,
    .nav-list .submenu {
        position: static;
        box-shadow: none;
        border: none;
        background: #f8f8f8;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p:first-of-type {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

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

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

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

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

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
        gap: 20px;
    }

    .footer-social .social-link {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .contact-info {
        gap: 12px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-item i {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-actions {
        text-align: center;
    }

    .back-to-top span {
        display: none;
    }

    .services-content {
        padding: 60px 0;
    }

    .services-content .services-intro h2 {
        font-size: 28px;
    }

    .services-content .services-intro p {
        font-size: 16px;
    }

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

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

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .special-service {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .special-service .service-image img {
        height: 200px;
    }

    .special-service .service-info h3 {
        font-size: 24px;
    }

    .service-highlights {
        padding: 60px 0;
    }

    .service-highlights h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

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

    .highlight-item {
        padding: 20px;
        gap: 15px;
    }

    .highlight-item i {
        font-size: 28px;
    }

    .highlight-item span {
        font-size: 14px;
    }

    .service-detail-content {
        padding: 60px 0;
    }

    .service-detail-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-main .service-intro h2 {
        font-size: 28px;
    }

    .service-main .service-intro p {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .special-service {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .service-sidebar {
        padding: 30px;
    }

    .sidebar-cta {
        padding: 25px;
    }

    .sidebar-cta .btn {
        display: block;
        margin: 5px 0;
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .contact-main .contact-intro h2 {
        font-size: 28px;
    }

    .contact-main .contact-intro p {
        font-size: 16px;
    }

    .contact-info-section h3 {
        font-size: 24px;
    }

    .contact-form-section h3 {
        font-size: 24px;
    }

    .contact-form {
        padding: 30px 25px;
    }

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

    .contact-details {
        gap: 25px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .contact-text h4 {
        font-size: 16px;
    }

    .contact-text p {
        font-size: 14px;
    }

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

    .map-section h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .map-container {
        padding: 30px 20px;
    }

    .map-placeholder i {
        font-size: 40px;
    }

    .map-placeholder h4 {
        font-size: 20px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .service-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-header h3 {
        grid-column: 1;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

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

    .service-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .about-intro h2 {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .about-card {
        padding: 40px 30px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 25px;
    }

    .about-card h3 {
        font-size: 24px;
    }

    .why-choose-section {
        margin-top: 60px;
    }

    .why-choose-section h3 {
        font-size: 28px;
        margin-bottom: 40px;
    }

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

    .reason-card {
        padding: 30px 25px;
    }

    .reason-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .reason-card h4 {
        font-size: 20px;
    }

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

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

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

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

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 24px;
    }

    .page-header {
        padding: 60px 0;
        min-height: 250px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
        max-width: 500px;
    }

    .welcome,
    .services-grid,
    .why-choose-us,
    .contact,
    .reviews,
    .about-hero,
    .services-hero,
    .main-services,
    .on-site-services,
    .contact-cta {
        padding: 40px 0;
    }

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

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        flex: 1;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .services-hero h1 {
        font-size: 28px;
    }

    .service-header {
        margin-bottom: 20px;
    }

    .service-detail {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
}
