/* ========================================
   Arewa Beats Entertainment - Full CSS
   Single file: All styles included
   ======================================== */

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: #f9f9fb;
    color: #222;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* === Header - Modern, Responsive, Non-Sticky === */
.site-header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #eee;
    transition: box-shadow 0.3s ease;
    z-index: 1000;
}

.site-header:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    transition: padding 0.3s ease;
}

/* Logo Styling */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo a:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    border: 2px solid #a63cff;
    padding: 2px;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    background: linear-gradient(90deg, #00d4ff, #a63cff, #ff40b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* === Navigation Menu === */
.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #7b2cbf;
}

/* Dropdown Menu */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 0.8rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown .dropdown-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    color: #444;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.dropdown .dropdown-menu li a:hover {
    background: #f3f0ff;
    color: #7b2cbf;
    padding-left: 1.2rem;
}

/* === Mobile Hamburger Menu === */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hamburger:hover {
    opacity: 0.8;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu ul {
        position: absolute;
        right: 15px;
        top: 80px;
        background: white;
        flex-direction: column;
        width: 80%;
        max-width: 300px;
        padding: 1.2rem 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .nav-menu ul.show {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-menu ul li {
        margin: 0.5rem 0;
    }

    /* Mobile Dropdown */
    .dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f9f9fb;
        padding-left: 1.2rem;
        box-shadow: none;
        border-left: 3px solid #a63cff;
    }

    .dropdown .dropdown-menu li a {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        color: #555;
    }
}
/* === Sticky Transparent Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1.2rem 0;
}

/* Solid on scroll */
body.scrolled .site-header {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
}

/* Logo Text in Transparent Mode */
.site-header .logo-text,
.site-header .nav-menu ul li a {
    color: #fff; /* white text when transparent */
    transition: color 0.3s ease;
}

/* Solid Mode: Dark Text */
body.scrolled .site-header .logo-text,
body.scrolled .site-header .nav-menu ul li a {
    color: #222;
}

/* === Sections === */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #222;
}

section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #555;
    font-size: 1.1rem;
}

/* === Gradient Button === */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(90deg, #00d4ff, #a63cff, #ff40b5);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(100, 50, 200, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(100, 50, 200, 0.4);
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    text-align: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #3a1c71, #a63cff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #444;
}

/* === Portfolio Grid === */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.portfolio-item img {
    height: 200px;
    object-fit: cover;
}

.portfolio-item .content {
    padding: 1.2rem;
    background: white;
}

.portfolio-item .content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

/* === Services Cards === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(150, 100, 250, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(150, 100, 250, 0.2);
}

.service-card h3 {
    margin: 1rem 0;
    color: #333;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-card .btn {
    font-size: 0.9rem;
}

/* === About Us Page Styles === */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    text-align: center;
    padding: 6rem 0 4rem;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00d4ff, #a63cff, #ff40b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* About Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0;
}

/* Vision & Mission Section */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.vision-card, .mission-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.vision-card h2, .mission-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.vision-card p, .mission-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

.mission-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.mission-list li {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Team Section */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #222;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.team-member .content {
    padding: 1.5rem;
    background: white;
}

.team-member h3 {
    margin: 0.5rem 0;
    color: #333;
}

.team-member .role {
    color: #7b2cbf;
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.team-member .content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-card, .mission-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .vision-card h2, .mission-card h2 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .vision-card, .mission-card {
        padding: 1.5rem;
    }
    
    .mission-list {
        padding-left: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
/* === Blog Section === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.blog-post img {
    height: 180px;
    object-fit: cover;
}

.blog-post .content {
    padding: 1.5rem;
}

.blog-post .date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.blog-post h3 {
    margin: 0 0 0.8rem;
    font-size: 1.3rem;
}

.blog-post p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* === Team Section === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.team-member img {
    height: 220px;
    object-fit: cover;
}

.team-member .content {
    padding: 1.2rem;
    background: white;
}

.team-member h3 {
    margin: 0.5rem 0;
    color: #333;
}

.team-member .role {
    color: #7b2cbf;
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

/* === Contact Form === */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background: linear-gradient(90deg, #00d4ff, #a63cff, #ff40b5);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(100, 50, 200, 0.3);
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(100, 50, 200, 0.4);
}

/* === Footer === */
.site-footer {
    background: #111;
    color: #ccc;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, #00d4ff, #a63cff, #ff40b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
}

/* === Success Message === */
.success {
    text-align: center;
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 500;
}

/* === Service Pages Specific Styles === */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00d4ff, #a63cff, #ff40b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.content-section.light-bg {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #222;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse .content-text {
    direction: ltr;
}

.content-grid.reverse .content-image {
    direction: ltr;
}

.content-text {
    padding: 2rem 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(90deg, #00d4ff, #a63cff);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: translateY(-10px);
}

/* Productions Grid */
.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.production-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.production-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.production-card.full-width {
    grid-column: 1 / -1;
    display: flex;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.series-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.series-list li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.5;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.video-card {
    text-align: center;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #7b2cbf;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-icon {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    border-radius: 12px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .production-card.full-width {
        grid-column: auto;
    }
    
    .productions-grid {
        grid-template-columns: 1fr;
    }
}
<footer class="site-footer">
  <div class="container">

    <!-- Full-Width Contact Form -->
    <div class="footer-form-wide">
      <h3>Send Us a Message</h3>
      <form action="https://submit-form.com/UxkTB0MvV" method="POST">
        <div class="form-row">
          <input type="text" name="name" placeholder="Your Name" required>
          <input type="email" name="email" placeholder="Your Email" required>
        </div>
        <textarea name="message" rows="4" placeholder="Your Message" required></textarea>
        <button type="submit">Send Message</button>
      </form>
    </div>

    <!-- Footer Content -->
    <div class="footer-content">
      <!-- Logo -->
      <div class="footer-logo">
        <h3>Arewa Beats</h3>
        <p>Powering Northern sound, vision, and culture through music and media.</p>
      </div>
      
      <!-- Quick Links -->
      <div class="footer-links">
        <h4>Quick Links</h4>
        <ul>
          <li><a href="index.php">Home</a></li>
          <li><a href="services.php">Services</a></li>
          <li><a href="blog.php">Blog</a></li>
          <li><a href="about_us.php">About Us</a></li>
          <li><a href="contact.php">Contact</a></li>
        </ul>
      </div>
      
      <!-- Contact Info -->
      <div class="footer-contact">
        <h4>Contact Us</h4>
        <p>Email: info@arewabeats.com</p>
        <p>Phone: +234 813 694 4100</p>
        <p>E6 Melita Plaza Area 11 Garki Abuja, FCT</p>
      </div>
    </div>

    <!-- Bottom Bar -->
    <div class="footer-bottom">
      &copy; <?php echo date('Y'); ?> Arewa Beats Entertainment. All rights reserved. Built by ITIFAN
    </div>
  </div>
</footer>

@media (max-width: 768px) {
    .service-hero {
        padding: 3rem 0;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .content-text h2 {
        font-size: 1.6rem;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .series-list {
        padding-left: 1rem;
    }
}

@media (max-width: 576px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}