/* Base Variables - Boiler Service Theme */
:root {
    --primary-color: #FF6B35;
    /* Vibrant Orange */
    --primary-dark: #E85A2A;
    --secondary-color: #FF8C42;
    --accent-color: #FFD23F;
    --bg-dark: #000000;
    --bg-card: #0a0a0a;
    --bg-light: #121212;
    --text-light: #FFFFFF;
    --text-muted: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    margin-left: 15px;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: transparent;
}

.btn-outline:active {
    transform: scale(0.98);
}

.btn-block {
    display: block;
    width: 100%;
    justify-content: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.98);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    transition: var(--transition);
    animation: pulseCall 2s infinite;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

@keyframes pulseCall {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
    animation: flameFlicker 2s ease-in-out infinite;
}

@keyframes flameFlicker {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.9));
    }
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

.logo-img:hover {
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.5));
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
    opacity: 1;
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 10px 25px;
    border-radius: 25px;
    color: white !important;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #121212 100%),
        url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=1920') no-repeat center center/cover;
    background-blend-mode: overlay;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(10deg);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-badge:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.title-bar {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.about-stats .stat-card:last-child {
    grid-column: span 2;
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-light));
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Services Section */
.services {
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-light));
    padding: 40px 30px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

.service-card:active {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 66, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: rotateY(360deg);
}

.service-card:hover .icon-box i {
    color: white;
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Brands Section */
.brands {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 100%);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.brand-item {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-light));
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

.brand-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 66, 0.1));
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-light)),
        url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=1920') no-repeat center center/cover;
    background-blend-mode: overlay;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: linear-gradient(135deg, rgba(21, 27, 61, 0.9), rgba(30, 39, 73, 0.8));
    backdrop-filter: blur(15px);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-wrapper iframe {
    width: 100% !important;
    height: 450px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 66, 0.1));
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p,
.info-item a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-item a:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-seo {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(255, 107, 53, 0.3));
}

.footer-logo span {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-light));
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-icon {
    font-size: 4rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    animation: flameGlow 2s infinite ease-in-out;
}

@keyframes flameGlow {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 25px rgba(255, 107, 53, 1));
    }
}

.loader-logo {
    width: 80px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: logoPulse 2s infinite ease-in-out;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.9));
    }
}

.energy-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.energy-ring::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid transparent;
    border-left-color: var(--secondary-color);
    border-right-color: var(--primary-color);
    border-radius: 50%;
    animation: spinReverse 2s linear infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 1s ease-out forwards 0.5s;
    font-weight: 700;
}

/* Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 8px;
    }
}

/* Hide Preloader Class */
body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Responsive */

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile landscape and below */
@media (max-width: 900px) {

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        margin-bottom: 35px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .feature-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.99);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
        gap: 5px;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links li a {
        padding: 12px 0;
        display: block;
        font-size: 1rem;
        transition: all 0.2s ease;
    }

    .nav-links li a:hover {
        transform: translateX(5px);
    }

    .btn-contact {
        margin-top: 10px;
        padding: 12px 30px !important;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats .stat-card:last-child {
        grid-column: span 1;
    }

    .stat-card {
        padding: 30px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .brand-item {
        padding: 25px 15px;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile portrait */
@media (max-width: 600px) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
        /* Üstten boşluğu optimize ettik */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.1rem;
        /* Boyutu biraz daha optimize ettik */
        margin-bottom: 20px;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .btn-outline {
        margin-left: 0;
    }

    .feature-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 10px 18px;
    }

    .feature-badge i {
        font-size: 1.1rem;
    }

    .feature-badge span {
        font-size: 0.85rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    .logo-text {
        font-size: 0.8rem;
        letter-spacing: 0.2px;
    }

    .logo-icon {
        font-size: 1.6rem;
    }

    .logo-img {
        height: 32px;
    }

    .footer-logo-img {
        height: 28px;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

    .about-content h3 {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .features-list li {
        font-size: 0.95rem;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .icon-box {
        width: 60px;
        height: 60px;
    }

    .icon-box i {
        font-size: 1.5rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .brand-item {
        padding: 20px 15px;
        font-size: 0.95rem;
    }

    .contact-wrapper {
        padding: 30px 20px;
        gap: 35px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-info>p {
        font-size: 0.95rem;
    }

    .info-item {
        gap: 15px;
        margin-bottom: 25px;
    }

    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .info-item h4 {
        font-size: 0.95rem;
    }

    .info-item p,
    .info-item a {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 35px 0 25px;
    }

    .footer-seo {
        padding-bottom: 25px;
    }

    .footer-seo h5 {
        font-size: 0.8rem !important;
    }

    .footer-seo p {
        font-size: 0.75rem !important;
    }

    .footer-logo span {
        font-size: 1rem;
    }

    .footer-logo i {
        font-size: 1.5rem;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* Fix Loader Text Overflow and Position */
    .loader-text {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    @keyframes textReveal {
        to {
            opacity: 1;
            transform: translateY(0);
            letter-spacing: 4px;
        }
    }

    .loader-content {
        transform: translateY(-5vh);
        /* Move intro up slightly */
    }

    .loader-logo-container {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .loader-logo {
        width: 60px;
    }
}

/* Small mobile devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .logo-text {
        font-size: 0.7rem;
    }

    .logo-img {
        height: 28px;
    }

    .footer-logo-img {
        height: 24px;
    }

    .container {
        width: 92%;
        padding: 0 10px;
    }

    .btn {
        padding: 11px 24px;
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .service-card,
    .stat-card {
        padding: 25px 18px;
    }

    .contact-wrapper {
        padding: 25px 18px;
    }
}