/* ===== style.css - iPRODUCTION CLASSY BLACK & RED ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-lighter: #1a1a1a;
    --red: #f00909;
    --red-dark: #7a1818;
    --red-light: #b90c0c;
    --gold: #9b8c6e;
    --text: #f0f0f0;
    --text-muted: #ffffff;
    --border: #575757;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--black);
    color: var(--text);
    font-family:'Times New Roman', Georgia, serif;
    line-height: 1.6;
    font-weight: 300;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 0.75rem; }
h4 { font-size: 1.2rem; font-weight: 400; margin-bottom: 1rem; }

.accent { color: var(--red); }
.section-sub {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--red);
    margin-bottom: 0.5rem;
}
.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--red), transparent);
    margin: 1rem 0 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.4s;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-primary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--red);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--red);
    transition: left 0.4s;
    z-index: -1;
}

.btn-primary:hover::before { left: 0; }

.btn-outline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(157,31,31,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== NAVBAR LOGO (BIG + PREMIUM) ===== */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

/* Logo image */
.logo img {
    width: 55px;
    height: auto;
    object-fit: contain;
}

/* Logo text */
.logo a span {
    color: #ffffff;
    font-family: 'Times New Roman', Georgia, serif;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 1px;
}
/* Mobile - smaller logo */
@media (max-width: 800px) {
    .logo img {
        width: 45px;
    }
    
    .logo a span {
        font-size: 1.2rem;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--red);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black-light);
    border: 1px solid var(--border);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ===== PREMIUM HERO SECTION - OPTIMIZED FOR DARK PODCAST BG ===== */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('../images/home.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Smart layered overlay (center light preserved, edges darker) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(0,0,0,0.0) 0%,
      rgba(0,0,0,0.0) 60%,
      rgba(0,0,0,0.0) 100%);
  z-index: 1;
}

/* Extra left-side gradient (for text clarity if left aligned) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(209, 209, 209, 0) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Hero Content (Glass effect + premium feel) */
.hero-content {
  max-width: 800px;
  background: rgba(0, 0, 0, 0.35);
  padding: 2.5rem;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  border-left: 3px solid #ff4d4d;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Section Subtitle */
.hero .section-sub {
  font-size: 0.95rem;
  letter-spacing: 5px;
  color: #ff4d4d;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

/* Main Heading */
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  color: #ffffff;

  text-shadow: 
    0 2px 10px rgba(0,0,0,0.9),
    0 4px 25px rgba(0,0,0,0.7);

  letter-spacing: -0.02em;
}

/* Highlighted Text */
.hero-highlight {
  color: #ff4d4d;
  position: relative;
  display: inline-block;

  text-shadow: 
    0 0 10px rgba(255,77,77,0.7),
    0 0 20px rgba(255,77,77,0.4);
}

/* Description Text */
.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.97);
  max-width: 650px;
  margin: 1.5rem 0 2rem;
  line-height: 1.8;
  font-weight: 400;

  text-shadow: 
    0 2px 6px rgba(0,0,0,0.85);
}

.hero-description p {
  margin-bottom: 0.5rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 2rem 0 2rem;
}

/* Primary Button */
.btn-primary {
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 1rem 2.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 77, 77, 0.35);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: #ff4d4d;
  border: 1px solid #ff4d4d;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 77, 77, 0.5);
}

/* Outline Button */
.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1rem 2.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: #ff4d4d;
  color: #ff4d4d;
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

/* Brochure Button */
.btn-brochure {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(6px);
}

.btn-brochure:hover {
  border-color: #ff4d4d;
  color: #ff4d4d;
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.btn-brochure i {
  font-size: 0.9rem;
}

/* Scroll Button */
.scroll-btn {
  margin-top: 2rem;
}

.scroll-btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  font-weight: 500;
}

.scroll-btn a i {
  color: #ff4d4d;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.scroll-btn a:hover {
  color: #ff4d4d;
  border-bottom-color: #ff4d4d;
  transform: translateY(2px);
}

.scroll-btn a:hover i {
  transform: translateY(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-content {
    padding: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-primary,
  .btn-outline,
  .btn-brochure {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }

  .hero .section-sub {
    font-size: 0.8rem;
    letter-spacing: 4px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    width: 100%;
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--black), var(--black-light));
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}
.breadcrumb a:hover { color: var(--red); }

/* ===== CARDS ===== */
.grid-3, .grid-4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
    background: var(--black-light);
    border: 1px solid var(--border);
    transition: all 0.4s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-content { padding: 1.5rem; }
.card-content h3 { color: var(--red); font-size: 1.3rem; }
.card-content p { color: var(--text-muted); margin-bottom: 1rem; }

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tags span {
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 2px solid var(--red);
    padding-left: 0.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}
.stat h3 { font-size: 2.5rem; color: var(--red); margin-bottom: 0.25rem; }
.stat p { color: var(--text-muted); text-transform: uppercase; font-size: 0.8rem; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    background: var(--black-light);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.info-item i {
    color: var(--red);
    width: 20px;
}
.info-item a, .info-item span {
    color: var(--text-muted);
    text-decoration: none;
}
.info-item a:hover { color: var(--red); }

.form-group { margin-bottom: 1.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: var(--black-light);
    border: 1px solid var(--border);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
}
.pricing-card:hover { border-color: var(--red); transform: scale(1.02); }
.pricing-card .price {
    font-size: 3rem;
    color: var(--red);
    margin: 1rem 0;
}
.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}
.pricing-card li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

/* ===== FAQ ===== */
.faq-item {
    background: var(--black-light);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}
.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question h3 { margin: 0; color: var(--red); }
.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    display: none;
}
.faq-item.active .faq-answer { display: block; }

/* ===== FOOTER ===== */
.footer {
    background: #070707;
    border-top: 1px solid rgba(157,31,31,0.1);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--red);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 0.6rem;
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn { width: 100%; text-align: center; }
}
/* FIXED SCROLL BUTTON STYLES */
.scroll-btn {
    margin-top: 2rem;
}

.scroll-btn a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.scroll-btn a i {
    color: var(--red);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.scroll-btn a:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.scroll-btn a:hover i {
    transform: translateY(3px);
}

/* ===== POPUP MODAL STYLES ===== */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.popup-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    margin: 50px auto;
    padding: 30px;
    border: 1px solid #9D1F1F;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #9D1F1F;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close-popup:hover {
    color: #fff;
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(157, 31, 31, 0.3);
    padding-bottom: 15px;
}

.popup-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #9D1F1F;
}

.launch-offer {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

.launch-offer span {
    color: #9D1F1F;
    display: block;
    margin-top: 5px;
    font-weight: 600;
}

.form-row {
    margin-bottom: 15px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #9D1F1F;
}

.form-row.checkbox {
    display: flex;
    align-items: center;
}

.form-row.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-row.checkbox label {
    color: #aaa;
    font-size: 0.9rem;
}

.btn-popup {
    background: #9D1F1F;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-popup:hover {
    background: #7a1818;
}

/* Floating Contact Button */
.btn-popup-open {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #9D1F1F;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 9999;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #9D1F1F;
    transition: all 0.3s;
}

.btn-popup-open:hover {
    background: transparent;
    color: #9D1F1F;
}
/* ===== NAVIGATION TEXT WHITE - FIX ===== */
.nav-menu a {
    color: #ffffff !important;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff4d4d !important;
}

/* Dropdown menu items also white */
.dropdown-menu a {
    color: #ffffff !important;
}

.dropdown-menu a:hover {
    color: #ff4d4d !important;
    background: rgba(255, 77, 77, 0.1);
}

/* Logo text also white */
.logo a span {
    color: #ffffff !important;
}

.logo a i {
    color: #ff4d4d !important;
}
/* ===== PREMIUM MOBILE RESPONSIVE - LIKE REFERENCE SITE ===== */

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.8rem;
    }
    
    .hero-content {
        max-width: 90%;
    }
}

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 1.2rem;
    }
    
    /* Navigation - Hamburger style */
    .navbar-container {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: block !important;
        background: transparent;
        border: 1px solid #ff4d4d;
        color: #ff4d4d;
        padding: 0.6rem 1rem;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }
    
    /* Dropdown on mobile */
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(0,0,0,0.5);
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        border: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Hero Section - Full width with centered text */
    .hero {
        min-height: 70vh;
        text-align: center;
        background-position: 70% center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 2rem 1.5rem;
        backdrop-filter: blur(12px);
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: -0.02em;
    }
    
    .hero .section-sub {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin: 1.2rem auto;
        text-align: center;
    }
    
    /* Buttons - Full width on mobile */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .btn, .btn-primary, .btn-outline, .btn-brochure {
        width: 100%;
        max-width: none;
        text-align: center;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Grid Layouts - Single column */
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Cards - Enhanced styling */
    .card {
        transition: transform 0.3s;
    }
    
    .card:hover {
        transform: translateY(-5px);
    }
    
    .card-img {
        height: 200px;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
    
    /* Section Headers */
    section {
        padding: 3rem 0;
    }
    
    h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .section-sub {
        text-align: center;
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .divider {
        margin: 0.8rem auto 1.5rem;
    }
    
    /* About Page */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .stats {
        justify-content: center;
        gap: 2rem;
    }
    
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    /* Pricing Cards */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    /* Comparison Table */
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 500px;
    }
    
    /* FAQ */
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-col h4 {
        margin-bottom: 0.8rem;
    }
    
    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .footer-bottom {
        font-size: 0.7rem;
    }
    
    /* Slider */
    .slider-container {
        height: 280px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Popup */
    .popup-content {
        width: 95%;
        margin: 20px auto;
        padding: 20px;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
    }
    
    .launch-offer {
        font-size: 0.85rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 15px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .card-img {
        height: 180px;
    }
    
    .btn, .btn-primary, .btn-outline, .btn-brochure {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Landscape Mode */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .nav-menu {
        max-height: 60vh;
        overflow-y: auto;
    }
}
 
/* ===== MOBILE DROPDOWN FIX ===== */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: rgba(0,0,0,0.6);
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        border: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}
/* ===== FORCED MOBILE DROPDOWN FIX - FINAL ===== */
@media (max-width: 768px) {
    /* Force dropdown menu styling */
    .dropdown-menu {
        position: static !important;
        background: rgba(0, 0, 0, 0.8) !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 0.5rem !important;
        margin-left: 1rem !important;
        border: none !important;
        border-radius: 4px !important;
        width: calc(100% - 1rem) !important;
    }
    
    /* Show dropdown when active */
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    /* Style dropdown links */
    .dropdown-menu a {
        display: block !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.85rem !important;
        color: white !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none !important;
    }
    
    .dropdown-menu a:hover {
        background: #ff4d4d !important;
        color: white !important;
        padding-left: 1.5rem !important;
    }
    
    /* Make dropdown parent clickable */
    .dropdown > a {
        cursor: pointer !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    /* Add arrow indicator */
    .dropdown > a::after {
        content: '▼' !important;
        font-size: 10px !important;
        margin-left: 8px !important;
        transition: transform 0.3s !important;
    }
    
    /* Rotate arrow when open */
    .dropdown.active > a::after {
        transform: rotate(180deg) !important;
    }
}
/* ===== FIX DROPDOWN CLOSING ISSUE ===== */
@media (max-width: 768px) {
    .dropdown-menu {
        display: none;
        position: static !important;
        background: #1a1a1a !important;
        margin-top: 0.5rem !important;
        margin-left: 1rem !important;
        border-left: 2px solid #ff4d4d !important;
        padding: 0.5rem 0 !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu a {
        display: block !important;
        padding: 0.6rem 1rem !important;
        color: white !important;
        font-size: 0.85rem !important;
        text-decoration: none !important;
    }
    
    .dropdown-menu a:hover {
        background: #ff4d4d !important;
        color: white !important;
    }
    
    .dropdown > a {
        cursor: pointer !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .dropdown > a::after {
        content: '▼' !important;
        font-size: 10px !important;
        margin-left: 8px !important;
        transition: transform 0.2s !important;
    }
    
    .dropdown.active > a::after {
        transform: rotate(180deg) !important;
    }
}
/* ===== FIX DROPDOWN CLOSING ISSUE ===== */
@media (max-width: 768px) {
    .dropdown-menu {
        display: none;
        position: static !important;
        background: #1a1a1a !important;
        margin-top: 0.5rem !important;
        margin-left: 1rem !important;
        border-left: 2px solid #ff4d4d !important;
        padding: 0.5rem 0 !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu a {
        display: block !important;
        padding: 0.6rem 1rem !important;
        color: white !important;
        font-size: 0.85rem !important;
        text-decoration: none !important;
    }
    
    .dropdown-menu a:hover {
        background: #ff4d4d !important;
        color: white !important;
    }
    
    .dropdown > a {
        cursor: pointer !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .dropdown > a::after {
        content: '▼' !important;
        font-size: 10px !important;
        margin-left: 8px !important;
        transition: transform 0.2s !important;
    }
    
    .dropdown.active > a::after {
        transform: rotate(180deg) !important;
    }
}
/* ===== POPUP HEADER FIX ===== */

/* Align logo + text */
.popup-title {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 40px;
    margin-bottom: 10px;
}

/* Logo size fix */
.popup-title img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Heading */
.popup-title h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #ff4d4d;
}

/* Subtitle */
.launch-offer {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
}

.launch-offer span {
    color: #ff4d4d;
    display: block;
    margin-top: 5px;
    font-weight: 600;
}