/* ================================
   Noor Temizlik - Professional Steam Cleaning Services
   Modern, Responsive, SEO-Optimized Styles with Service Details
   ================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Variables */
:root {
    --primary-color: #2C5282;
    --secondary-color: #D69E2E;
    --accent-color: #25D366;
    --steam-color: #1E90FF;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(44, 82, 130, 0.1);
    --shadow-hover: 0 8px 30px rgba(44, 82, 130, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #2C5282 0%, #3182CE 100%);
    --gradient-secondary: linear-gradient(135deg, #D69E2E 0%, #ECC94B 100%);
    --gradient-steam: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 82, 130, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.nav-logo .logo-img {
    height: 80px;
    width: auto;
}

/* Mobile Brand Text */
.mobile-brand {
    display: none;
}

.mobile-brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 20px;
}

/* Fixed Contact Buttons */
.fixed-contacts {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    transition: var(--transition);
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
}

.phone-btn {
    background: var(--gradient-primary);
}

.whatsapp-btn {
    background: var(--accent-color);
}

.scroll-top-btn {
    background: var(--gradient-secondary);
    font-size: 20px;
}

.fixed-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

/* Pulse Animation */
.pulse {
    position: relative;
}

.pulse::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-color);
}

.highlight {
    background: var(--gradient-steam);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    color: var(--steam-color);
    font-size: 16px;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.card-content p {
    color: var(--text-light);
    font-size: 14px;
}

/* About Section */
.about {
    background: var(--background-light);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.story-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.story-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
}

.story-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.mission,
.vision {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.mission:hover,
.vision:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 32px;
}

.mission h3,
.vision h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.mission p,
.vision p {
    color: var(--text-light);
    line-height: 1.7;
}

.values {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.values h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value-item {
    padding: 20px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 40px;
    color: var(--steam-color);
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.value-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Services Section - Updated with Images and Expandable Details */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-summary {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-toggle {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.service-toggle:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
}

.service-toggle i {
    font-size: 12px;
    transition: var(--transition);
}

.service-toggle.active i {
    transform: rotate(180deg);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--background-light);
}

.service-details.active {
    max-height: 1000px;
    padding: 30px;
}

.details-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.details-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.details-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-light);
}

.service-features i {
    color: var(--steam-color);
    font-size: 14px;
    flex-shrink: 0;
}

.service-process {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.service-process h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-process ol {
    color: var(--text-light);
    padding-left: 20px;
}

.service-process ol li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Steam Technology Section */
.steam-technology {
    background: var(--background-light);
}

.steam-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.steam-info {
    position: relative;
}

.steam-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.steam-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.steam-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-steam);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    margin: 0 auto;
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Service Areas */
.areas {
    background: var(--background-light);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.area-type {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.area-type:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.area-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}

.area-type h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.area-type p {
    color: var(--text-light);
    line-height: 1.6;
}

.districts {
    text-align: center;
}

.districts h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
}

.districts-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.district {
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.district:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Section */
.contact {
    background: var(--background-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.contact-content p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-cta {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.cta-feature i {
    color: var(--steam-color);
    font-size: 24px;
}

/* Maps Section */
.maps-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--background-light);
}

.maps-header {
    text-align: center;
    margin-bottom: 25px;
}

.maps-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.maps-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.maps-address i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.maps-code {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

.maps-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.maps-container:hover {
    box-shadow: var(--shadow-hover);
}

.maps-container iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: none;
    border-radius: var(--border-radius);
}

/* Footer */
.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    margin-bottom: 20px;
    margin-left: 25px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e0;
}

.footer-contact-item i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

.developer-credit {
    text-align:center;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.developer-link {
    color: #58D68D !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.developer-link:hover {
    color: #2E86C1 !important;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .contact-container,
    .steam-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-story,
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile Brand Display */
    .mobile-brand {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        transition: var(--transition);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-contact {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-features,
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .fixed-contacts {
        right: 15px;
        bottom: 15px;
    }
    
    .fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .service-details.active {
        max-height: 1500px;
        padding: 20px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer Content Center for Mobile */
    .footer-content {
        text-align: center;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .services-grid,
    .areas-grid {
        gap: 20px;
    }
    
    .service-card,
    .area-type,
    .contact-item {
        padding: 20px;
    }

    .service-content {
        padding: 20px;
    }

    .service-details.active {
        padding: 15px;
        max-height: 1200px;
    }

    .service-image {
        height: 200px;
    }
    
    .districts-list {
        gap: 10px;
    }
    
    .district {
        padding: 8px 15px;
        font-size: 14px;
    }

    .hero-img {
        height: 300px;
    }

    .floating-card {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 12px;
        gap: 8px;
    }
    
    .card-content h3 {
        font-size: 18px;
    }
    
    .card-content p {
        font-size: 11px;
    }

    .footer-logo-img {
        height: 300px;
        margin: 0 auto;
    }

    .story-img,
    .steam-img {
        height: 350px;
    }

    .about-story {
        gap: 25px;
    }

    .mission,
    .vision {
        padding: 25px;
    }

    .values {
        padding: 30px 20px;
    }

    .mobile-brand-text {
        font-size: 18px;
    }

    .fixed-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .scroll-top-btn {
        font-size: 16px;
    }
}

/* Image Loading and Display Fix */
img {
    display: block;
    max-width: 100%;
    height: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.3s ease;
}

img[src] {
    opacity: 1;
}

/* Service Images Specific */
.service-img,
.hero-img,
.story-img,
.steam-img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Print Styles */
@media print {
    .header,
    .fixed-contacts {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}