/**
 * Silver Feather Media - Desktop/Laptop Optimization CSS
 * Professional desktop layouts while preserving mobile functionality
 * Breakpoints: Desktop 1024px+, Tablet 768px-1023px, Mobile <768px
 */

/* ========================================
   DESKTOP NAVIGATION (1024px+)
   ======================================== */

/*
  IMPORTANT: Use input-capability detection in addition to width.
  This prevents phones/tablets in "Desktop site" mode (wide virtual viewport)
  from being treated as real desktops.
*/
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
    /* Hide mobile hamburger and mobile-only elements */
    .hamburger,
    #menuBtn,
    .mobile-menu,
    #mobileMenu,
    .mobile-menu-overlay,
    #overlay,
    .mobile-menu-close,
    .nav-actions {
        display: none !important;
    }

    /* STABLE Premium Glassmorphism Metallic Navbar */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: 80px;
        transform: translateZ(0);
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transition: background 0.3s ease, box-shadow 0.3s ease;
        background: linear-gradient(180deg, 
            rgba(42, 45, 53, 0.95) 0%, 
            rgba(35, 38, 46, 0.92) 100%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.2),
            0 1px 0 rgba(255, 255, 255, 0.03) inset;
    }

    .header.scrolled {
        background: linear-gradient(180deg, 
            rgba(35, 38, 46, 0.98) 0%, 
            rgba(30, 33, 41, 0.96) 100%);
        box-shadow: 
            0 6px 30px rgba(0, 0, 0, 0.3),
            0 1px 0 rgba(255, 255, 255, 0.05) inset;
        border-bottom-color: rgba(255, 255, 255, 0.12);
    }

    .navbar {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 25px !important;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .nav-logo .logo-img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .nav-logo:hover .logo-img {
        transform: scale(1.05);
    }


    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .desktop-nav a {
        position: relative;
        padding: 12px 22px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: transparent;
        border: 1px solid transparent;
    }

    .desktop-nav a:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .desktop-nav a.active {
        color: #d4a017;
        font-weight: 600;
        background: rgba(212, 160, 23, 0.15);
        border-color: rgba(212, 160, 23, 0.3);
    }

    .desktop-nav a.active::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 22px;
        right: 22px;
        height: 2px;
        background: linear-gradient(90deg, #d4a017, #e8b830);
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
    }

    .nav-cta {
        margin-left: 24px;
        padding: 8px 28px;
        background: linear-gradient(135deg, #d4a017, #e8b830);
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
        border: none;
        white-space: nowrap;
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
        background: linear-gradient(135deg, #e8b830, #f0c840);
    }

    html, body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .hero {
        min-height: 100vh;
        max-height: 900px;
        padding: 0;
        display: flex;
        align-items: center;
        margin-top: 0 !important;
        position: relative;
        border-top: none !important;
        top: 0 !important;
        overflow: hidden;
        background: #2a2d35;
    }

    .header + .hero,
    .header + * + .hero,
    .header + #overlay + #mobileMenu + .hero,
    body > .hero:first-of-type {
        margin-top: 0 !important;
        padding-top: 120px !important;
    }

    .hero-background {
        position: absolute;
        top: 0 !important;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        height: 100%;
    }

    .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    /* Desktop hero video - full cover on large screens */
    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        object-fit: cover;
    }

    section.hero,
    .hero#home,
    #home.hero {
        margin-top: 0 !important;
    }

    /* ========================================
       DESKTOP CTA SECTION (Homepage & Service Pages)
       ======================================== */

    .services-cta-section,
    .service-cta-section {
        background: linear-gradient(135deg, #2a2d35 0%, #3a3d45 100%);
        padding: 40px 0;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(212, 160, 23, 0.1);
        border-bottom: 1px solid rgba(212, 160, 23, 0.1);
    }

    .services-cta-section::before,
    .service-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: -50%;
        width: 200%;
        height: 100%;
        background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.03) 0%, transparent 70%);
        pointer-events: none;
    }

    .services-cta-section .cta-content,
    .service-cta-section .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .services-cta-section h2,
    .service-cta-section h2 {
        font-size: 28px;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 4px;
        letter-spacing: -0.5px;
    }

    .services-cta-section p,
    .service-cta-section p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        margin: 0 auto 8px;
        max-width: 500px;
    }

    .services-cta-section .cta-buttons,
    .service-cta-section .cta-buttons {
        display: flex;
        gap: 16px;
        flex-direction: row;
        max-width: none;
        margin: 0;
    }

    .services-cta-section .btn-large,
    .service-cta-section .btn-large {
        padding: 10px 32px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        border-radius: 50px !important;
    }

    .services-cta-section .btn-primary.btn-large,
    .service-cta-section .btn-primary.btn-large {
        background: linear-gradient(135deg, #d4a017, #e8b830) !important;
        color: #ffffff !important;
        border: none !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3) !important;
    }

    .services-cta-section .btn-primary.btn-large:hover,
    .service-cta-section .btn-primary.btn-large:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 25px rgba(212, 160, 23, 0.4) !important;
        background: linear-gradient(135deg, #e8b830, #f0c840) !important;
    }

    .services-cta-section .btn-secondary.btn-large,
    .service-cta-section .btn-secondary.btn-large {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(10px) !important;
    }

    .services-cta-section .btn-secondary.btn-large:hover,
    .service-cta-section .btn-secondary.btn-large:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
        transform: translateY(-2px) !important;
    }

    /* ========================================
       WHATSAPP FLOATING BUTTON (Desktop)
       ======================================== */
    
    .whatsapp-float,
    .mobile-whatsapp {
        position: fixed !important;
        bottom: 32px !important;
        right: 24px !important;
        width: 64px !important;
        height: 64px !important;
        background: linear-gradient(135deg, #25D366, #128C7E) !important;
        color: #ffffff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        font-size: 28px !important;
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.1) !important;
        z-index: 2147483647 !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
        text-decoration: none !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        transform: translateZ(0) !important;
        will-change: transform, box-shadow !important;
        top: auto !important;
        left: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: pulse 2s infinite !important;
    }

    .whatsapp-float:hover,
    .mobile-whatsapp:hover {
        transform: translateY(-6px) scale(1.1) !important;
        box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5), 0 0 0 6px rgba(37, 211, 102, 0.2) !important;
        background: linear-gradient(135deg, #128C7E, #075E54) !important;
        animation-play-state: paused !important;
    }

    .whatsapp-float:active,
    .mobile-whatsapp:active {
        transform: scale(0.95) !important;
    }

    .hero .container {
        max-width: 1400px;
        padding: 0 48px;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .hero-text h1 {
        font-size: clamp(48px, 5vw, 72px);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -2px;
        margin-bottom: 24px;
    }

    .hero-text p {
        font-size: 20px;
        line-height: 1.7;
        color: #6b6f78;
        margin-bottom: 40px;
        max-width: 540px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero-buttons .btn {
        padding: 16px 36px;
        font-size: 16px;
        font-weight: 600;
    }

    .hero-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        max-width: 600px;
        border-radius: 24px;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    }

    /* ========================================
       DESKTOP CONTAINERS & SECTIONS
       ======================================== */
    
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 48px;
    }

    section {
        padding: 100px 0;
    }

    .service-hero {
        padding-top: 100px !important;
    }

    .section-header {
        margin-bottom: 60px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .section-header p {
        font-size: 20px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* "Pan India Services" subtitle - 50% of heading size (24px from 48px h2) with semi-bold */
    .hero-subtitle-section .section-header p {
        font-size: 24px;
        font-weight: 600;
    }

    /* Desktop Portfolio Grid */
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .portfolio-item {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        background: white;
    }

    .portfolio-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .portfolio-item .portfolio-image {
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }

    .portfolio-item .portfolio-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .portfolio-item:hover .portfolio-image img {
        transform: scale(1.08);
    }

    .portfolio-item .portfolio-content {
        padding: 28px;
    }

    .portfolio-item .portfolio-content h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #1e293b;
    }

    .portfolio-item .portfolio-content p {
        font-size: 14px;
        line-height: 1.6;
        color: #6b6f78;
        margin-bottom: 16px;
    }

    /* Desktop Clients Grid */
    .clients-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .client-card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        background: white;
    }

    .client-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .client-card .client-image {
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }

    .client-card .client-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .client-card:hover .client-image img {
        transform: scale(1.08);
    }

    .client-card .client-content {
        padding: 24px;
    }

    .client-card .client-content h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #1e293b;
    }

    .client-card .client-content p {
        font-size: 14px;
        line-height: 1.6;
        color: #6b6f78;
        margin-bottom: 12px;
    }

    .client-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .client-tags .tag {
        padding: 4px 10px;
        background: #e8e9eb;
        color: #2a2d35;
        font-size: 11px;
        font-weight: 500;
        border-radius: 6px;
    }

    /* Desktop Team Section */
    .team-section {
        padding: 100px 0;
    }

    .team-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 48px;
    }

    .team-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #e5e7eb;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        min-height: 160px;
    }

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-color: #d1d5db;
    }

    .team-image-wrapper {
        position: relative;
        width: 160px;
        min-width: 160px;
        height: 160px;
        overflow: hidden;
        flex-shrink: 0;
        border-radius: 12px;
        margin: 0;
    }

    .team-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transition: transform 0.4s ease;
    }

    .team-card:hover .team-image {
        transform: scale(1.03);
    }

    .team-content {
        padding: 24px 28px;
        text-align: left;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: white;
    }

    .team-name {
        font-size: 20px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .team-role,
    .team-role.member-role {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #d4a017 !important;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .team-description {
        font-size: 14px;
        line-height: 1.6;
        color: #6b6f78;
        max-width: 100%;
    }

    /* Desktop Footer */
    .footer {
        background: linear-gradient(135deg, #1a1d24 0%, #2a2d35 50%, #32353d 100%);
        padding: 80px 0 30px;
        color: white;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 48px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.8fr 1fr 1.5fr;
        gap: 60px;
        margin-bottom: 48px;
    }

    .footer-brand {
        max-width: 320px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .footer-logo span {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.3px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 24px;
    }

    .footer-social {
        display: flex;
        gap: 10px;
    }

    .footer-social .social-link {
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-social .social-link:hover {
        transform: translateY(-3px);
        color: white;
    }

    .footer-social .social-link[aria-label="Facebook"] {
        color: #1877F2;
    }
    .footer-social .social-link[aria-label="Twitter"] {
        color: #1DA1F2;
    }
    .footer-social .social-link[aria-label="Instagram"] {
        color: #E1306C;
    }
    .footer-social .social-link[aria-label="LinkedIn"] {
        color: #0A66C2;
    }

    .footer-social .social-link[aria-label="Facebook"]:hover {
        background: #1877F2;
        border-color: #1877F2;
        box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35);
    }

    .footer-social .social-link[aria-label="Twitter"]:hover {
        background: #1DA1F2;
        border-color: #1DA1F2;
        box-shadow: 0 6px 20px rgba(29, 161, 242, 0.35);
    }

    .footer-social .social-link[aria-label="Instagram"]:hover {
        background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
        border-color: transparent;
        box-shadow: 0 6px 20px rgba(225, 48, 108, 0.35);
    }

    .footer-social .social-link[aria-label="LinkedIn"]:hover {
        background: #0A66C2;
        border-color: #0A66C2;
        box-shadow: 0 6px 20px rgba(10, 102, 194, 0.35);
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section h4 {
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 20px;
        padding-bottom: 12px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        position: relative;
    }

    .footer-section h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 36px;
        height: 2.5px;
        background: #d4a017;
        border-radius: 2px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.25s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 4px 0;
    }

    .footer-links a:hover {
        color: #d4a017;
        padding-left: 6px;
    }

    .footer-links a i {
        font-size: 10px;
        color: #d4a017;
        opacity: 1;
        transition: transform 0.25s ease;
    }

    .footer-links a:hover i {
        transform: translateX(3px);
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: rgba(255, 255, 255, 0.55);
        font-size: 14px;
        line-height: 1.6;
        padding: 4px 0;
    }

    .footer-contact-item i {
        width: 18px;
        color: #d4a017;
        margin-top: 3px;
        flex-shrink: 0;
        text-align: center;
        font-size: 15px;
    }

    .footer-bottom {
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-copyright {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.4);
        margin: 0;
        letter-spacing: 0.02em;
    }

    .footer-legal {
        display: flex;
        gap: 24px;
    }

    .footer-legal a {
        color: rgba(255, 255, 255, 0.4);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.25s ease;
        position: relative;
    }

    .footer-legal a:not(:last-child)::after {
        content: '|';
        position: absolute;
        right: -14px;
        color: rgba(255, 255, 255, 0.15);
    }

    .footer-legal a:hover {
        color: #d4a017;
    }

    /* ========================================
       DESKTOP CONTACT SECTION
       ======================================== */

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 40px;
    }

    .contact-info {
        max-width: 700px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-info h3 {
        font-size: 28px;
        font-weight: 800;
        color: #ffffff;
        text-align: center;
        margin-bottom: 4px;
    }

    .contact-info .contact-item {
        padding: 20px 24px;
    }

    .contact-info .contact-item i {
        font-size: 22px;
    }

    .contact-info .contact-item p {
        font-size: 15px;
    }

    .contact-social {
        display: flex;
        gap: 16px;
        margin-top: 16px;
        justify-content: center;
    }

    .contact-social .social-link {
        width: 52px;
        height: 52px;
        font-size: 20px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .contact-social .social-link:hover {
        transform: translateY(-4px) scale(1.1);
        color: #ffffff;
    }

    .contact-social .social-link[aria-label="Facebook"]:hover {
        background: #1877F2;
        border-color: #1877F2;
        box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    }

    .contact-social .social-link[aria-label="Twitter"]:hover {
        background: #000000;
        border-color: #000000;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .contact-social .social-link[aria-label="Instagram"]:hover {
        background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        border-color: #d6249f;
        box-shadow: 0 8px 25px rgba(214, 36, 159, 0.4);
    }

    .contact-social .social-link[aria-label="LinkedIn"]:hover {
        background: #0A66C2;
        border-color: #0A66C2;
        box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4);
    }

    /* Desktop Team Collaboration Section */
    .team-collaboration-section {
        padding: 100px 0;
    }

    .team-collab-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 800px;
        margin: 0 auto;
    }

    .team-collab-card {
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-collab-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .team-collab-card .team-collab-image {
        height: 400px;
        aspect-ratio: auto;
    }

    .team-collab-card .team-collab-image img {
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-collab-card:hover .team-collab-image img {
        transform: scale(1.08);
    }

    .team-collab-card-content {
        padding: 28px 32px;
    }

    .team-collab-card-content .team-collab-description {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ========================================
   TABLET OPTIMIZATION (768px - 1023px)
   ======================================== */

@media (min-width: 768px) and (max-width: 1023px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex !important;
    }

    .team-grid,
    .clients-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

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

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .service-hero-buttons {
        justify-content: center;
    }
}

/* ========================================
   LARGE DESKTOP (1400px+)
   ======================================== */

@media (min-width: 1400px) {
    .navbar,
    .container,
    .footer-container {
        max-width: 1600px;
    }

    .hero-text h1 {
        font-size: 72px;
    }

    .section-header h2 {
        font-size: 56px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   GLOBAL KEYFRAMES (for WhatsApp floating button)
   ======================================== */

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.2);
    }
}
