/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-content {
        gap: 3rem;
    }
}

/* Mobile Styles - Large */
@media screen and (max-width: 768px) {
    /* Logo */
    .logo {
        position: relative;
        z-index: 1002;
    }
    
    .logo img {
        height: 90px !important;
        max-width: 100%;
        object-fit: contain;
    }
    
    /* Keep language switcher in top right */
    .nav-actions {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Adjust navbar padding for larger logo */
    .navbar {
        padding: 0.5rem 0;
        z-index: 1100 !important;
        background: rgb(10, 10, 10) !important;
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
    }
    
    .nav-content {
        min-height: 90px;
        align-items: center;
        position: relative;
        background: rgb(10, 10, 10);
        z-index: 1101;
    }
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 145px;
        flex-direction: column;
        background-color: rgb(10, 10, 10);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.8);
        padding: 2rem 0;
        border-top: 2px solid var(--accent-color);
        z-index: 900;
        max-height: calc(100vh - 145px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Slider Navigation */
    .swiper-button-prev,
    .swiper-button-next {
        width: 44px;
        height: 44px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 20px;
    }
    
    .swiper-button-prev {
        left: 15px;
    }
    
    .swiper-button-next {
        right: 15px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Styles - Small */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Ensure navbar is above menu */
    .navbar {
        z-index: 1100 !important;
        background: rgb(10, 10, 10) !important;
    }
    
    /* Navigation */
    .logo img {
        height: 90px !important;
    }
    
    /* Keep nav actions positioned properly */
    .nav-actions {
        right: 10px !important;
    }
    
    .language-switcher {
        gap: 0.3rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .lang-btn span {
        font-size: 1rem;
    }
    
    /* Hero */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    /* Slider Navigation - Small Mobile */
    .swiper-button-prev,
    .swiper-button-next {
        width: 44px;
        height: 44px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 18px;
    }
    
    .swiper-button-prev {
        left: 10px;
    }
    
    .swiper-button-next {
        right: 10px;
    }
    
    .swiper-pagination {
        bottom: 20px !important;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px !important;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    /* About */
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .about-text p:first-child {
        font-size: 1.1rem;
    }
    
    /* Services */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card ul li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
        padding-left: 1.8rem;
        position: relative;
    }
    
    .service-card ul li::before {
        left: 0.3rem;
    }
    
    /* Contact */
    .info-item {
        gap: 1rem;
    }
    
    .info-item i {
        font-size: 1.5rem;
        width: 30px;
    }
    
    .info-item h4 {
        font-size: 1rem;
    }
    
    .info-item p {
        font-size: 1rem;
    }
    
    /* Form */
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-nav a {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
}

/* Very Small Mobile */
@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card ul li {
        padding-left: 2rem;
        line-height: 1.6;
    }
    
    .service-card ul li::before {
        left: 0.5rem;
    }
}

/* Landscape Orientation Adjustments */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .language-switcher,
    .hamburger,
    .hero,
    .contact-form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
    }
    
    section {
        page-break-inside: avoid;
    }
}