/* 
    Complete Optimized CSS for Mazin Omron Photography
    Author: Mazin Omron
    Website: mazinomron.com
    Copyright © 2025 Mazin Omron All rights reserved.
    
    Performance optimized, fully responsive, 1:1 design recreation
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES & FONTS
   ========================================================================== */

   @import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&display=swap');
   
   :root {
       --primary-color: #576d5a;
       --primary-light: #7e998a;
       --text-dark: #333333;
       --text-light: #666666;
       --text-muted: #999999;
       --background-light: #e8e8e8;
       --background-white: #ffffff;
       --background-section: #f5f5f5;
       --border-color: #e0e0e0;
       --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
       --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
       --transition: all 0.3s ease;
       --border-radius: 8px;
       --container-max-width: 1400px;
   }
   
   /* ==========================================================================
      RESET & BASE STYLES
      ========================================================================== */
   
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Maven Pro', sans-serif;
   }
   
   html {
       scroll-behavior: smooth;
       font-size: 16px;
   }
   
   body {
       background-color: var(--background-light);
       color: var(--text-dark);
       line-height: 1.6;
       overflow-x: hidden;
       position: relative;
   }
   
   body.has-video-hero {
       padding-top: 0 !important;
       margin-top: 0;
   }
   
   /* ==========================================================================
      HEADER & NAVIGATION
      ========================================================================== */
   
   header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 15px 30px;
       position: fixed;
       top: 0;
       left: 0;
       right: 0;
       width: 100%;
       background-color: rgba(255, 255, 255, 0.7);
       backdrop-filter: blur(10px);
       z-index: 1000;
       transition: var(--transition);
   }
   
   body.has-video-hero header {
       background-color: rgba(255, 255, 255, 0.1);
       backdrop-filter: blur(10px);
   }
   
   body.has-video-hero header.scrolled {
       background-color: rgba(255, 255, 255, 0.95);
       backdrop-filter: blur(20px);
   }
   
   header.scrolled {
       box-shadow: var(--shadow);
   }
   
   .logo_with_btn {
       display: flex;
       align-items: center;
       gap: 20px;
   }
   
   .logo {
       font-size: 22px;
       font-weight: 300;
       font-style: italic;
       color: var(--text-dark);
       text-decoration: none;
       transition: color 0.3s ease;
   }
   
   body.has-video-hero .logo {
       color: white;
   }
   
   body.has-video-hero header.scrolled .logo {
       color: var(--text-dark);
   }
   
   .logo:hover {
       color: var(--primary-color);
   }
   
   #menu_items {
       display: block;
   }
   
   #menu_items ul {
       display: flex;
       gap: 30px;
       list-style: none;
       margin: 0;
       padding: 0;
   }
   
   #menu_items a {
    text-decoration: none;
    color: var(--text-light);
    text-transform: lowercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 0;
    display: inline-block;
    position: relative;
   }
   
   body.has-video-hero #menu_items a {
       color: rgba(255, 255, 255, 0.9);
   }
   
   body.has-video-hero header.scrolled #menu_items a {
       color: var(--text-light);
   }
   
   #menu_items a::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 0;
       height: 2px;
       background: var(--primary-color);
       transition: width 0.3s ease;
   }
   
   #menu_items a:hover::after,
   #menu_items a.active::after {
       width: 100%;
   }
   
   #menu_items a:hover,
   #menu_items a.active {
       color: var(--primary-color);
   }
   
   body.has-video-hero #menu_items a:hover {
       color: var(--primary-color);
   }
   
   /* Hamburger Menu */
   .hamburger {
       display: none;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       width: 40px;
       height: 40px;
       background: transparent;
       border: none;
       cursor: pointer;
       padding: 8px;
       border-radius: 4px;
       transition: var(--transition);
       z-index: 1002;
   }
   
   .hamburger:hover {
       background: rgba(0, 0, 0, 0.05);
   }
   
   body.has-video-hero .hamburger:hover {
       background: rgba(255, 255, 255, 0.1);
   }
   
   .hamburger-line {
       display: block;
       width: 24px;
       height: 2px;
       background: var(--text-dark);
       border-radius: 1px;
       margin: 3px 0;
       transition: var(--transition);
       transform-origin: center;
   }
   
   body.has-video-hero .hamburger-line {
       background: white;
   }
   
   body.has-video-hero header.scrolled .hamburger-line {
       background: var(--text-dark);
   }
   
   .hamburger.active .hamburger-line:nth-child(1) {
       transform: rotate(45deg) translate(6px, 6px);
   }
   
   .hamburger.active .hamburger-line:nth-child(2) {
       opacity: 0;
       transform: scaleX(0);
   }
   
   .hamburger.active .hamburger-line:nth-child(3) {
       transform: rotate(-45deg) translate(6px, -6px);
   }
   
   /* Mobile Navigation */
   .mobile-nav {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100vh;
       background: rgba(255, 255, 255, 0.95);
       backdrop-filter: blur(20px);
       z-index: 1001;
       transform: translateX(-100%);
       transition: transform 0.3s ease;
       padding-top: 100px;
       display: block;
   }
   
   .mobile-nav.active {
       transform: translateX(0);
   }
   
   .mobile-nav ul {
       list-style: none;
       padding: 0;
       margin: 0;
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 40px;
   }
   
   .mobile-nav-link {
       text-decoration: none;
       color: var(--text-dark);
       font-size: 24px;
       font-weight: 500;
       text-transform: lowercase;
       letter-spacing: 2px;
       transition: var(--transition);
       padding: 15px 30px;
       border-radius: var(--border-radius);
       display: block;
   }
   
   .mobile-nav-link:hover {
       background: var(--primary-color);
       color: white;
       transform: translateY(-2px);
   }
   
   /* ==========================================================================
      PRESS BANNER
      ==========================================================================
   
   .press-banner {
       position: fixed;
       top: 0;
       left: 0;
       right: 0;
       background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
       color: white;
       padding: 8px 0;
       font-size: 14px;
       z-index: 1003;
       transition: transform 0.3s ease;
   }
   
   .press-banner.hidden {
       transform: translateY(-100%);
   }
   
   .banner-content {
       display: flex;
       align-items: center;
       justify-content: center;
       max-width: var(--container-max-width);
       margin: 0 auto;
       padding: 0 20px;
       gap: 15px;
   }
   
   .banner-left {
       flex-shrink: 0;
   }
   
   .banner-badge {
       background: rgba(255, 255, 255, 0.2);
       padding: 2px 8px;
       border-radius: 4px;
       font-weight: 600;
       font-size: 12px;
       text-transform: uppercase;
   }
   
   .banner-center {
       flex: 1;
       text-align: center;
   }
   
   .banner-text {
       font-size: 13px;
   }
   
   .banner-link {
       color: #ffd700;
       text-decoration: underline;
       font-weight: 600;
   }
   
   .banner-close {
       background: none;
       border: none;
       color: white;
       font-size: 18px;
       cursor: pointer;
       padding: 0 10px;
       opacity: 0.8;
       transition: opacity 0.3s ease;
       width: 30px;
       height: 30px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
   }
   
   .banner-close:hover {
       opacity: 1;
       background: rgba(255, 255, 255, 0.1);
   }
   
   body.banner-visible header {
       top: 35px;
   }
   
   body.banner-visible.has-video-hero header {
       top: 35px;
   } */
   
   /* ==========================================================================
      VIDEO HERO SECTION
      ========================================================================== */
   
   .video-hero {
       position: relative;
       width: 100vw;
       height: 100vh;
       overflow: hidden;
       margin-left: calc(-50vw + 50%);
       margin-right: calc(-50vw + 50%);
       margin-top: 0;
       z-index: 0;
   }
   
   .video-hero video {
       position: absolute !important;
       top: 0 !important;
       left: 0 !important;
       width: 100% !important;
       height: 100% !important;
       object-fit: cover !important;
       z-index: 1 !important;
       opacity: 1 !important;
       visibility: visible !important;
       display: block !important;
       min-width: 100% !important;
       min-height: 100% !important;
   }
   
   .desktop-video {
       display: block !important;
       opacity: 1 !important;
       visibility: visible !important;
   }
   
   .mobile-video {
       display: none !important;
   }
   
   .video-fallback {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       object-fit: cover;
       z-index: 0;
   }
   
   .video-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(
           rgba(0, 0, 0, 0.2) 0%, 
           rgba(0, 0, 0, 0) 40%, 
           rgba(0, 0, 0, 0) 60%,
           rgba(0, 0, 0, 0.4) 100%
       );
       z-index: 2;
       pointer-events: none;
   }
   
   .hero-content {
       position: absolute;
       bottom: 20%;
       left: 50%;
       transform: translateX(-50%);
       text-align: center;
       color: white;
       z-index: 3;
       max-width: 500px;
       pointer-events: auto;
   }
   
   .hero-subtitle {
       font-size: 14px;
       font-weight: 500;
       letter-spacing: 3px;
       text-transform: uppercase;
       margin-bottom: 20px;
       opacity: 0.9;
       color: #e8e8e8;
       text-shadow: 0 8px 16px rgba(0, 0, 0, 1);
   }
   
   .hero-title {
       font-size: 3.5rem;
       font-weight: 300;
       letter-spacing: 2px;
       margin-bottom: 20px;
       line-height: 0.7;
       font-style: italic;
       text-shadow: 0 8px 16px rgba(0, 0, 0, 1);
   }
   
   .hero-names {
       font-size: 1rem;
       font-weight: 400;
       letter-spacing: 1px;
       margin-bottom: 10px;
       opacity: 0.95;
       text-shadow: 0 8px 16px rgba(0, 0, 0, 1);
   }
   
   .hero-credentials {
       font-size: 0.9rem;
       font-weight: 400;
       letter-spacing: 1px;
       opacity: 0.8;
       margin-bottom: 30px;
       text-shadow: 0 8px 16px rgba(0, 0, 0, 1);
   }
   
   .hero-actions {
       display: flex;
       gap: 20px;
       justify-content: center;
       flex-wrap: wrap;
   }
   
   .hero-btn {
       padding: 12px 25px;
       border: 2px solid rgba(255, 255, 255, 0.9);
       background: rgba(0, 0, 0, 0.4);
       backdrop-filter: blur(10px);
       color: white;
       text-decoration: none;
       font-size: 13px;
       font-weight: 500;
       letter-spacing: 1px;
       text-transform: lowercase;
       transition: var(--transition);
       display: inline-block;
       text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
       cursor: pointer;
   }
   
   .hero-btn:hover {
       background: rgba(255, 255, 255, 0.9);
       color: var(--text-dark);
       transform: translateY(-2px);
   }
   
   .hero-btn.primary {
       background: rgba(126, 153, 138, 0.9);
       border-color: rgba(126, 153, 138, 0.9);
       color: white;
   }
   
   .hero-btn.primary:hover {
       background: rgba(255, 255, 255, 0.9);
       color: var(--primary-light);
       border-color: rgba(255, 255, 255, 0.9);
   }
   
   .scroll-indicator {
       position: absolute;
       bottom: 30px;
       left: 50%;
       transform: translateX(-50%);
       z-index: 3;
       color: white;
       opacity: 0.8;
       text-align: center;
       animation: bounce 2s infinite;
       pointer-events: none;
   }
   
   .scroll-indicator i {
       font-size: 24px;
       display: block;
       margin-bottom: 10px;
       text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
   }
   
   .scroll-indicator span {
       font-size: 12px;
       letter-spacing: 1px;
       text-transform: lowercase;
       text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
   }
   
   @keyframes bounce {
       0%, 20%, 50%, 80%, 100% {
           transform: translateX(-50%) translateY(0);
       }
       40% {
           transform: translateX(-50%) translateY(-10px);
       }
       60% {
           transform: translateX(-50%) translateY(-5px);
       }
   }
   
   /* ==========================================================================
      MAIN CONTENT SECTIONS
      ========================================================================== */
   
   .main-content-after-hero {
       position: relative;
       z-index: 1;
       background: var(--background-light);
   }
   
   /* ==========================================================================
      ABOUT SECTION
      ========================================================================== */
   
   .about-section {
       font-family: 'Urbanist', sans-serif;
       max-width: 1200px;
       margin: 0 auto;
       padding: 80px 40px;
       display: flex;
       align-items: center;
       gap: 40px;
   }
   
   .about-images {
       display: flex;
       flex: 1;
       gap: 15px;
   }
   
   .about-image {
       display: flex;
       flex-direction: column;
       position: relative;
       overflow: hidden;
       border-radius: var(--border-radius);
       box-shadow: var(--shadow);
       transition: var(--transition);
   }
   
   .about-image:hover {
       transform: translateY(-5px);
       box-shadow: var(--shadow-hover);
   }
   
   .about-image:first-child {
       width: 48%;
   }
   
   .about-image:last-child {
       width: 52%;
   }
   
   .about-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       object-position: center;
       transition: transform 0.5s ease;
       display: block;
   }
   
   .about-image:hover img {
       transform: scale(1.05);
   }
   
   .image-caption {
       font-family: 'Urbanist', sans-serif;
       position: absolute;
       bottom: 20px;
       left: 50%;
       transform: translateX(-50%);
       background: rgba(0, 0, 0, 0.7);
       color: white;
       padding: 8px 16px;
       border-radius: 20px;
       font-size: 14px;
       font-weight: 600;
       backdrop-filter: blur(10px);
       text-transform: lowercase;
       letter-spacing: 1px;
   }
   
   .about-content {
       flex: 1;
       display: flex;
       flex-direction: column;
   }
   
   .highlight-tag {
       display: flex;
       align-items: center;
       gap: 10px;
   }
   
   .highlight-text {
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 1px;
       font-size: 14px;
       color: var(--text-light);
   }
   
   .highlight-badge {
       text-transform: uppercase;
       background-color: var(--primary-color);
       color: white;
       padding: 4px 12px;
       font-size: 12px;
       font-weight: 600;
       border-radius: 20px;
       letter-spacing: 1px;
   }
   
   .about-title {
       font-size: 40px;
       font-weight: 700;
       margin-bottom: 15px;
       line-height: 1.1;
       color: var(--text-dark);
   }
   
   .about-badge {
       color: var(--text-muted);
       margin-top: -15px;
       margin-bottom: 20px;
       display: block;
       font-size: 15px;
       line-height: 1.5;
       font-style: italic;
   }
   
   .about-description {
       color: var(--text-muted);
       margin-bottom: 15px;
       font-size: 15px;
       line-height: 1.6;
   }
   
   /* ==========================================================================
      FEATURED PROJECT SECTION
      ========================================================================== */
   
   .featured-podcast {
       padding: 80px 0;
       background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
       position: relative;
       width: 100%;
   }
   
   .featured-podcast-inner {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 40px;
   }
   
   .podcast-header {
       text-align: center;
       margin-bottom: 50px;
   }
   
   .podcast-title {
       font-family: 'Urbanist', sans-serif;
       font-size: 48px;
       font-weight: 700;
       color: var(--text-dark);
       margin-bottom: 15px;
       position: relative;
       display: inline-block;
   }
   
   .podcast-title::after {
       content: '';
       position: absolute;
       bottom: -8px;
       left: 50%;
       transform: translateX(-50%);
       width: 80px;
       height: 4px;
       background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
       border-radius: 2px;
   }
   
   .podcast-subtitle {
       color: var(--text-light);
       font-size: 16px;
       letter-spacing: 2px;
       text-transform: uppercase;
       font-weight: 500;
       margin-top: 20px;
   }
   
   .podcast-container {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 50px;
       align-items: center;
       margin-top: 50px;
   }
   
   .podcast-video-section {
       position: relative;
   }
   
   .podcast-video-container {
       position: relative;
       width: 100%;
       border-radius: 16px;
       overflow: hidden;
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
       background: #000;
       transition: var(--transition);
   }
   
   .podcast-video-container:hover {
       transform: translateY(-5px);
       box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
   }
   
   .podcast-video-player {
       position: relative;
       width: 100%;
       height: 0;
       padding-bottom: 56.25%;
       background: #000;
   }
   
   .podcast-iframe {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       border: none;
       border-radius: 16px;
   }
   
   .podcast-info-section {
       padding: 20px 0;
   }
   
   .podcast-badge {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
       color: white;
       padding: 8px 16px;
       border-radius: 25px;
       font-size: 12px;
       font-weight: 600;
       text-transform: uppercase;
       letter-spacing: 1px;
       margin-bottom: 20px;
   }
   
   .podcast-project-title {
       font-family: 'Urbanist', sans-serif;
       font-size: 32px;
       font-weight: 700;
       color: var(--text-dark);
       margin-bottom: 15px;
       line-height: 1.2;
   }
   
   .podcast-location {
       display: flex;
       align-items: center;
       gap: 8px;
       color: var(--primary-light);
       font-size: 16px;
       font-weight: 600;
       margin-bottom: 20px;
   }
   
   .podcast-description {
       color: var(--text-light);
       font-size: 16px;
       line-height: 1.7;
       margin-bottom: 25px;
   }
   
   .podcast-highlights {
       list-style: none;
       padding: 0;
       margin: 0 0 30px 0;
   }
   
   .podcast-highlights li {
       display: flex;
       align-items: center;
       gap: 12px;
       color: var(--text-light);
       font-size: 15px;
       margin-bottom: 8px;
   }
   
   .podcast-highlights li:before {
       content: "\f00c";
       font-family: "Font Awesome 6 Free";
       font-weight: 900;
       color: var(--primary-light);
       font-size: 12px;
       width: 20px;
       height: 20px;
       background: rgba(126, 153, 138, 0.1);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       flex-shrink: 0;
   }
   
   .podcast-cta {
       display: inline-flex;
       align-items: center;
       gap: 10px;
       background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
       color: white;
       text-decoration: none;
       padding: 14px 28px;
       border-radius: 50px;
       font-weight: 600;
       text-transform: uppercase;
       letter-spacing: 1px;
       font-size: 14px;
       transition: var(--transition);
       box-shadow: 0 8px 25px rgba(87, 109, 90, 0.3);
   }
   
   .podcast-cta:hover {
       transform: translateY(-2px);
       box-shadow: 0 12px 35px rgba(87, 109, 90, 0.4);
       text-decoration: none;
       color: white;
   }
   
   /* ==========================================================================
      SERVICES SECTION
      ========================================================================== */
   
   .services-section {
       max-width: var(--container-max-width);
       margin: 0 auto;
       padding: 80px 40px;
       width: 100%;
   }
   
   .services-header {
       text-align: center;
       margin-bottom: 70px;
   }
   
   .services-title {
       font-family: 'Urbanist', sans-serif;
       font-size: 48px;
       font-weight: 700;
       color: var(--text-dark);
       margin-bottom: 15px;
       position: relative;
       display: inline-block;
   }
   
   .services-title::after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 50%;
       transform: translateX(-50%);
       width: 80px;
       height: 3px;
       background: var(--primary-light);
       border-radius: 2px;
   }
   
   .services-subtitle {
       color: var(--text-light);
       font-size: 16px;
       letter-spacing: 1px;
       text-transform: uppercase;
       font-weight: 500;
       margin-top: 25px;
       font-family: 'Maven Pro', sans-serif;
   }
   
   .services-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 25px;
       margin-top: 40px;
       width: 100%;
   }
   
   .service-card {
       background: rgba(255, 255, 255, 0.95);
       border-radius: var(--border-radius);
       padding: 20px 15px;
       text-align: center;
       transition: var(--transition);
       box-shadow: var(--shadow);
       border: 1px solid rgba(126, 153, 138, 0.2);
       position: relative;
       overflow: hidden;
       min-height: 200px;
   }
   
   .service-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
       transition: left 0.6s;
   }
   
   .service-card:hover::before {
       left: 100%;
   }
   
   .service-card:hover {
       transform: translateY(-5px);
       box-shadow: var(--shadow-hover);
       border-color: var(--primary-light);
   }
   
   .service-icon {
       width: 60px;
       height: 60px;
       margin: 0 auto 20px;
       background: var(--primary-light);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 24px;
       transition: var(--transition);
   }
   
   .service-card:hover .service-icon {
       background: var(--primary-color);
       transform: scale(1.05);
   }
   
   .service-name {
       font-family: 'Urbanist', sans-serif;
       font-size: 16px;
       font-weight: 600;
       color: var(--text-dark);
       margin-bottom: 12px;
       text-transform: uppercase;
       letter-spacing: 1px;
   }
   
   .service-description {
       color: var(--text-light);
       font-size: 13px;
       line-height: 1.5;
       margin-bottom: 0;
       font-family: 'Maven Pro', sans-serif;
       font-weight: 400;
   }
   
   /* ==========================================================================
      PRICING SECTION
      ========================================================================== */
   
   #pricing {
       padding: 80px 40px;
       position: relative;
       background: linear-gradient(135deg, var(--background-light) 0%, var(--background-section) 100%);
       display: block;
       visibility: visible;
   }
   
   .pricing-container-main {
       max-width: 1200px;
       width: 100%;
       margin: 0 auto;
       position: relative;
       display: block;
   }
   
   .pricing-header-main {
       text-align: center;
       margin-bottom: 70px;
       position: relative;
       display: block;
   }
   
   .pricing-title-main {
       font-family: 'Urbanist', sans-serif;
       font-size: 56px;
       font-weight: 700;
       color: var(--text-dark);
       margin-bottom: 15px;
       position: relative;
       display: inline-block;
   }
   
   .pricing-title-main::after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 50%;
       transform: translateX(-50%);
       width: 100px;
       height: 4px;
       background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
       border-radius: 2px;
   }
   
   .pricing-subtitle-main {
       color: var(--text-light);
       font-size: 18px;
       letter-spacing: 2px;
       text-transform: uppercase;
       font-weight: 500;
       margin-top: 25px;
       display: block;
   }
   
   .pricing-grid-main {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
       gap: 40px;
       margin-bottom: 50px;
       visibility: visible;
       align-items: stretch;
   }
   
   .pricing-card-main {
       background: rgba(255, 255, 255, 0.95);
       border-radius: 24px;
       padding: 50px 40px;
       text-align: center;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       transition: box-shadow 0.3s ease, transform 0.3s ease;
       position: relative;
       border: 1px solid rgba(87, 109, 90, 0.1);
       display: flex;
       flex-direction: column;
       justify-content: space-between;
       visibility: visible;
       opacity: 1;
       min-height: 650px;
       will-change: transform, box-shadow;
   }
   
   .pricing-card-main:hover {
       transform: translateY(-8px);
       box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
   }
   
   .service-icon-main {
       width: 100px;
       height: 100px;
       margin: 0 auto 30px;
       background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 40px;
       position: relative;
       box-shadow: 0 10px 30px rgba(87, 109, 90, 0.3);
       transition: transform 0.2s ease;
   }
   
   .pricing-card-main:hover .service-icon-main {
       transform: scale(1.05);
   }
   
   .service-name-main {
       font-family: 'Urbanist', sans-serif;
       font-size: 28px;
       font-weight: 700;
       color: var(--text-dark);
       margin-bottom: 20px;
       text-transform: uppercase;
       letter-spacing: 2px;
       display: block;
   }
   
   .service-price-main {
       font-family: 'Urbanist', sans-serif;
       font-size: 64px;
       font-weight: 700;
       color: var(--primary-color);
       margin-bottom: 25px;
       position: relative;
       display: block;
       line-height: 1.1;
   }
   
   .currency-main {
       font-size: 32px;
       vertical-align: top;
       opacity: 0.8;
   }
   
   .price-range {
       font-size: 48px;
       color: var(--primary-color);
   }
   
   .price-per-hour {
       font-size: 22px;
       color: var(--text-muted);
       font-weight: 400;
       margin-left: -12px;
       vertical-align: baseline;
       opacity: 0.7;
   }
   
   .custom-pricing {
       font-size: 48px;
       font-weight: 700;
       color: var(--primary-color);
   }
   
   .service-price-main::after {
       content: '';
       position: absolute;
       bottom: -5px;
       left: 50%;
       transform: translateX(-50%);
       width: 60px;
       height: 2px;
       background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
       border-radius: 1px;
   }
   
   .service-description-main {
       color: var(--text-light);
       font-size: 16px;
       line-height: 1.6;
       margin-bottom: 35px;
       font-weight: 500;
       display: block;
   }
   
   .service-features-main {
       list-style: none;
       margin-bottom: 40px;
       text-align: left;
       padding: 0;
       display: block;
       flex-grow: 1;
   }
   
   .service-features-main li {
       color: var(--text-light);
       margin-bottom: 15px;
       padding-left: 35px;
       position: relative;
       font-size: 15px;
       line-height: 1.5;
       display: block;
       transition: color 0.2s ease;
   }
   
   .service-features-main li:before {
       content: "\f00c";
       font-family: "Font Awesome 6 Free";
       font-weight: 900;
       position: absolute;
       left: 0;
       top: 2px;
       color: var(--primary-light);
       font-size: 14px;
       width: 20px;
       height: 20px;
       background: rgba(126, 153, 138, 0.1);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
   }
   
   .service-features-main li:hover {
       color: var(--text-dark);
   }
   
   .cta-button-main {
       background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
       color: white;
       border: none;
       padding: 18px 40px;
       border-radius: 50px;
       font-family: 'Maven Pro', sans-serif;
       font-size: 15px;
       font-weight: 600;
       text-transform: uppercase;
       letter-spacing: 2px;
       cursor: pointer;
       text-decoration: none;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       gap: 10px;
       box-shadow: 0 10px 30px rgba(87, 109, 90, 0.3);
       position: relative;
       overflow: hidden;
       margin-top: auto;
       transition: transform 0.2s ease, box-shadow 0.2s ease;
       will-change: transform;
   }
   
   .cta-button-main:hover {
       transform: translateY(-2px);
       box-shadow: 0 15px 40px rgba(87, 109, 90, 0.4);
       color: white;
       text-decoration: none;
   }
   
   .cta-button-main:active {
       transform: translateY(0);
   }
   
/* ==========================================================================
      CONTACT SECTION
      ========================================================================== */
   
      #contact {
        padding: 80px 40px;
        background: var(--background-white);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact-container {
        max-width: 900px; /* Increased from 1200px */
        width: 100%;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border: 1px solid rgba(126, 153, 138, 0.1);
    }
    
    .contact-header {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        padding: 40px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .contact-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: float 20s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }
    
    .contact-header h1 {
        font-family: 'Urbanist', sans-serif;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
    }
    
    .contact-header p {
        font-size: 16px;
        opacity: 0.9;
        position: relative;
        z-index: 2;
    }
    
    .contact-form {
        padding: 40px;
    }
    
    .form-grid {
        display: grid;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .form-group {
        position: relative;
    }
    
    .form-group.full-width {
        grid-column: 1 / -1;
    }
    
    label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .required {
        color: var(--primary-light);
    }
    
    input, select, textarea {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid var(--border-color);
        border-radius: 12px;
        font-family: 'Maven Pro', sans-serif;
        font-size: 16px;
        transition: var(--transition);
        background: var(--background-white);
        box-sizing: border-box;
    }
    
    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: var(--primary-light);
        box-shadow: 0 0 0 3px rgba(126, 153, 138, 0.1);
        transform: translateY(-2px);
    }
    
    textarea {
        resize: vertical;
        min-height: 120px;
        line-height: 1.6;
    }
    
    .project-type-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr); /* Force 5 equal columns */
        gap: 20px;
        margin-top: 10px;
        border: 2px solid transparent;
        border-radius: 12px;
        transition: border-color 0.3s ease;
    }
    
    
    .project-type-option {
        position: relative;
    }
    
    .project-type-option input[type="checkbox"] {
        display: none;
    }
    
    .project-type-label {
        display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #fff;
            text-align: center;
            height: 100%;
    }
    
    .project-type-label:hover {
        border-color: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(126, 153, 138, 0.15);
    }
    
    /* FIXED: Combined and strengthened selected state styling */
    .project-type-option.selected .project-type-label,
    .project-type-option input[type="checkbox"]:checked + .project-type-label {
        border-color: var(--primary-light) !important;
        background: rgba(126, 153, 138, 0.15) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(126, 153, 138, 0.3) !important;
    }
    
    .project-type-label i {
        font-size: 28px; /* FIXED: Increased from 24px */
        color: var(--primary-light);
        margin-bottom: 12px; /* FIXED: Increased from 8px */
        transition: all 0.3s ease;
    }
    
    /* FIXED: Enhanced icon styling for selected state */
    .project-type-option.selected .project-type-label i,
    .project-type-option input[type="checkbox"]:checked + .project-type-label i {
        color: var(--primary-color) !important;
        transform: scale(1.15) !important;
    }
    
    .project-type-label span {
        font-size: 13px; /* FIXED: Increased from 12px */
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-dark);
        line-height: 1.3;
        transition: all 0.3s ease;
    }
    
    /* FIXED: Enhanced text styling for selected state */
    .project-type-option.selected .project-type-label span,
    .project-type-option input[type="checkbox"]:checked + .project-type-label span {
        color: var(--primary-color) !important;
        font-weight: 700 !important;
    }
    
    .budget-range {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
        margin-top: 10px;
    }
    
    .budget-option {
        position: relative;
    }
    
    .budget-option input[type="radio"] {
        display: none;
    }
    
    .budget-label {
        display: block;
        padding: 15px 20px;
        border: 2px solid var(--border-color);
        border-radius: 12px;
        cursor: pointer;
        transition: var(--transition);
        background: var(--background-white);
        text-align: center;
        font-weight: 500;
    }
    
    .budget-label:hover {
        border-color: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(126, 153, 138, 0.15);
    }
    
    .budget-option input[type="radio"]:checked + .budget-label {
        border-color: var(--primary-light);
        background: rgba(126, 153, 138, 0.1);
        color: var(--primary-color);
        font-weight: 600;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(126, 153, 138, 0.2);
    }
    
    .submit-section {
        text-align: center;
        margin-top: 30px;
    }
    
    .submit-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        color: white;
        border: none;
        padding: 18px 50px;
        border-radius: 50px;
        font-family: 'Maven Pro', sans-serif;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        cursor: pointer;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 10px 30px rgba(87, 109, 90, 0.3);
        position: relative;
        overflow: hidden;
        min-width: 200px;
        justify-content: center;
    }
    
    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
    }
    
    .submit-btn:hover::before {
        left: 100%;
    }
    
    .submit-btn:hover:not(:disabled) {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(87, 109, 90, 0.4);
    }
    
    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }
    
    .success-message, .error-message {
        padding: 15px 20px;
        border-radius: 12px;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 500;
        display: none;
    }
    
    .success-message {
        background: rgba(34, 197, 94, 0.1);
        color: #059669;
        border: 1px solid rgba(34, 197, 94, 0.2);
    }
    
    .error-message {
        background: rgba(239, 68, 68, 0.1);
        color: #dc2626;
        border: 1px solid rgba(239, 68, 68, 0.2);
    }
    
    .success-message i,
    .error-message i {
        margin-right: 10px;
        font-size: 18px;
    }
    
    /* FIXED: Enhanced error styling for services */
    .field-error {
        color: #dc3545;
        font-size: 12px;
        margin-top: 5px;
        display: block;
        font-weight: 500;
    }
    
    .services-error {
        margin-top: 15px;
        padding: 12px 20px;
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid rgba(239, 68, 68, 0.3);
        border-radius: 8px;
        color: #dc2626;
        font-weight: 600;
        text-align: center;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-info {
        background: rgba(126, 153, 138, 0.05);
        padding: 30px;
        text-align: center;
        border-top: 1px solid rgba(126, 153, 138, 0.1);
    }
    
    .contact-info h3 {
        font-family: 'Urbanist', sans-serif;
        font-size: 18px;
        margin-bottom: 15px;
        color: var(--text-dark);
    }
    
    .contact-details {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .contact-detail {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--text-light);
        font-size: 14px;
    }
    
    .contact-detail i {
        color: var(--primary-light);
    }
    
    /* Mobile responsive improvements */
    @media (max-width: 768px) {
        .contact-container {
            max-width: 95%;
        }
        
        .form-row {
            grid-template-columns: 1fr;
        }
        
        .project-type-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
            padding: 10px;
        }
        
        .project-type-label {
            padding: 20px 15px;
        }
        
        .contact-form {
            padding: 20px;
        }
    }

/* FORCE styling with maximum specificity */
body #contact .contact-container .project-type-grid .project-type-option.selected .project-type-label {
    border-color: #7e998a !important;
    background: rgba(126, 153, 138, 0.2) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(126, 153, 138, 0.4) !important;
}

body #contact .contact-container .project-type-grid .project-type-option.selected .project-type-label i {
    color: #576d5a !important;
    transform: scale(1.2) !important;
}

body #contact .contact-container .project-type-grid .project-type-option.selected .project-type-label span {
    color: #576d5a !important;
    font-weight: 700 !important;
}


    
   /* ==========================================================================
      FOOTER
      ========================================================================== */
   
      .footer-design-2 {
        background: white;
        border-top: 3px solid #7e998a;
        padding: 50px 0;
        text-align: center;
    }
    
    .footer-2-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 30px;
    }
    
    .footer-2-logo {
        font-size: 32px;
        font-weight: lighter;
        font-style: italic;
        color: #333;
        margin-bottom: 15px;
        font-family: 'Urbanist', sans-serif;
    }
    
    .footer-2-tagline {
        color: #666;
        font-size: 18px;
        margin-bottom: 35px;
        font-weight: 400;
        font-family: 'Maven Pro', sans-serif;
    }
    
    .footer-2-nav {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 35px;
        flex-wrap: wrap;
    }
    
    .footer-2-nav a {
        color: #333;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: color 0.3s ease;
        font-family: 'Urbanist', sans-serif;
    }
    
    .footer-2-nav a:hover {
        color: #7e998a;
    }
    
    .footer-2-social {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .footer-2-social a {
        width: 50px;
        height: 50px;
        background: rgba(126, 153, 138, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #7e998a;
        font-size: 20px;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .footer-2-social a:hover {
        background: #7e998a;
        color: white;
        transform: scale(1.1);
    }
    
    .footer-2-copyright {
        color: #999;
        font-size: 14px;
        letter-spacing: 1px;
        border-top: 1px solid #eee;
        padding-top: 30px;
        font-family: 'Urbanist', sans-serif;
    }
    
    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
        .footer-2-nav {
            flex-direction: column;
            gap: 20px;
        }
    
        .footer-2-logo {
            font-size: 28px;
        }
    
        .footer-2-tagline {
            font-size: 16px;
        }
    
        .footer-2-content {
            padding: 0 20px;
        }
    }
    
    @media (max-width: 480px) {
        .footer-design-2 {
            padding: 40px 0;
        }
    
        .footer-2-social {
            gap: 15px;
        }
    
        .footer-2-social a {
            width: 45px;
            height: 45px;
            font-size: 18px;
        }
    }
    
   /* ==========================================================================
      RESPONSIVE DESIGN
      ========================================================================== */
   
   /* Tablet */
   @media (max-width: 1024px) {
       .about-section {
           gap: 30px;
           padding: 60px 30px;
       }
       
       .podcast-container {
           gap: 40px;
       }
       
       .podcast-title {
           font-size: 36px;
       }
       
       .services-section,
       #pricing {
           padding: 60px 30px;
       }
       
       .pricing-grid-main {
           gap: 30px;
       }
       
       .pricing-title-main {
           font-size: 42px;
       }
       
       .service-price-main {
           font-size: 48px;
       }
   }
   
   /* Mobile Navigation */
   @media (max-width: 768px) {
       #menu_items {
           display: none;
       }
       
       .hamburger {
           display: flex;
       }
       
       /* Adjust header for mobile */
       header {
           padding: 12px 20px;
       }
       
       .banner-content {
           padding: 0 15px;
           gap: 10px;
       }
       
       /* Video Hero Mobile */
       .desktop-video {
           display: none !important;
       }
       
       .mobile-video {
           display: block !important;
       }
       
       .hero-content {
           padding: 0 20px;
           max-width: 90%;
       }
       
       .hero-title {
           font-size: 2.5rem;
       }
       
       .hero-subtitle {
           font-size: 12px;
           letter-spacing: 2px;
       }
       
       .hero-actions {
           flex-direction: column;
           align-items: center;
           gap: 15px;
       }
       
       .hero-btn {
           width: 100%;
           max-width: 200px;
           text-align: center;
       }
       
       /* About Section Mobile */
       .about-section {
           flex-direction: column;
           text-align: center;
           padding: 40px 20px;
       }
       
       .about-images {
           order: 2;
           justify-content: center;
           max-width: 400px;
           margin: 0 auto;
       }
       
       .about-content {
           order: 1;
       }
       
       /* Featured Project Mobile */
       .featured-podcast-inner {
           padding: 0 20px;
       }
       
       .podcast-container {
           grid-template-columns: 1fr;
           gap: 30px;
       }
       
       .podcast-info-section {
           order: -1;
           text-align: center;
       }
       
       .podcast-title {
           font-size: 32px;
       }
       
       .podcast-project-title {
           font-size: 24px;
       }
       
       /* Services Mobile */
       .services-section {
           padding: 40px 20px;
       }
       
       .services-title {
           font-size: 36px;
       }
       
       .services-grid {
           grid-template-columns: 1fr;
       }
       
       /* Pricing Mobile */
       #pricing {
           padding: 40px 20px;
       }
       
       .pricing-title-main {
           font-size: 36px;
       }
       
       .pricing-grid-main {
           grid-template-columns: 1fr;
           gap: 30px;
       }
       
       .service-price-main {
           font-size: 42px;
       }
       
       .pricing-card-main {
           padding: 40px 30px;
           min-height: auto;
           transition: none;
       }
       
       .pricing-card-main:hover {
           transform: none;
           box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       }
       
       /* Contact Mobile */
       #contact {
           padding: 40px 15px;
       }
       
       .contact-container {
           margin: 20px auto;
           border-radius: 16px;
       }
       
       .contact-header {
           padding: 30px 20px;
       }
       
       .contact-header h1 {
           font-size: 28px;
       }
       
       .contact-form {
           padding: 30px 20px;
       }
       
       .form-row {
           grid-template-columns: 1fr;
       }
       
       .project-type-grid {
           grid-template-columns: repeat(2, 1fr);
       }
       
       .budget-range {
           grid-template-columns: 1fr;
       }
       
       .contact-details {
           flex-direction: column;
           gap: 15px;
       }
       
       .submit-btn {
           padding: 15px 40px;
           font-size: 14px;
       }
   }
   
   /* Small Mobile */
   @media (max-width: 480px) {
       .hero-title {
           font-size: 2rem;
           letter-spacing: 1px;
       }
       
       .hero-content {
           padding: 0 15px;
           bottom: 18%;
       }
       
       .about-images {
           flex-direction: column;
           gap: 15px;
       }
       
       .about-image:first-child,
       .about-image:last-child {
           width: 100%;
       }
       
       .podcast-title {
           font-size: 28px;
       }
       
       .podcast-project-title {
           font-size: 22px;
       }
       
       .services-title {
           font-size: 28px;
       }
       
       .pricing-title-main {
           font-size: 28px;
       }
       
       .service-price-main {
           font-size: 36px;
       }
       
       .pricing-card-main {
           padding: 30px 20px;
       }
       
       .service-icon-main {
           width: 80px;
           height: 80px;
           font-size: 32px;
       }
       
       .contact-header h1 {
           font-size: 24px;
       }
       
       .project-type-grid {
           grid-template-columns: 1fr;
       }
       
       .submit-btn {
           padding: 15px 30px;
           font-size: 14px;
           min-width: 180px;
       }
   }
   
   /* ==========================================================================
      ANIMATIONS & LOADING STATES
      ========================================================================== */
   
   @keyframes spin {
       0% { transform: rotate(0deg); }
       100% { transform: rotate(360deg); }
   }
   
   .fa-spin {
       animation: spin 1s linear infinite;
   }
   
   .loading {
       animation: spin 1s linear infinite;
   }
   
   /* ==========================================================================
      ACCESSIBILITY & REDUCED MOTION
      ========================================================================== */
   
   @media (prefers-reduced-motion: reduce) {
       * {
           animation-duration: 0.01ms !important;
           animation-iteration-count: 1 !important;
           transition-duration: 0.01ms !important;
           scroll-behavior: auto !important;
       }
       
       .scroll-indicator {
           animation: none;
       }
       
       .hero-btn,
       .service-card,
       .pricing-card-main {
           transition: none;
       }
   }
   
   /* High contrast mode support */
   @media (prefers-contrast: high) {
       :root {
           --primary-color: #004d00;
           --primary-light: #006600;
           --text-dark: #000000;
           --text-light: #333333;
           --border-color: #000000;
       }
       
       .service-card,
       .pricing-card-main {
           border: 2px solid #000000;
       }
   }
   
   /* Print styles */
   @media print {
       header,
       .mobile-nav,
       .press-banner,
       .hero-actions,
       .contact-form,
       #footer {
           display: none !important;
       }
       
       .video-hero {
           height: auto;
           padding: 50px 0;
       }
       
       .hero-content {
           color: #000;
       }
       
       * {
           background: white !important;
           color: black !important;
           box-shadow: none !important;
       }
   }