/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu li a {
        font-size: 0.9rem;
        padding: 12px 0;
        color: #1f1f1f;
    }
    
    .nav-menu li a:hover {
        color: #1fb3ff;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 0.85rem;
        background: #1fb3ff;
    }
    
    .hero-container {
        gap: 40px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-visual {
        width: 350px;
        height: 350px;
    }
    
    .cleaning-scene {
        width: 250px;
        height: 250px;
    }
    
    .hero-stats {
        gap: 25px;
        padding: 0 40px;
        margin: 60px auto 0;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .nav-container {
        position: relative;
    }
    
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Hide desktop language menu on tablet */
    .language-menu {
        display: none;
    }
    
    /* Logo değişimi */
    .desktop-logo {
        display: none;
    }
    
    .mobile-logo {
        display: block;
        width: 180px;
        height: 36px;
        object-fit: contain;
        filter: drop-shadow(0 4px 8px rgba(31, 31, 31, 0.1));
    }
    
    /* Logo container positioning fix */
    .nav-center {
        z-index: 1001;
    }
    
    /* Hero Section Tablet */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 30px;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-visual {
        width: 300px;
        height: 300px;
    }
    
    .cleaning-scene {
        width: 200px;
        height: 200px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 40px;
        margin: 60px auto 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 60px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .mobile-logo {
        width: 160px;
        height: 32px;
        object-fit: contain;
        filter: drop-shadow(0 4px 8px rgba(31, 31, 31, 0.1));
    }
    
    /* Hero Section Mobile Large */
    .hero {
        min-height: 100vh;
        padding-top: 100px;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-features {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta {
        padding: 14px 30px;
        font-size: 1rem;
        justify-content: center;
    }
    
    .hero-visual {
        width: 250px;
        height: 250px;
    }
    
    .cleaning-scene-3d {
        width: 180px;
        height: 180px;
    }
    
    /* Cleaning tools mobile size */
    .cleaning-tool-3d {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .scene-element.house {
        font-size: 3rem;
    }
    
    .scene-element.sparkle {
        font-size: 1.2rem;
    }
    
    .scene-element.cleaning-tool {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 25px;
        margin-top: 50px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .services, .about, .contact {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .about-card {
        padding: 20px 15px;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-icon i {
        font-size: 1.6rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .mobile-logo {
        width: 140px;
        height: 28px;
        object-fit: contain;
    }
    
    /* Hero Section Mobile Small */
    .hero {
        min-height: 100vh;
        padding-top: 120px;
    }
    
    .hero-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-features {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    .hero-actions {
        gap: 12px;
    }
    
    .hero-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-visual {
        width: 200px;
        height: 200px;
    }
    
    .cleaning-scene-3d {
        width: 150px;
        height: 150px;
    }
    
    /* Cleaning tools mobile small size */
    .cleaning-tool-3d {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .scene-element.house {
        font-size: 2.5rem;
    }
    
    .scene-element.sparkle {
        font-size: 1rem;
    }
    
    .scene-element.cleaning-tool {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
        margin-top: 40px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .services, .about, .contact {
        padding: 50px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 18px 15px;
    }
    
    .about-icon {
        width: 55px;
        height: 55px;
    }
    
    .about-icon i {
        font-size: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
    }
    
    .about-feature {
        font-size: 0.8rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px 10px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Contact Info for Small Mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-card {
        padding: 15px 12px;
        min-height: 140px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    .contact-details h3 {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .contact-link {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .contact-card {
        padding: 15px;
        min-height: auto;
    }
}

/* ===== LANGUAGE MENU RESPONSIVE ===== */
@media (max-width: 768px) {
    .language-menu {
        margin: 10px 0;
        width: 100%;
    }
    
    .language-toggle {
        padding: 10px 16px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        min-width: auto;
        border-radius: 20px;
        transition: all 0.15s ease;
    }
    
    .language-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: 0 4px 12px rgba(31, 31, 31, 0.08);
        border: 1px solid rgba(31, 179, 255, 0.1);
        background: rgba(255, 255, 255, 0.95);
        padding: 8px;
        margin-top: 8px;
        border-radius: 12px;
        transition: all 0.15s ease;
    }
    
    .language-menu:hover .language-dropdown {
        transform: none;
    }
    
    .language-dropdown a {
        padding: 10px 12px;
        border-radius: 8px;
        margin: 2px 0;
        font-size: 0.85rem;
        transition: all 0.15s ease;
    }
    
    .language-dropdown a:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .language-toggle {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .language-dropdown a {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}

/* ===== MOBILE MENU STYLES ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(31, 31, 31, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-right: 1px solid rgba(31, 179, 255, 0.1);
    overflow-y: auto;
    padding: 0;
    visibility: hidden;
    opacity: 0;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(31, 179, 255, 0.1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 2;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1fb3ff, #1a9ee6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(31, 179, 255, 0.3);
}

.mobile-menu-close:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(31, 179, 255, 0.4);
}

.mobile-menu-content {
    padding: 30px 25px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 5px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    text-decoration: none;
    color: #1f1f1f;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(31, 179, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu a:hover {
    color: #1fb3ff;
    background: linear-gradient(135deg, rgba(31, 179, 255, 0.1), rgba(26, 158, 230, 0.1));
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(31, 179, 255, 0.15);
    border-color: rgba(31, 179, 255, 0.3);
}

.mobile-menu a i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: #666;
}

.mobile-menu a:hover i {
    color: #1fb3ff;
    transform: rotate(90deg);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    margin: 5px 0;
    border: 1px solid rgba(31, 179, 255, 0.05);
}

.mobile-dropdown.active {
    max-height: 300px;
}

.mobile-dropdown a {
    padding: 15px 20px 15px 40px;
    font-size: 0.95rem;
    font-weight: 500;
    background: transparent;
    border: none;
    border-radius: 0;
    margin: 0;
    position: relative;
}

.mobile-dropdown a::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #1fb3ff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-dropdown a:hover {
    background: rgba(31, 179, 255, 0.08);
    transform: translateX(5px);
    color: #1fb3ff;
}

.mobile-dropdown a:hover::before {
    opacity: 1;
}

/* Mobile CTA Button */
.mobile-cta {
    margin: 30px 0 20px 0;
    padding: 0 20px;
}

.mobile-cta .cta-button {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    background: linear-gradient(135deg, #1fb3ff, #1a9ee6);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(31, 179, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.mobile-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.mobile-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(31, 179, 255, 0.4);
}

.mobile-cta .cta-button:hover::before {
    left: 100%;
}

.mobile-cta .cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mobile-cta .cta-button:hover i {
    transform: scale(1.1);
}

/* Mobile Language Menu */
.mobile-language-menu {
    margin: 20px 0;
    padding: 0 20px;
}

.mobile-language-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(31, 179, 255, 0.2);
    border-radius: 12px;
    color: #1f1f1f;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-language-toggle:hover {
    background: rgba(31, 179, 255, 0.1);
    border-color: rgba(31, 179, 255, 0.4);
    color: #1fb3ff;
}

.mobile-language-toggle i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mobile-language-toggle.active i {
    transform: rotate(180deg);
}

.mobile-language-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    margin-top: 5px;
    border: 1px solid rgba(31, 179, 255, 0.05);
}

.mobile-language-dropdown.active {
    max-height: 150px;
}

.mobile-language-dropdown a {
    padding: 15px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    background: transparent;
    border: none;
    border-radius: 0;
    margin: 0;
    color: #1f1f1f;
}

.mobile-language-dropdown a:hover {
    background: rgba(31, 179, 255, 0.08);
    color: #1fb3ff;
    transform: translateX(5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
    /* Accessibility improvements */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Show burger menu on tablet and mobile */
@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex !important;
        z-index: 1002;
    }
}

.mobile-menu-btn:focus {
    outline: 2px solid #1fb3ff;
    outline-offset: 2px;
}

.mobile-menu-btn:focus-visible {
    outline: 2px solid #1fb3ff;
    outline-offset: 2px;
}

.mobile-menu-btn:hover {
    background: rgba(31, 179, 255, 0.1);
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: #1f1f1f;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #1fb3ff;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #1fb3ff;
}

/* Mobile Menu Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu li {
    animation: slideInLeft 0.4s ease-out forwards;
    opacity: 0;
}

.mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu li:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu li:nth-child(6) { animation-delay: 0.6s; }

/* Touch-friendly improvements */
@media (max-width: 767px) {
    .mobile-menu a {
        min-height: 50px;
        padding: 15px 20px;
        touch-action: manipulation;
    }
    
    .mobile-dropdown a {
        min-height: 45px;
        padding: 12px 20px 12px 40px;
        touch-action: manipulation;
    }
    
    .mobile-menu-close {
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .mobile-menu-btn {
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
        touch-action: manipulation;
    }
    
    .mobile-language-toggle {
        min-height: 50px;
        touch-action: manipulation;
    }
    
    .mobile-cta .cta-button {
        min-height: 50px;
        touch-action: manipulation;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-menu {
        overflow-y: auto;
        will-change: transform;
    }
    
    .mobile-menu-content {
        padding: 20px 25px;
    }
    
    .mobile-menu a {
        padding: 12px 20px;
        min-height: 40px;
    }
    
    .mobile-dropdown a {
        padding: 10px 20px 10px 40px;
        min-height: 35px;
    }
}

/* Performance optimizations */
.mobile-menu {
    will-change: transform;
    transform: translateX(-100%);
}

.mobile-menu.active {
    will-change: auto;
}

.mobile-dropdown {
    will-change: max-height;
}

.mobile-dropdown.active {
    will-change: auto;
}

/* ===== TOUCH FRIENDLY ELEMENTS ===== */
@media (max-width: 767px) {
    .cta-button, .hero-cta {
        min-height: 44px;
        min-width: 44px;
        background: #1fb3ff;
    }
    
    .nav-menu li a {
        padding: 10px 0;
        color: #1f1f1f;
    }
    
    .nav-menu li a:hover {
        color: #1fb3ff;
    }
}

/* ===== LANDSCAPE ORIENTATION ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* ===== CONTACT RESPONSIVE ===== */
@media (max-width: 991px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 20px 18px;
        min-height: 160px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-cta {
        padding: 30px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 18px 15px;
        min-height: 150px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .contact-link {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 12px 12px 12px 40px;
        font-size: 0.95rem;
    }
    
    .input-wrapper i {
        font-size: 0.9rem;
        left: 12px;
    }
    
    .submit-btn {
        padding: 15px;
        font-size: 1rem;
    }
    
    .contact-cta {
        padding: 25px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-section {
        padding: 18px 12px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .footer-logo-img {
        width: 110px;
        height: 45px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .footer-section {
        padding: 15px 12px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .desktop-footer-logo {
        display: none;
    }
    
    .mobile-footer-logo {
        display: block;
        width: 120px;
        height: 24px;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .social-links {
        justify-content: center;
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        padding: 5px 0;
        font-size: 0.85rem;
    }
    
    .footer-contact p {
        justify-content: center;
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .footer-contact i {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 12px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 35px 0 12px;
    }
    
    .footer-content {
        gap: 12px;
    }
    
    .footer-section {
        padding: 12px 10px;
    }
    
    .footer-section h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .mobile-footer-logo {
        width: 100px;
        height: 20px;
    }
    
    .footer-section p {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
    }
    
    .social-link i {
        font-size: 0.8rem;
    }
    
    .footer-links a {
        padding: 4px 0;
        font-size: 0.8rem;
    }
    
    .footer-contact p {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .footer-contact i {
        font-size: 0.8rem;
    }
} 