* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(231, 76, 60, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #000;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 7rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-content nav {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text h3 {
    font-size: 0.875rem;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo-text p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    nav {
        display: flex;
    }
}

nav a {
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

nav a:hover {
    color: #e74c3c;
}

/* Language Switcher */
.language-switcher {
    display: none;
}

@media (min-width: 768px) {
    .language-switcher {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.lang-btn.active {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -4px);
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 1rem;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu a {
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    transition: all 0.3s;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:active {
    background: #f8f8f8;
    color: #e74c3c;
}

.mobile-menu-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 0.5rem 1rem;
}

.mobile-menu-languages {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    justify-content: center;
}

.mobile-menu-languages .lang-btn {
    flex: 1;
    max-width: 80px;
}

@media (min-width: 768px) {
    .mobile-menu-divider,
    .mobile-menu-languages {
        display: none;
    }
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 8rem 0;
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-background.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    color: #ff9999;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero-tag {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .hero-tag {
        margin-bottom: 1.5rem;
    }
}

.hero h1 {
    color: #fff;
    margin-bottom: 2rem;
}

.hero h1 .red {
    color: #e74c3c;
}

.hero p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero p {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: #e74c3c;
    color: #fff;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about {
    padding: 3rem 0;
    background: #f3f3f3;
}

@media (min-width: 768px) {
    .about {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .about {
        padding: 5rem 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 640px) {
    .about-grid {
        gap: 2.5rem;
    }
}

@media (min-width: 768px) {
    .about-grid {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-left {
    background: #000;
    color: #fff;
    padding: 2rem 1.5rem;
    position: relative;
    clip-path: none;
}

@media (min-width: 768px) {
    .about-left {
        padding: 3rem;
        clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 100%);
        padding-top: 4rem;
    }
}

.about-left h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.about-left h2 .red {
    color: #e74c3c;
}

.about-left p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .stats {
        gap: 1.5rem;
    }
}

.stat-box {
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #e74c3c;
}

@media (min-width: 768px) {
    .stat-box {
        padding: 1.5rem;
    }
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

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

@media (min-width: 640px) {
    .services {
        gap: 1rem;
    }
}

.service-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border-radius: 0.5rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

@media (min-width: 768px) {
    .service-item {
        gap: 1rem;
        padding: 1.25rem;
    }
}

.service-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #e74c3c;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

.service-item:hover .service-icon {
    background: #e74c3c;
    color: #fff;
}

.service-content h3 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.service-content p {
    font-size: 0.75rem;
    color: #666;
}

/* Carousel Section */
.projects {
    padding: 3rem 0;
    background: #000;
}

@media (min-width: 768px) {
    .projects {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .projects {
        padding: 5rem 0;
    }
}

.projects-header {
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .projects-header {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 768px) {
    .projects-header {
        margin-bottom: 3rem;
    }
}

.section-tag {
    display: inline-block;
    color: #e74c3c;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .section-tag {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
}

.projects h2 {
    color: #fff;
}

.carousel {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 0.5rem;
}

.carousel-container {
    position: relative;
    aspect-ratio: 4 / 3;
}

@media (min-width: 480px) {
    .carousel-container {
        aspect-ratio: 16 / 9;
    }
}

@media (min-width: 768px) {
    .carousel-container {
        aspect-ratio: 21 / 9;
    }
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.4),
        transparent
    );
}

@media (max-width: 640px) {
    .carousel-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.3)
        );
    }
}

.carousel-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    max-width: 600px;
    padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .carousel-content {
        padding: 1.5rem;
        padding-bottom: 3rem;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .carousel-content {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .carousel-content {
        padding: 4rem;
    }
}

.carousel-subtitle {
    display: inline-block;
    color: #e74c3c;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .carousel-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .carousel-subtitle {
        margin-bottom: 1rem;
    }
}

.carousel-title {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: clamp(1.25rem, 4vw, 3rem);
}

@media (min-width: 768px) {
    .carousel-title {
        margin-bottom: 1rem;
    }
}

.carousel-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .carousel-description {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .carousel-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.carousel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

@media (min-width: 640px) {
    .carousel-tags {
        gap: 0.5rem;
    }
}

.carousel-tag {
    padding: 0.25rem 0.5rem;
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.5);
    color: rgba(231, 76, 60, 1);
    font-size: 0.625rem;
    font-weight: 500;
    border-radius: 0.25rem;
}

@media (min-width: 640px) {
    .carousel-tag {
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
    }
}

.carousel-play {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

@media (min-width: 640px) {
    .carousel-play {
        width: 48px;
        height: 48px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .carousel-play {
        width: 64px;
        height: 64px;
        bottom: 3rem;
        right: 3rem;
    }
}

.carousel-play:hover {
    background: #c0392b;
}

.carousel-play svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.carousel-controls {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}

@media (min-width: 768px) {
    .carousel-controls {
        display: flex;
    }
}

.carousel-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: all;
}

@media (min-width: 768px) {
    .carousel-btn {
        width: 48px;
        height: 48px;
    }
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

@media (min-width: 640px) {
    .carousel-indicators {
        bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .carousel-indicators {
        bottom: 1.5rem;
    }
}

.indicator {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
    .indicator {
        width: 8px;
        height: 8px;
    }
}

.indicator.active {
    background: #e74c3c;
    width: 24px;
    border-radius: 3px;
    border-color: #e74c3c;
}

@media (min-width: 640px) {
    .indicator.active {
        width: 32px;
        border-radius: 4px;
    }
}

/* Team Section */
.team {
    padding: 3rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .team {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .team {
        padding: 5rem 0;
    }
}

.team-header {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .team-header {
        margin-bottom: 3rem;
    }
}

.team-header p {
    color: #666;
    max-width: 600px;
    font-weight: 300;
    margin-top: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .team-grid {
        gap: 2rem;
    }
}

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

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    transition: all 0.3s;
}

.team-member-image {
    position: relative;
    overflow: hidden;
    background: #ddd;
    aspect-ratio: 1;
    margin-bottom: 1rem;
    border: 3px solid #000;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .team-member-image {
        margin-bottom: 1.5rem;
        border: 4px solid #000;
    }
}

.team-member:hover .team-member-image {
    border-color: #e74c3c;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(231, 76, 60, 0);
    transition: background 0.3s;
}

.team-member:hover .team-member-image::after {
    background: rgba(231, 76, 60, 0.1);
}

.team-member h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: #e74c3c;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.team-member-bio {
    color: #666;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Corporate Section */
.corporate {
    padding: 3rem 0;
    background: #f3f3f3;
}

@media (min-width: 768px) {
    .corporate {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .corporate {
        padding: 5rem 0;
    }
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .corporate-grid {
        gap: 2rem;
    }
}

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

.corporate-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e5e5;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .corporate-card {
        padding: 2rem;
    }
}

.corporate-card:hover {
    border-color: #e74c3c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.corporate-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
    font-size: 1.25rem;
}

@media (min-width: 640px) {
    .corporate-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
}

.corporate-card:hover .corporate-card-icon {
    background: #e74c3c;
    color: #fff;
}

.corporate-card h3 {
    font-size: 1rem;
    color: #e74c3c;
    margin-bottom: 0.75rem;
}

.corporate-card p {
    color: #666;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: #000;
    color: #fff;
}

@media (min-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .contact {
        padding: 5rem 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .contact-grid {
        gap: 3rem;
    }
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        gap: 5rem;
    }
}

.contact-info h2 {
    color: #fff;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .contact-info h2 {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 768px) {
    .contact-info h2 {
        margin-bottom: 3rem;
    }
}

.contact-info h2 .red {
    color: #e74c3c;
}

.contact-item {
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .contact-item {
        margin-bottom: 2rem;
    }
}

.contact-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1rem;
    font-weight: 300;
}

@media (min-width: 640px) {
    .contact-value {
        font-size: 1.125rem;
    }
}

.contact-value a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: #ff6b5b;
}

.contact-form {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #333;
}

@media (min-width: 640px) {
    .contact-form {
        padding: 2rem;
    }
}

.contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .form-group {
        margin-bottom: 1.5rem;
    }
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #333;
    border: 1px solid #555;
    border-radius: 0.5rem;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

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

.form-group button {
    width: 100%;
    padding: 0.875rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group button:hover {
    background: #c0392b;
}

/* Footer */
footer {
    padding: 2rem 0;
    background: #000;
    border-top: 1px solid #333;
}

@media (min-width: 640px) {
    footer {
        padding: 2.5rem 0;
    }
}

@media (min-width: 768px) {
    footer {
        padding: 3rem 0;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 640px) {
    .footer-content {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}

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

.footer-text {
    color: #999;
    font-size: 0.875rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e74c3c;
}

/* Utilities */
.red {
    color: #e74c3c;
}

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

.mt-4 {
    margin-top: 1rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
    /* Smaller hero text on very small screens */
    .hero {
        padding: 3rem 0;
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    /* Stack language switcher on very small screens */
    .language-switcher {
        flex-wrap: wrap;
    }

    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }

    /* Smaller header */
    .header-content {
        height: 70px;
    }

    .logo img {
        height: 38px;
    }

    /* Better button sizing */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    /* Carousel improvements */
    .carousel-play {
        width: 40px;
        height: 40px;
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .carousel-play svg {
        width: 16px;
        height: 16px;
    }

    .carousel-description {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Form improvements */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Stat improvements */
    .stat-number {
        font-size: 1.5rem;
    }

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

    /* Section headings */
    h2 {
        font-size: clamp(1.75rem, 5vw, 3rem);
    }

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

.language-switcher {
    position: relative;
}

.language-current {
    border: none;
    background: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    min-width: 50px;
    display: none;
    z-index: 50;
}

.language-dropdown.open {
    display: block;
}

.language-dropdown a {
    display: block;
    padding: 12px 16px;
    color: #222;
    font-weight: 600;
    text-decoration: none;
}

.language-dropdown a:hover {
    background: #f2f2f2;
}

.language-dropdown a.active {
    background-color: #e74c3c;
    color: white;
}

/* Landscape mobile improvements */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2.5rem 0;
    }

    .carousel-container {
        aspect-ratio: 16 / 7;
    }

    .about,
    .team,
    .corporate,
    .contact {
        padding: 2.5rem 0;
    }

    .projects {
        padding: 2rem 0;
    }
}

/* Tablet improvements */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .btn {
        flex: 1 1 auto;
        min-width: 150px;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .carousel-btn {
        width: 48px;
        height: 48px;
    }

    .indicator {
        width: 12px;
        height: 12px;
    }

    .indicator.active {
        width: 40px;
    }

    /* Better button hover states for touch */
    .btn:active {
        transform: scale(0.98);
    }

    .lang-btn:active {
        transform: scale(0.95);
    }
}

/* Print styles */
@media print {
    header,
    .hero-buttons,
    .carousel-controls,
    .carousel-indicators,
    .contact-form,
    .footer-links {
        display: none;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-content {
        color: #000;
    }

    .hero h1 {
        color: #000;
    }
}

.events-link {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;

    border: 2px solid #e74c3c;
    border-radius: 999px;

    color: #e74c3c !important;
    font-weight: 700;

    transition: 0.3s;
}

.events-link:hover {
    background: #e74c3c;
    color: #fff !important;
}

.events-link span {
    transition: 0.3s;
}

.events-link:hover span {
    transform: translate(3px, -3px);
}

.mobile-events-link {
    justify-content: center;
    margin-bottom: 12px;
}
