/* styles.css - Global Styles for Zone Studio */

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

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Hide body until language is initialized */
body:not(.lang-ready) {
    visibility: hidden;
    opacity: 0;
}

/* Prevent text size adjustment on iOS */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    direction: ltr; /* Keep nav structure fixed */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: ltr; /* Keep logo position fixed */
}

.logo a {
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    transition: opacity 0.3s ease;
    direction: ltr; /* Keep nav links order controlled by JavaScript */
}

.nav-links li {
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: transform, opacity;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #87CEEB;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: ltr; /* Keep language button position fixed */
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.lang-btn:hover {
    background: rgba(135, 206, 235, 0.3);
    border-color: rgba(135, 206, 235, 0.5);
    color: #87CEEB;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 50%, #E0F6FF 100%);
    opacity: 0.1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.15; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.hero h1 {
    font-size: 96px;
    font-weight: bold;
    letter-spacing: 20px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 24px;
    letter-spacing: 4px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

/* Page Header */
.page-header {
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(176, 224, 230, 0.1) 100%);
}

.page-header h1 {
    font-size: 64px;
    letter-spacing: 10px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 20px;
    opacity: 0.7;
    letter-spacing: 3px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.4);
    background: linear-gradient(135deg, #A8D8F0 0%, #C8E8F0 100%);
}

/* Sections */
section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Home Page Styles */
.home-intro {
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 900px;
    margin: 0 auto 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.stat-number {
    font-size: 64px;
    font-weight: bold;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.7;
    text-transform: uppercase;
}

.home-services-preview {
    background: rgba(255, 255, 255, 0.02);
    padding: 100px 50px;
    text-align: center;
}

.home-projects-preview {
    padding: 100px 50px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-preview-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.service-preview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(135, 206, 235, 0.5);
}

.service-preview-card h3 {
    color: #87CEEB;
    margin-bottom: 15px;
    font-size: 24px;
    letter-spacing: 2px;
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(135, 206, 235, 0.5);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #87CEEB;
    letter-spacing: 2px;
}

.service-card p {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    opacity: 0.7;
}

.service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #87CEEB;
}

.cta-section {
    text-align: center;
    padding: 80px 50px;
    background: rgba(255, 255, 255, 0.02);
}

/* Projects Page */
.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

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

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(135, 206, 235, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(176, 224, 230, 0.3) 100%);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
}

.project-type {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.project-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #87CEEB;
    letter-spacing: 1px;
}

.project-description {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 15px;
}

.project-award {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(135, 206, 235, 0.2);
    border: 1px solid rgba(135, 206, 235, 0.4);
    border-radius: 20px;
    font-size: 12px;
    color: #87CEEB;
    letter-spacing: 1px;
    margin-top: 10px;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.5), transparent);
    margin: 80px 0;
}

/* Studio Page */
.studio-features {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.team-section {
    margin-top: 80px;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(135, 206, 235, 0.5);
}

.team-photo {
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
    border-radius: 10%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(100, 206, 235, 0.3) 0%, rgba(176, 224, 230, 0.3) 100%);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #87CEEB;
}

.team-role {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-bio {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
}

/* Contact Page */
.contact-section {
    padding: 80px 50px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s;
}

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #87CEEB;
        background: rgba(255, 255, 255, 0.08);
    }

    /* Prevent iOS zoom on input focus */
    @media screen and (max-width: 768px) {
        .form-group input,
        .form-group select,
        .form-group textarea {
            font-size: 16px !important;
        }
    }

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 18px 50px;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.4);
    background: linear-gradient(135deg, #A8D8F0 0%, #C8E8F0 100%);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item h4 {
    color: #87CEEB;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.contact-info-item p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.8;
}

.social-links {
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(135, 206, 235, 0.2);
    border-color: rgba(135, 206, 235, 0.5);
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Tablet and Mobile */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .logo img {
        height: 35px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links a {
        font-size: 11px;
        letter-spacing: 1px;
        padding: 5px 0;
    }

    .language-switcher {
        margin-top: 10px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
        padding: 0 20px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: 4px;
        margin-top: 180px;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }

    .hero p {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .page-header {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .page-header h1 {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .page-header p {
        font-size: 16px;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    section {
        padding: 40px 15px;
    }

    /* Make projects section more compact on mobile */
    .home-projects-preview {
        padding: 30px 15px;
    }

    .home-services-preview {
        padding: 40px 15px;
    }

    .home-intro {
        padding: 40px 15px;
    }

    .intro-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .project-image {
        height: 160px;
    }

    .project-content {
        padding: 14px;
    }

    .project-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .project-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .project-type {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .home-projects-preview {
        padding: 40px 20px;
    }

    .home-projects-preview h2 {
        font-size: 26px;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    /* Improve general text readability on mobile */
    body {
        font-size: 16px;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Projects page optimizations */
    .page-header + section {
        padding-top: 30px;
    }

    .service-card {
        padding: 18px;
    }

    .service-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .service-preview-card {
        padding: 18px;
    }

    .service-preview-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .service-preview-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 11px;
        letter-spacing: 1px;
        margin-top: 25px;
    }

    .home-services-preview {
        padding: 40px 15px;
    }

    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-preview-card {
        padding: 15px;
    }

    .service-preview-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .service-preview-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .contact-section {
        padding: 40px 15px;
    }

    .contact-container {
        gap: 30px;
    }

    .contact-form-wrapper h2,
    .contact-info-wrapper h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        -webkit-appearance: none;
        border-radius: 10px;
    }

    /* Map container mobile optimization */
    .location-section iframe,
    iframe[src*="google.com/maps"] {
        width: 100% !important;
        height: 300px !important;
        min-height: 300px;
    }

    .submit-button {
        padding: 12px 30px;
        font-size: 11px;
        width: 100%;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-icon {
        padding: 10px 20px;
        font-size: 12px;
    }

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

    .team-photo {
        width: 120px;
        height: 120px;
    }

    footer {
        padding: 30px 20px;
        font-size: 12px;
    }
}

/* Map container styles */
.location-section {
    padding: 60px 20px;
}

.location-section iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Small Mobile Devices (iPhone SE, etc.) */
@media (max-width: 480px) {
    nav {
        padding: 12px 15px;
    }

    .logo img {
        height: 30px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .hero {
        height: 60vh;
        min-height: 350px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 28px;
        letter-spacing: 3px;
        margin-top: 150px;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }

    .hero p {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .page-header {
        padding-top: 200px;
        padding-bottom: 50px;
    }

    .page-header h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }

    h2 {
        font-size: 24px;
        letter-spacing: 1px;
    }

    section {
        padding: 30px 12px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 10px;
    }

    .project-image {
        height: 140px;
    }

    .project-card h3 {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .project-content {
        padding: 12px;
    }

    .project-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .project-type {
        font-size: 9px;
        margin-bottom: 8px;
    }

    .home-projects-preview {
        padding: 25px 12px;
        padding-top: 90px;
    }

    .home-projects-preview h2 {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .home-intro {
        padding: 30px 12px;
    }

    .home-services-preview {
        padding: 30px 12px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Improve text readability on small phones */
    body {
        font-size: 15px;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 11px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-card {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .service-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .contact-form-wrapper h2,
    .contact-info-wrapper h2 {
        font-size: 20px;
    }

    .form-group label {
        font-size: 12px;
    }

    .submit-button {
        padding: 14px 30px;
    }

    .social-icon {
        padding: 8px 16px;
        font-size: 11px;
    }

    /* Map on small screens */
    .location-section iframe,
    iframe[src*="google.com/maps"] {
        height: 250px !important;
        min-height: 250px;
    }

    .location-section {
        padding: 40px 15px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .page-header {
        padding-top: 100px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-links a,
    .cta-button,
    .submit-button,
    .social-icon,
    .lang-btn {
        min-height: 44px; /* Minimum touch target size */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .project-card,
    .service-card,
    .service-preview-card {
        transition: transform 0.2s;
    }

    .project-card:active,
    .service-card:active {
        transform: scale(0.98);
    }
}