/* ===============================================
   ANKA GRUP - Araç Bakım Servisi
   Professional CSS Stylesheet
   =============================================== */

/* === ROOT VARIABLES === */
:root {
    --primary-red: #DC0A2D;
    --dark-red: #B00824;
    --darker-red: #8A0619;
    --light-red: #FF1744;

    --dark-gray: #212121;
    --medium-gray: #424242;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;

    --white: #FFFFFF;
    --black: #000000;

    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    --gradient-dark: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
    --gradient-overlay: linear-gradient(135deg, rgba(220, 10, 45, 0.95), rgba(66, 66, 66, 0.95));

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: #2c2c2c;
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
    font-size: 17px;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #333333;
    line-height: 1.9;
    font-size: 1.1rem;
    font-weight: 400;
}

/* === CONTAINER === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 10, 45, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 10, 45, 0.4);
}

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

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: opacity var(--transition-normal);
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-red);
    filter: drop-shadow(0 2px 4px rgba(220, 10, 45, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--dark-gray);
    position: relative;
    transition: var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 10, 45, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 10, 45, 0.7), rgba(66, 66, 66, 0.7));
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 1200px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-main {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    opacity: 1;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.hero-services {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    min-width: 120px;
}

.hero-service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.hero-service-icon {
    width: 50px;
    height: 50px;
    color: var(--white);
}

.hero-service-item span {
    font-weight: 600;
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-scroll {
    display: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.hero-scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.hero-scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* === STATS SECTION === */
.stats {
    display: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* === SECTION STYLES === */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: #444444;
    line-height: 2;
    font-weight: 400;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.section-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* === ABOUT SECTION === */
.about {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: 3rem;
}

.about-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

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

.about-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.about-card-icon svg {
    width: 35px;
    height: 35px;
}

.about-card-title {
    font-size: 1.75rem;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.about-card-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #3a3a3a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 1rem;
}

.about-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
}

/* === SERVICES SECTION === */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.service-card-featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-card-featured .service-card-title,
.service-card-featured .service-card-description,
.service-card-featured .service-card-list {
    color: var(--white);
}

.service-card-featured .service-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--white);
    color: var(--primary-red);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(220, 10, 45, 0.1), rgba(220, 10, 45, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-red);
}

.service-card-icon svg {
    width: 45px;
    height: 45px;
}

.service-card-title {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-card-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-card-list {
    list-style: none;
}

.service-card-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #3a3a3a;
    border-bottom: 1px solid var(--border-gray);
    font-size: 1.05rem;
}

.service-card-featured .service-card-list li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-card-list li:last-child {
    border-bottom: none;
}

.service-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.service-card-featured .service-card-list li::before {
    color: var(--white);
}

/* === FACILITY SECTION === */
.facility {
    background: var(--dark-gray);
    color: var(--white);
}

.facility .section-title,
.facility .section-subtitle,
.facility .section-description {
    color: var(--white);
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
}

.facility-card {
    background: var(--medium-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.facility-card:hover {
    transform: scale(1.05);
}

.facility-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

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

.facility-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.facility-content {
    padding: 2rem;
}

.facility-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.facility-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* === PORTFOLIO SECTION === */
.portfolio {
    background: var(--light-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.portfolio-card-highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.portfolio-card-highlight h3,
.portfolio-card-highlight p,
.portfolio-card-highlight li {
    color: var(--white);
}

.portfolio-card-highlight .portfolio-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.portfolio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(220, 10, 45, 0.1), rgba(220, 10, 45, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.portfolio-icon svg {
    width: 45px;
    height: 45px;
}

.portfolio-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.portfolio-card p {
    font-size: 1.1rem;
    line-height: 2;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.portfolio-card ul {
    list-style: none;
}

.portfolio-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #3a3a3a;
    font-size: 1.05rem;
}

.portfolio-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.portfolio-card-highlight ul li::before {
    color: var(--white);
}

/* === TEAM SECTION === */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid var(--border-gray);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.team-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
}

.team-icon-wrapper svg {
    width: 50px;
    height: 50px;
}

.team-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.team-card p {
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-details span {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #3a3a3a;
    font-weight: 500;
}

/* === WHY US SECTION === */
.why-us {
    background: var(--gradient-primary);
    color: var(--white);
}

.why-us .section-title,
.why-us .section-subtitle {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.why-number {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.why-icon svg {
    width: 40px;
    height: 40px;
}

.why-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.why-card p {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 400;
}

/* === CUSTOMER SATISFACTION SECTION === */
.customer-satisfaction {
    background: var(--light-gray);
}

.customer-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.customer-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
}

.customer-icon svg {
    width: 45px;
    height: 45px;
}

.customer-content h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.customer-content p {
    font-size: 1.2rem;
    line-height: 2.1;
    color: #3a3a3a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.customer-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.customer-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--light-gray);
    border-radius: 50px;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 1rem;
}

.customer-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
}

/* === CONTACT SECTION === */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.contact-card:hover {
    background: var(--white);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
}

.contact-card-icon svg {
    width: 40px;
    height: 40px;
}

.contact-card h3 {
    font-size: 1.6rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-card a {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    transition: var(--transition-normal);
}

.contact-card a:hover {
    color: var(--dark-red);
}

.contact-card p {
    font-size: 1.05rem;
    color: #444444;
    font-weight: 400;
}

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

/* === FOOTER === */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 2.5rem 2rem 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    transition: opacity var(--transition-normal);
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    color: var(--primary-red);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-logo-text small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
}

.footer-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.footer-column h4 {
    display: none;
}

.footer-column ul {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-column ul li {
    margin-bottom: 0;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.25rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom p {
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .facility-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* Header */
    .header-container {
        padding: 0.75rem 1rem;
    }

    .logo-image {
        height: 50px;
        max-width: 180px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        flex-direction: column;
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--border-gray);
    }

    .nav-link-cta {
        margin-top: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 100px 1rem 80px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-badge {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-title-main {
        font-size: clamp(2rem, 10vw, 3.5rem);
        letter-spacing: 2px;
    }

    .hero-title-sub {
        font-size: clamp(1rem, 5vw, 1.5rem);
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-services {
        gap: 0.75rem;
        justify-content: center;
    }

    .hero-service-item {
        min-width: 90px;
        padding: 1rem 0.75rem;
    }

    .hero-service-icon {
        width: 35px;
        height: 35px;
    }

    .hero-service-item span {
        font-size: 0.85rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .hero-scroll {
        display: none;
    }

    /* Stats */
    .stats {
        padding: 3rem 1rem;
        margin-top: -30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Sections */
    section {
        padding: 4rem 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .section-title::after {
        width: 60px;
    }

    .section-description {
        font-size: 1.05rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }

    .about-card-icon {
        width: 50px;
        height: 50px;
    }

    .about-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .about-card-title {
        font-size: 1.4rem;
    }

    .about-card-text {
        font-size: 0.95rem;
    }

    .about-card-features {
        gap: 1rem;
    }

    .about-feature {
        font-size: 0.9rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card-badge {
        top: -12px;
        right: 20px;
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }

    .service-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-card-icon svg {
        width: 38px;
        height: 38px;
    }

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

    .service-card-description {
        font-size: 0.95rem;
    }

    .service-card-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }

    /* Facility */
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facility-card {
        border-radius: 15px;
    }

    .facility-image {
        height: 250px;
    }

    .facility-content {
        padding: 1.5rem;
    }

    .facility-content h3 {
        font-size: 1.3rem;
    }

    .facility-content p {
        font-size: 0.95rem;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-card {
        padding: 2rem 1.5rem;
    }

    .portfolio-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .portfolio-icon svg {
        width: 38px;
        height: 38px;
    }

    .portfolio-card h3 {
        font-size: 1.4rem;
    }

    .portfolio-card p {
        font-size: 0.95rem;
    }

    .portfolio-card ul li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-card {
        padding: 2rem 1.5rem;
    }

    .team-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }

    .team-icon-wrapper svg {
        width: 45px;
        height: 45px;
    }

    .team-card h3 {
        font-size: 1.3rem;
    }

    .team-card p {
        font-size: 0.95rem;
    }

    .team-details span {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    /* Why Us */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .why-number {
        font-size: 3rem;
        top: -15px;
        right: 20px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon svg {
        width: 35px;
        height: 35px;
    }

    .why-card h3 {
        font-size: 1.3rem;
    }

    .why-card p {
        font-size: 0.95rem;
    }

    /* Customer */
    .customer-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .customer-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .customer-icon svg {
        width: 38px;
        height: 38px;
    }

    .customer-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .customer-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .customer-features {
        flex-direction: column;
        gap: 1rem;
    }

    .customer-feature {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .customer-feature svg {
        width: 20px;
        height: 20px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .contact-card-icon svg {
        width: 35px;
        height: 35px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }

    .contact-card a {
        font-size: 1rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-image {
        height: 45px;
        max-width: 160px;
    }

    .footer-logo .logo-icon {
        width: 40px;
        height: 40px;
    }

    .footer-logo-text span {
        font-size: 1.1rem;
    }

    .footer-logo-text small {
        font-size: 0.65rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .footer-column ul {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .hero-content {
        padding: 0.5rem;
    }

    .hero-title-main {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-title-sub {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero-services {
        gap: 0.5rem;
    }

    .hero-service-item {
        min-width: 75px;
        padding: 0.75rem 0.5rem;
    }

    .hero-service-icon {
        width: 30px;
        height: 30px;
    }

    .hero-service-item span {
        font-size: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    section {
        padding: 3rem 0.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-card,
    .service-card,
    .portfolio-card,
    .team-card,
    .why-card,
    .contact-card {
        padding: 1.5rem 1rem;
    }

    .customer-content {
        padding: 1.5rem 1rem;
    }

    .customer-content h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 998;
    transition: all var(--transition-normal);
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    background: #128C7E;
    animation: none;
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-float svg {
        width: 35px;
        height: 35px;
    }
}

/* Fix horizontal overflow */
html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.container,
.header-container,
section {
    max-width: 100%;
}

.hero-background,
.hero-overlay,
.hero-pattern {
    max-width: 100vw;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p, li, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Prevent images from causing overflow */
img, svg {
    max-width: 100%;
    height: auto;
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    /* Disable hover effects on mobile */
    .service-card:hover,
    .portfolio-card:hover,
    .team-card:hover,
    .why-card:hover {
        transform: none;
    }

    /* Better tap targets */
    a, button, .nav-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Remove 3D transforms on mobile for better performance */
    .service-card,
    .portfolio-card,
    .team-card {
        transform: none !important;
    }

    /* Smooth scroll on iOS */
    * {
        -webkit-overflow-scrolling: touch;
    }
}