/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* Color System */
    --broadcast-primary: hsl(215, 25%, 27%);
    --broadcast-secondary: hsl(217, 91%, 60%);
    --broadcast-accent: hsl(217, 91%, 60%);
    --background: hsl(0, 0%, 98%);
    --foreground: hsl(215, 25%, 27%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(215, 25%, 27%);
    --muted: hsl(214, 13%, 91%);
    --muted-foreground: hsl(215, 16%, 47%);
    --border: hsl(214, 13%, 91%);
    
    /* Gradients */
    --broadcast-gradient: linear-gradient(135deg, hsl(215, 25%, 27%), hsl(217, 91%, 60%));
    --broadcast-hero-gradient: linear-gradient(135deg, hsl(215, 25%, 27%) 0%, hsl(215, 25%, 32%) 50%, hsl(217, 91%, 60%) 100%);
    --broadcast-card-gradient: linear-gradient(145deg, hsl(0, 0%, 100%), hsl(214, 13%, 96%));
    
    /* Shadows */
    --shadow-professional: 0 4px 20px -2px hsla(215, 25%, 27%, 0.1);
    --shadow-equipment: 0 8px 32px -4px hsla(215, 25%, 27%, 0.15);
    --shadow-hero: 0 20px 60px -10px hsla(215, 25%, 27%, 0.3);
    
    /* Transitions */
    --transition-professional: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--broadcast-gradient);
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid var(--border); */
    transition: var(--transition-professional);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    background: transparent;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon img{
    height: 50px;
    width: fit-content;
}

.logo-title {
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--broadcast-primary);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--card);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-professional);
}

.nav-link:hover {
    color: var(--broadcast-accent);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-number {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--broadcast-primary);
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--broadcast-primary);
    transition: var(--transition-professional);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-professional);
}

.btn-professional {
    background: var(--broadcast-primary);
    color: white;
    box-shadow: var(--shadow-professional);
}

.btn-professional:hover {
    background: hsl(215, 25%, 32%);
    transform: translateY(-1px);
}

.btn-hero {
    background: var(--broadcast-gradient);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-hero);
}

.btn-hero:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 25px 70px -15px hsla(215, 25%, 27%, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline:hover {
    background: white;
    color: var(--broadcast-primary);
}

.btn-full {
    width: 100%;
}

    /* Intro splash screen styles */
#introSplash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease;
}

#introSplash.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-logo {
    position: relative;
    max-width: 150px;
}
.intro-content h1{
    font-size: 3rem;
}
.intro-content p{
    font-size: 1.3rem;
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 0 5rem 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Background layers */
.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%; /* slightly larger for parallax depth */
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(32, 64, 100, 0.5), rgba(37, 11, 29, 0.3), rgba(0, 0, 0, 0.8), transparent);
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title-gradient {
    background: linear-gradient(to right, var(--broadcast-accent), white);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 64rem;
    margin: 1rem auto;

    
}

.stat {
    padding: 10px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
  /* border: 1px solid rgba(255, 255, 255, 0.1, transparent); */
  border-radius: 10px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(10%);
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); */
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--broadcast-accent);
    margin-bottom: 0.5rem;
}
.stat-duration{
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--broadcast-accent);
    margin-bottom: 0.5rem;
}
.stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    margin-bottom: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--broadcast-primary);
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--broadcast-card-gradient);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-equipment);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -8px hsla(215, 25%, 27%, 0.2);
}

.service-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--broadcast-primary);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--broadcast-accent);
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--broadcast-gradient);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info {
    color: white;
}

.contact-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-title-accent {
    color: var(--broadcast-accent);
    display: block;
}

.contact-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--broadcast-accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
}

.contact-detail-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-container {
    background: var(--card);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-hero);
}

.contact-form-header {
    margin-bottom: 1.5rem;
}

.form-title {
    font-size: 1.5rem;
    color: var(--broadcast-primary);
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--muted-foreground);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: var(--transition-professional);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--broadcast-accent);
    box-shadow: 0 0 0 3px hsla(217, 91%, 60%, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--broadcast-primary);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-company {
    max-width: 24rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(-135deg, var(--broadcast-accent), rgba(255, 255, 255, 0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo-icon img{
    width: 2.5rem;
    height: 2.5rem;
}

.footer-logo-title {
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-logo-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-professional);
}

.social-link:hover {
    color: var(--broadcast-accent);
}

.footer-heading {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-professional);
}

.footer-link:hover {
    color: var(--broadcast-accent);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-professional);
}

.footer-bottom-link:hover {
    color: var(--broadcast-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .logo-icon img {
        height: 40px;
        width: auto;
    }
    .header-cta{
        display: none;
    }
    .phone-number {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-content{
        position: relative;
        top: 5rem;
        padding: 0 0 2rem 0;
    }
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .scroll-indicator{
        display: none;
    }
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
     .nav {
            position: absolute;
            top: 10%;
            width: max-content;
            /* left: 0; */
            right: 0;
            background: linear-gradient(135deg, hsl(215, 86%, 25%), hsl(216, 32%, 31%));;
            color: black;
            display: flex;
            flex-direction: column;
            padding: 1rem;
            box-shadow: var(--shadow-professional);
            border-radius: 10px;
            transform: translateY(-20px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .nav-link{
            color: var(--broadcast-accent);
        }
        .nav.nav-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 4.5rem;
        /* left: 0; */
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
            color: black;
        }
        
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        .notification {
        font-family: inherit;
    }
    
    }





