/**
 * Tunelsan - Sayfa Özel CSS
 */

/* ===== ABOUT PAGE ===== */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.about-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.mission-vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.mission-vision-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.value-card-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

/* ===== PRODUCTS PAGE ===== */
.products-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

/* Modern Products Filters */
.products-filters-modern {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    border: 1px solid #f0f0f0;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.filters-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filters-header h3 i {
    color: var(--accent-color);
}

.filter-count {
    background: var(--light-color);
    color: var(--text-light);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--light-color);
    color: var(--text-color);
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.category-chip:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.2);
}

.category-chip.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

.category-chip i {
    font-size: 14px;
}

.category-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
}

/* Modern Products Grid */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

.product-card-modern {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-image-modern {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light-color);
}

.product-card-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-modern:hover .product-card-image-modern img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 126, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    background: var(--accent-color);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.product-card-modern:hover .view-btn {
    transform: translateY(0);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent-color), #ff9800);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
    z-index: 2;
}

.product-card-content-modern {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category-badge {
    display: inline-block;
    background: rgba(26, 35, 126, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.product-card-content-modern h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    line-height: 1.4;
    min-height: 50px;
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-specs-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.product-specs-mini span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
    background: var(--light-color);
    padding: 6px 12px;
    border-radius: 15px;
}

.product-specs-mini span i {
    color: var(--accent-color);
    font-size: 12px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 80px;
    color: var(--light-color);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .products-filters-modern {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-chips {
        gap: 8px;
    }
    
    .category-chip {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-card-image-modern {
        height: 200px;
    }
    
    .product-card-content-modern h3 {
        font-size: 16px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-chip {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .filters-header h3 {
        font-size: 18px;
    }
}

.product-detail {
    padding: 80px 0;
}

.product-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.product-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-detail-image img {
    width: 100%;
    height: auto;
}

.product-detail-info h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-detail-info .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.product-specs {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.product-specs h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.product-specs table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    width: 40%;
}

/* ===== SERVICES PAGE ===== */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.service-detail {
    padding: 80px 0;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-detail-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.service-detail-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* ===== BLOG PAGE ===== */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

/* Modern Blog Filters */
.blog-filters-modern {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    border: 1px solid #f0f0f0;
}

/* Modern Blog Grid */
.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .blog-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 35px;
    }
}

@media (min-width: 1200px) {
    .blog-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    }
}

.blog-card-modern {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.blog-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image-modern {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--light-color);
}

.blog-card-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-modern:hover .blog-card-image-modern img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 126, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-modern:hover .blog-overlay {
    opacity: 1;
}

.read-btn {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    background: var(--accent-color);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.blog-card-modern:hover .read-btn {
    transform: translateY(0);
}

.blog-card-content-modern {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-category-badge {
    display: inline-block;
    background: rgba(26, 35, 126, 0.1);
    color: var(--primary-color);
    padding: 5px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 13px;
}

.blog-date i {
    color: var(--accent-color);
    font-size: 12px;
}

.blog-card-content-modern h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    line-height: 1.4;
    min-height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 15px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.blog-read-more span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-card-modern:hover .blog-read-more span {
    color: var(--accent-color);
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-card-modern:hover .blog-read-more i {
    transform: translateX(5px);
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-filters-modern {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .blog-card-image-modern {
        height: 200px;
    }
    
    .blog-card-content-modern h3 {
        font-size: 18px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .blog-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== HOME ABOUT SECTION ===== */
.home-about-section {
    padding: 80px 0;
}

.home-about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.home-about-text {
    max-width: 100%;
}

.home-about-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.home-about-paragraphs {
    margin-bottom: 30px;
}

.home-about-paragraphs p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.home-about-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.home-about-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.home-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.home-about-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 24px;
}

.home-about-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.home-about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design for Home About */
@media (max-width: 968px) {
    .home-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .home-about-cards {
        flex-direction: row;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .home-about-section {
        padding: 60px 0;
    }
    
    .home-about-subtitle {
        font-size: 24px;
    }
    
    .home-about-paragraphs p {
        font-size: 16px;
        text-align: left;
    }
    
    .home-about-cards {
        flex-direction: column;
    }
    
    .home-about-card {
        padding: 25px;
    }
}

/* ===== HOME SERVICES SECTION ===== */
.home-services-section {
    padding: 80px 0;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .services-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 35px;
    }
}

@media (min-width: 1200px) {
    .services-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    }
}

.service-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 35px 30px;
}

.service-card-icon-modern {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-card-modern:hover .service-icon-wrapper::before {
    width: 200px;
    height: 200px;
}

.service-card-modern:hover .service-icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
}

.service-card-content-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content-modern h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 15px 0;
    line-height: 1.3;
    min-height: 56px;
}

.service-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-read-more {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.service-read-more span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-read-more span {
    color: var(--accent-color);
    gap: 12px;
}

.service-read-more i {
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-read-more i {
    transform: translateX(5px);
}

/* Responsive Design for Home Services */
@media (max-width: 768px) {
    .home-services-section {
        padding: 60px 0;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .service-link {
        padding: 30px 25px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .service-card-content-modern h3 {
        font-size: 20px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.blog-post {
    padding: 80px 0;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-post-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.blog-post-meta {
    color: var(--text-light);
    font-size: 14px;
}

.blog-post-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-content img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.blog-post-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.blog-post-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

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

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

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

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

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-color);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item-icon {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 5px;
}

.contact-info-item-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-info-item-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-item-content p a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item-content p a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.contact-map-section {
    margin-top: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-hero h1,
    .products-hero h1,
    .services-hero h1,
    .blog-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .mission-vision,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-header {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 300px;
    }
    
    .contact-map iframe {
        min-height: 300px;
    }
    
    .filter-group {
        flex-direction: column;
    }
    
    .filter-item {
        width: 100%;
    }
}


