/* --------------------------
   11. Large Screens (Widescreen)
--------------------------- */
@media (min-width: 1440px) {
    /* Increase container width for wider layouts */
    .container {
        max-width: 100%; 
        padding: 0 80px;
    }

    /* Scale up Hero Typography */
    .hero-title {
        font-size: 7.5rem; /* Increased from 6rem */
    }

    .hero-description {
        font-size: 1.25rem;
        max-width: 48rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        letter-spacing: 0.5em;
    }

    /* Scale up Section Titles */
    .display-title {
        font-size: 3.75rem; /* Increased from 3rem */
    }

    /* Give cards more breathing room vertically */
    .card {
        height: 440px; /* Increased from 380px */
    }
    
    .card-face {
        padding: 3.5rem 2.5rem;
    }

    .card-icon {
        font-size: 4rem; /* Larger icons */
    }

    /* Adjust spacing for large sections */
    .pain-points-section,
    .services-section,
    .results-section {
        padding: 8rem 0;
    }

    /* Larger Result Numbers */
    .result-number {
        font-size: 4rem;
    }

    /* Refine Contact Section scale */
    .contact-title {
        font-size: 4.5rem;
    }
}

/* Sticky CTA */
.sticky-cta {
    display: none; /* 1. HIDDEN by default on Desktop */
    align-items: center;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .sticky-cta {
        display: block; /* 2. VISIBLE on Mobile */
        position: fixed;
        bottom: 10px;
        right: 0;
        left: 0;
        width: calc(100% - 2rem); /* Add some margin so it doesn't touch edges */
        margin: 0 auto;           /* Center it */
        z-index: 9999;
        text-align: center;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
        border-radius: 5px; /* Keep corners rounded on mobile for a cleaner look */
    }
}

/* Mobile-only adjustments */
@media (max-width: 767px) {
    .navbar-container {
        justify-content: flex-start; /* Pushes everything to the left */
        gap: 1rem; /* Adjust this value to change the space between the menu and logo */
    }
}
.phone-link {
    text-decoration: none !important;
    color: var(--color-orange); /* Highlighted for better conversion */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap; /* Prevents wrapping on small screens */
}

/* Mobile-specific tweaks */
@media (max-width: 768px) {
    .phone-link {
        font-size: 0.875rem; /* Shrinks the text slightly */
    }
    
    /* Optional: If it's still too tight, shrink the logo a bit on mobile */
    .logo-icon img {
        width: 7rem; 
        height: auto;
    }
}

/* Secondary Button (Outline Style) */
.btn-secondary { display: inline-block;padding: 1rem 2rem;background-color: transparent;border: 2px solid var(--color-concrete); /* Uses existing grey variable */
               color: var(--color-white);text-decoration: none; text-transform: uppercase; font-family: var(--font-display); /* Uses your Oswald font */
               font-weight: 700;letter-spacing: 0.05em;border-radius: 4px; transition: all 0.3s ease;
}

.btn-secondary:hover {border-color: var(--color-orange); /* Glows orange on hover */color: var(--color-orange);background-color: rgba(249, 115, 22, 0.1); /* Subtle orange tint background */transform: translateY(-2px);box-shadow: 0 4px 12px rgba(0,0,0,0.5);}
