* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --primary-dark: #991b1b;
    --secondary-color: #ef4444;
    --accent-color: #000000;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(220, 38, 38, 0.15) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 96px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 58px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 24px;
    margin: 0 12px;
}

.nav-menu-left,
.nav-menu-right {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
    flex: 1;
}

.nav-menu-left {
    justify-content: flex-start;
}

.nav-menu-right {
    justify-content: flex-end;
}

.nav-menu .logo {
    flex: 0 0 auto;
    justify-content: center;
    gap: 0;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffcccc;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(220, 38, 38, 0.3) 100%), url('hero.webp') center center;
    background-size: cover;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-color: #000;
    overflow: hidden;
}

.hero-insaat {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(220, 38, 38, 0.4) 100%), url('insaat-hero.webp') center center;
    background-size: cover;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-color: #000;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        background-size: cover;
        background-position: center center;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-insaat {
        background-size: cover;
        background-position: center center;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }
    
    .hero-insaat {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
}

@media (max-width: 768px) {
    .hero-overlay {
        height: 100%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    width: 100%;
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 10px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        padding: 0;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
        line-height: 1.4;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 1.25rem;
        margin-bottom: 0.6rem;
        line-height: 1.25;
        padding: 0;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
        padding: 0;
        line-height: 1.35;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

@media (max-width: 768px) {
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 300px;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 15px;
    }
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    position: relative;
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator span {
        width: 25px;
        height: 40px;
    }
}

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

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

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
        padding: 0;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
        padding: 0 5px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 5px;
    }
}

.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        gap: 30px;
    }
    
    .about-text h3 {
        font-size: 1.25rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-item h4 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-item h4 {
        font-size: 1.75rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder img,
.image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.vertical-photo {
    background: var(--bg-white);
    padding: 60px 0;
}

.vertical-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vertical-photo-text {
    padding-right: 20px;
}

.vertical-photo-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vertical-photo-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vertical-photo-image {
    display: flex;
    justify-content: flex-end;
}

.image-vertical {
    max-width: 400px;
    width: 100%;
}

.image-vertical img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .image-placeholder {
        border-radius: 20px;
    }
    
    .vertical-photo {
        padding: 40px 0;
    }
    
    .vertical-photo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vertical-photo-text {
        padding-right: 0;
        order: 1;
    }
    
    .vertical-photo-image {
        justify-content: center;
        order: 2;
    }
    
    .image-vertical {
        max-width: 100%;
    }
    
    .vertical-photo-text h3 {
        font-size: 1.5rem;
    }
    
    .vertical-photo-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .image-placeholder {
        border-radius: 18px;
    }
}

.small-photo-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 60px 0;
}

.small-photo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.small-photo-text {
    padding-right: 30px;
}

.small-photo-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.small-photo-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.small-photo-wrapper {
    max-width: 450px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    padding: 12px;
    margin-left: auto;
}

.small-photo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .small-photo-section {
        padding: 40px 0;
    }
    
    .small-photo-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .small-photo-text {
        padding-right: 0;
        text-align: center;
        order: 1;
    }
    
    .small-photo-wrapper {
        max-width: 350px;
        margin: 0 auto;
        order: 2;
    }
    
    .small-photo-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .small-photo-section {
        padding: 30px 0;
    }
    
    .small-photo-content {
        gap: 25px;
    }
    
    .small-photo-wrapper {
        max-width: 280px;
        padding: 10px;
        border-radius: 20px;
    }
    
    .small-photo-wrapper img {
        border-radius: 15px;
    }
    
    .small-photo-text h3 {
        font-size: 1.3rem;
    }
    
    .small-photo-text p {
        font-size: 0.95rem;
    }
}

.service-list-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .service-list-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .service-list-content {
        gap: 15px;
    }
}

.service-list-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.service-list-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-list-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-list-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .service-list-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-list-item {
        padding: 25px 20px;
    }
    
    .service-list-item h3 {
        font-size: 1.15rem;
    }
    
    .service-list-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .service-list-item {
        padding: 20px 15px;
    }
    
    .service-list-item h3 {
        font-size: 1.05rem;
    }
    
    .service-list-item p {
        font-size: 0.9rem;
    }
}

.services {
    background: var(--bg-light);
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 15px;
    }
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    border-image: linear-gradient(135deg, var(--accent-color), var(--primary-color)) 1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.vehicles {
    background: var(--bg-white);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vehicle-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.vehicle-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.image-placeholder-small {
    width: 100%;
    height: 100%;
}

.image-placeholder-small svg {
    width: 100%;
    height: 100%;
}

.vehicle-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    padding: 0 1.5rem;
}

.vehicle-card p {
    color: var(--text-light);
    padding: 0 1.5rem 2rem;
    line-height: 1.8;
}

.contact {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #dc2626 100%);
    color: white;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

.contact .section-title::after {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item p {
    opacity: 0.9;
    line-height: 1.8;
    word-wrap: break-word;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .contact-icon {
        font-size: 1.75rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        gap: 30px;
    }
    
    .contact-item {
        gap: 12px;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

@media (max-width: 480px) {
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

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

.contact-form .btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
}

.contact-form .btn-primary:hover {
    background: var(--bg-light);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.3;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-left: 10px;
    padding-right: 10px;
}

.footer-bottom p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 20px;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        margin: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu-left,
    .nav-menu-right {
        flex-direction: column;
        width: 100%;
        flex: 0 0 auto;
        gap: 10px;
        align-items: center;
    }

    .nav-menu .logo {
        margin: 10px 0 20px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 20px;
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding-top: 30px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}

a, button {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    a, button {
        min-height: 48px;
    }
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

