/* Responsive Design */

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

    /* Top bar responsive */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-left .contact-item {
        margin-left: 15px;
    }

    /* Header responsive */
    .header-content {
        padding: 10px 0;
    }

    .logo-main {
        font-size: 1.5rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }

    .logo-icon {
        font-size: 2rem;
    }

    /* Mobile menu */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-link {
        justify-content: center;
        padding: 15px 20px;
        border-radius: 10px;
        margin: 5px 0;
    }

    .nav-link:hover::after {
        display: none;
    }

    /* Hero Section Responsive */
    .hero-content {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .image-container {
        width: 350px;
        height: 350px;
    }

    .image-circle {
        width: 280px;
        height: 280px;
    }

    /* Services responsive */
    .services {
        padding: 60px 0;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    /* About responsive */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-circle {
        width: 300px;
        height: 300px;
    }

    .decorative-circle {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }

    /* Business help responsive */
    .business-help {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .business-content h2 {
        font-size: 2.2rem;
    }

    .business-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .business-cta {
        flex-direction: column;
        align-items: center;
    }

    /* Footer responsive */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* Section transitions responsive */
    .section-divider {
        height: 60px;
    }

    .wave-bottom {
        height: 60px;
    }

    .section-transition {
        height: 60px;
    }

    .transition-line {
        width: 150px;
    }

    .transition-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .diamond-transition {
        height: 60px;
    }

    .diamond {
        width: 40px;
        height: 40px;
    }

    .diamond i {
        font-size: 14px;
    }

    .floating-shapes {
        display: none;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-icon {
        top: 160px;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    /* Business help mobile */
    .business-content h2 {
        font-size: 1.8rem;
    }

    .business-content > p {
        font-size: 1.1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* About mobile adjustments */
    .main-circle {
        width: 250px;
        height: 250px;
    }

    .about-column h2 {
        font-size: 1.8rem;
    }

    .about-column h3 {
        font-size: 1.3rem;
    }

    /* Mobile header adjustments */
    .logo-main {
        font-size: 1.3rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .logo-icon {
        font-size: 1.8rem;
    }

    .logo-content {
        gap: 10px;
    }

    /* Mobile section transitions */
    .section-divider,
    .section-transition,
    .diamond-transition {
        height: 40px;
    }

    .wave-bottom {
        height: 40px;
    }

    .transition-circle,
    .diamond {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }

    .transition-line {
        width: 100px;
    }

    .animated-bg {
        display: none;
    }
}

/* Animation for mobile menu toggle */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}
