/*
Theme Name: Güven Doğalgaz
Theme URI: https://guvenmuhendislikdogalgaz.com
Author: Güven Doğalgaz
Author URI: https://guvenmuhendislikdogalgaz.com
Description: Custom theme for Güven Doğalgaz Mühendislik
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: guvendogalgaz
Tags: responsive, business, doğalgaz, engineering
*/

/* Import CSS from the css folder */
@import url('css/style.css');

/* Gallery Styles */
.gallery-page {
    padding-top: 3rem;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 76px;
    position: relative;
    z-index: 1;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.breadcrumb {
    background: transparent;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Section Intro */
.section-intro {
    margin-bottom: 40px;
}

.section-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.title-separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.title-separator::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -6px;
}

/* Gallery Container */
.gallery-container {
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    transform: translateY(0);
    margin-bottom: 10px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

.gallery-title {
    color: white;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

/* Alert Styles */
.alert-info {
    background-color: rgba(var(--bs-info-rgb), 0.1);
    color: var(--gray-color);
    border: 1px solid rgba(var(--bs-info-rgb), 0.2);
    padding: 20px;
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 10px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 50px 30px !important;
    transition: transform 0.3s ease;
}

.cta-section:hover {
    transform: translateY(-5px);
}

.cta-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 20px;
}

.cta-section .btn {
    padding: 12px 30px;
    font-weight: 600;
    background-color: white;
    color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background-color: var(--dark-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Lightbox customization for gallery */
.lightbox-overlay {
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-container {
    max-width: 800px;
}

.lightbox-caption {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding: 15px;
}

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

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

/* Services Page Styles */
.services-page {
    padding-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
    text-align: center;
    color: var(--primary-color);
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.service-category {
    padding: 3rem 0;
}

/* Districts Section Styles */
.districts-section {
    background-color: rgba(var(--bs-primary-rgb), 0.02);
    padding: 4rem 0;
    position: relative;
}

.districts-grid {
    position: relative;
}

.district-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    border-left: 5px solid transparent;
}

.district-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
}

.district-icon {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.district-card:hover .district-icon {
    background-color: var(--primary-color);
    color: white;
}

.district-content {
    flex-grow: 1;
}

.district-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.district-description {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.district-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.district-services span {
    font-size: 0.75rem;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.district-card:hover .district-services span {
    background-color: rgba(var(--bs-primary-rgb), 0.2);
}

/* Responsive gallery styles */
@media (max-width: 991.98px) {
    .hero-banner {
        height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .gallery-title {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }

    .district-card {
        flex-direction: column;
    }

    .district-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        height: 250px;
        margin-top: 65px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .breadcrumb {
        padding: 8px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-icon {
        width: 40px;
        height: 40px;
    }
    
    .gallery-title {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }

    .district-card {
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }
}

/* Contact Page Styles */
.contact-page {
    padding-top: 3rem;
}

/* Contact Cards */
.contact-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon-container {
    display: flex;
    justify-content: center;
}

.contact-icon-lg {
    width: 80px;
    height: 80px;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-lg {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-details {
    color: var(--gray-color);
}

.contact-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Map Styles */
.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

.map-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    min-width: 250px;
    z-index: 1;
}

.map-heading {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 8px;
}

.map-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.map-locations span {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--dark-color);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.85rem;
}

/* Working Hours */
.working-hours-section {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.working-title, .social-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.working-subtitle, .social-subtitle {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.hours-grid {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.hours-item .day {
    font-weight: 500;
    color: var(--dark-color);
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 600;
}

/* Social Media Section */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-icon-lg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-lg.facebook {
    background-color: #3b5998;
}

.social-icon-lg.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-lg.whatsapp {
    background-color: #25d366;
}

.social-icon-lg:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Contact Styles */
@media (max-width: 991.98px) {
    .contact-icon-lg {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .map-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -20px;
        margin-right: 20px;
        margin-left: 20px;
        z-index: 2;
    }

    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-card {
        margin-bottom: 15px;
    }
    
    .contact-icon-lg {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .map-info {
        margin-right: 10px;
        margin-left: 10px;
        min-width: auto;
        width: calc(100% - 20px);
    }
    
    .social-icons {
        flex-wrap: wrap;
    }

    .district-card {
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }
}

.aksa-logo-subtext {
    font-size: 8px;
    letter-spacing: 1px;
    text-align: right;
    position: absolute;
    right: 0;
    bottom: 0;
    font-weight: bold;
}

.company-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.aksa-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}

.aksa-logo img {
    max-height: 40px;
    border-radius: 6px;
}

.aksa-auth-number {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Ücretsiz Keşif Banner */
.free-inspection-banner {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    padding: 0;
    position: relative;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.free-inspection-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.free-inspection-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.free-inspection-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.free-inspection-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-inspection-text p {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 1rem;
    max-width: 400px;
}

.btn-free-inspection {
    background-color: white;
    color: #b21f1f;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-free-inspection:hover {
    background-color: #f8f9fa;
    color: #1a2a6c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767.98px) {
    .free-inspection-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .free-inspection-text {
        flex-direction: column;
        margin-bottom: 1rem;
    }
    
    .free-inspection-icon {
        margin-bottom: 1rem;
    }
    
    .free-inspection-text p {
        max-width: 100%;
    }
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.logo-text {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.aksa-mini-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 8px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    margin-left: 12px;
}

.aksa-mini-logo {
    height: 24px;
    width: auto;
    border-radius: 3px;
}

.aksa-mini-text {
    font-size: 8px;
    color: #666;
    margin-top: 2px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .aksa-mini-container {
        padding: 3px 6px;
    }
    
    .aksa-mini-logo {
        height: 20px;
    }
    
    .aksa-mini-text {
        font-size: 7px;
    }
}
    