/* =============== PAGE HEADER =============== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0066b3 0%, #00a0d6 100%);
    color: var(--white-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,122.7C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.page-header__title {
    font-size: var(--big-font-size);
    margin-bottom: var(--mb-1);
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease;
}

.page-header__breadcrumb {
    font-size: var(--normal-font-size);
    opacity: 0.9;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease;
}

.page-header__breadcrumb a {
    color: var(--white-color);
    transition: var(--transition);
}

.page-header__breadcrumb a:hover {
    opacity: 0.8;
}

.page-header__breadcrumb i {
    margin: 0 0.5rem;
    font-size: 0.8rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============== CONTENT GRID =============== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: var(--mb-3);
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow-color);
    transition: var(--transition-slow);
}

.content-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 102, 179, 0.3);
}

.content-text p {
    margin-bottom: var(--mb-1-5);
    line-height: 1.8;
    color: var(--text-light);
}

.content-text strong {
    color: var(--text-color);
    font-weight: var(--font-semibold);
}

/* =============== CUSTOM LIST =============== */
.custom-list {
    list-style: none;
    margin: var(--mb-2) 0;
}

.custom-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: var(--mb-1);
    color: var(--text-light);
    line-height: 1.8;
}

.custom-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* =============== CONTENT BOX =============== */
.content-box {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    margin-top: var(--mb-3);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.content-box p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* =============== SECTION DESCRIPTION =============== */
.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--mb-3);
    font-size: 1.1rem;
    color: var(--text-light);
}

/* =============== APPROACH GRID =============== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: var(--transition-slow);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 179, 0.2);
}

.approach-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--mb-1-5);
    display: inline-block;
    transition: var(--transition);
}

.approach-card:hover .approach-icon {
    transform: scale(1.2) rotateY(360deg);
}

.approach-card h3 {
    font-size: var(--h3-font-size);
    margin-bottom: 0;
    color: var(--text-color);
}

.approach-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Service cards without description */
.service__card h3:only-of-type {
    margin-bottom: 0;
}

.service__card:not(:has(.service__description)) {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* =============== VISION SECTION =============== */
.vision-section {
    background: linear-gradient(135deg, #0066b3 0%, #00a0d6 100%);
    color: var(--white-color);
}

.vision-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.vision-icon {
    font-size: 4rem;
    margin-bottom: var(--mb-2);
    animation: pulse 2s infinite;
}

.vision-section .section__title {
    color: var(--white-color);
}

.vision-section .section__title::after {
    background: var(--white-color);
}

.vision-text {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* =============== STATS GRID =============== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 179, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: var(--font-extrabold);
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
    font-family: var(--title-font);
}

.stat-label {
    color: var(--text-light);
    font-weight: var(--font-medium);
}

/* =============== CTA SECTION =============== */
.cta-section {
    background: linear-gradient(135deg, #0066b3 0%, #00a0d6 100%);
    padding: 5rem 0;
    color: var(--white-color);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: var(--h1-font-size);
    color: var(--white-color);
    margin-bottom: var(--mb-1);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--mb-2);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.cta-section .btn-primary:hover {
    background: var(--bg-color);
}

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

.cta-section .btn-secondary:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* =============== PRODUCT NAVIGATION =============== */
.product-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--mb-3);
}

.product-nav__btn {
    padding: 0.75rem 1.5rem;
    background: var(--white-color);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: var(--transition);
}

.product-nav__btn:hover,
.product-nav__btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* =============== PRODUCT SECTIONS =============== */
.product-section {
    transition: var(--transition);
}

.product-section.hidden {
    display: none;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--mb-3);
}

.section-header .section__title {
    margin-bottom: 0;
}

.section-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* =============== PRODUCTS LIST =============== */
.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow-color);
    transition: var(--transition);
    cursor: pointer;
}

.product-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 102, 179, 0.2);
    background: linear-gradient(to right, var(--white-color) 0%, var(--section-bg) 100%);
}

.product-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    transition: var(--transition);
}

.product-item:hover i {
    transform: translateX(5px);
}

.product-item span {
    color: var(--text-color);
    font-weight: var(--font-medium);
    line-height: 1.6;
}

/* =============== PRODUCT CATEGORY GROUP =============== */
.product-category-group {
    margin-bottom: var(--mb-3);
}

.product-subheading {
    font-size: var(--h3-font-size);
    color: var(--primary-color);
    margin-bottom: var(--mb-2);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

/* =============== CONTACT FORM =============== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: var(--mb-2);
}

.contact-info__icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
    text-align: center;
}

.contact-info__text h3 {
    font-size: var(--h3-font-size);
    margin-bottom: 0.5rem;
}

.contact-info__text p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.form-group {
    margin-bottom: var(--mb-1-5);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: var(--transition);
}

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

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

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

/* =============== MAP CONTAINER =============== */
.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =============== RESPONSIVE - PAGES =============== */
@media screen and (max-width: 968px) {
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .products-list {
        grid-template-columns: 1fr;
    }
    
    .product-nav {
        gap: 0.5rem;
    }
    
    .product-nav__btn {
        padding: 0.5rem 1rem;
        font-size: var(--small-font-size);
    }
}

@media screen and (max-width: 576px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header__title {
        font-size: var(--h1-font-size);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
