/* ===========================
   MOBILE RESPONSIVE STYLES - PREMIUM EDITION
   =========================== */

/* Tablet and below (768px) */
@media (max-width: 768px) {

    /* Portfolio Grid - 2 columns on tablet */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
        padding: 0 20px;
    }

    .portfolio-item {
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    /* Hero Section - Enhanced */
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* Service Cards */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Pricing Cards */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Section Headers */
    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

/* Mobile phones (480px and below) - PREMIUM STYLING */
@media (max-width: 480px) {

    /* ===== NAVIGATION - Enhanced ===== */
    .navbar {
        padding: 15px 0;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-brand {
        font-size: 1.3rem;
    }

    .brand-icon {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0a0a0f 0%, #1a0f0a 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 40px;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        font-size: 1.2rem;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        color: var(--primary-gold);
        transform: translateX(5px);
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1000;
        padding: 10px;
    }

    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: var(--primary-gold);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* ===== HERO SECTION - Beautiful & Premium ===== */
    .hero {
        padding: 90px 20px 50px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
        margin-bottom: 20px;
        background: rgba(212, 175, 55, 0.15);
        border: 1.5px solid rgba(212, 175, 55, 0.4);
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 20px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .hero-title .gradient-text {
        display: inline-block;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 900;
    }

    .hero-description {
        font-size: 1.05rem;
        line-height: 1.65;
        margin: 0 auto 35px;
        color: rgba(255, 255, 255, 0.85);
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 50px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .btn-primary {
        background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
        box-shadow: 0 6px 24px rgba(218, 165, 32, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 32px rgba(218, 165, 32, 0.5);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(212, 175, 55, 0.3);
        backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.5);
        transform: translateY(-3px);
    }

    /* ===== STATS/FEATURES ===== */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .stat-item {
        text-align: center;
        padding: 15px 10px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .stat-number {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-gold);
        display: block;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* ===== PORTFOLIO GRID - Beautiful Mobile Layout ===== */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
        max-width: 100%;
    }

    .portfolio-item {
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .portfolio-item:active {
        transform: scale(0.98);
    }

    .portfolio-overlay {
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                transparent 100%);
    }

    .portfolio-info h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .portfolio-info p {
        font-size: 0.95rem;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
        box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
    }

    /* ===== SERVICES GRID ===== */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .service-card {
        padding: 30px 24px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* ===== PRICING GRID ===== */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .pricing-card {
        padding: 32px 24px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .price {
        margin-bottom: 24px;
    }

    .amount {
        font-size: 2.5rem;
    }

    .pricing-features {
        margin-bottom: 24px;
    }

    .feature {
        font-size: 0.95rem;
        padding: 12px 0;
    }

    /* ===== SECTION HEADERS ===== */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .section-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
        border-radius: 30px;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.3);
        display: inline-block;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        max-width: 100%;
    }

    /* ===== VIDEO MODAL ===== */
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 0 10px;
        border-radius: 16px;
    }

    .close-modal {
        top: -50px;
        right: 5px;
        background: rgba(212, 175, 55, 0.9);
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    /* ===== FOOTER ===== */
    .footer {
        padding: 40px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer-links {
        text-align: center;
    }

    .footer-link {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    /* ===== GENERAL IMPROVEMENTS ===== */
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Better text readability */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Small mobile (360px and below) - Extra small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .portfolio-grid {
        gap: 20px;
        padding: 0 15px;
    }

    .btn {
        font-size: 0.95rem;
        padding: 16px 28px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 70px 20px 40px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        margin-bottom: 30px;
    }

    .nav-menu {
        padding: 70px 30px 30px;
    }

    .nav-link {
        padding: 15px 0;
    }
}
/* ===== ENHANCED FOOTER FOR MOBILE ===== */
@media (max-width: 480px) {
    .footer {
        padding: 60px 20px 40px !important;
        background: linear-gradient(135deg, #0a0a0f 0%, #1a0f0a 100%);
        border-top: 2px solid rgba(212, 175, 55, 0.2);
        margin-top: 80px;
    }
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
    .footer-brand {
        text-align: center !important;
        margin-bottom: 30px !important;
        padding-bottom: 30px !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    }
    .footer-logo {
        font-size: 1.8rem !important;
        font-weight: 800 !important;
        margin-bottom: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
    }
    .footer-logo .brand-icon {
        font-size: 2rem !important;
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)) !important;
    }
    .footer-logo .brand-text {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        font-weight: 900 !important;
    }
    .footer-description {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        color: rgba(255, 255, 255, 0.75) !important;
    }
    .footer-links {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        text-align: center !important;
    }
    .footer-column {
        padding: 24px 0 !important;
    }
    .footer-column h4 {
        font-size: 1.2rem !important;
        color: var(--primary-gold) !important;
        margin-bottom: 20px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }
    .footer-column a {
        display: block !important;
        padding: 12px 0 !important;
        font-size: 1rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
        transition: all 0.3s ease !important;
    }
    .footer-column a:hover {
  color: var(--primary-gold) !important;
        transform: translateX(5px) !important;
    }
    .footer-bottom {
        margin-top: 50px !important;
        padding-top: 30px !important;
        border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
    }
    .footer-bottom p {
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.6) !important;
        margin-bottom: 24px !important;
    }
    .footer-social {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
        margin-top: 24px !important;
    }
    .footer-social-link {
        padding: 12px 24px !important;
        background: rgba(212, 175, 55, 0.1) !important;
        border: 1.5px solid rgba(212, 175, 55, 0.3) !important;
        border-radius: 25px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(10px) !important;
    }
    .footer-social-link:hover {
        background: rgba(212, 175, 55, 0.2) !important;
        border-color: var(--primary-gold) !important;
        color: var(--primary-gold) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3) !important;
    }
}
