:root {
            --primary: #ff5722;
            --primary-hover: #e64a19;
            --dark: #121212;
            --light: #f5f5f5;
            --gray: #222222;
            --text-light: #ffffff;
            --text-dark: #333333;
            --text-muted: #aaaaaa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark);
            color: var(--text-light);
            line-height: 1.6;
        }

        header {
            background-color: rgba(18, 18, 18, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .cta-btn {
          /*   background-color: var(--primary); */
			background-color: crimson;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
        }

        .cta-btn:hover {
            background-color: var(--primary-hover);
        }

        .hero {
           <!--  padding-top: 140px; -->
            padding-bottom: 80px;
            background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.95)), url('https://unsplash.com') no-repeat center center/cover;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--primary);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--gray);
            border: 1px solid #333;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, border-color 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .service-icon {
            font-size: 40px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 20px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 14px;
        }

        .why-choose-us {
            background-color: #1a1a1a;
            padding: 80px 20px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
		.features-grid2
		{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            
            margin: 0 auto;
        }

        .feature-item {
            text-align: center;
        }

        .feature-item h3 {
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 10px;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 15px;
            color: var(--text-muted);
        }

        .contact-form {
            background-color: var(--gray);
            padding: 40px;
            border-radius: 8px;
            border: 1px solid #333;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: var(--dark);
            border: 1px solid #444;
            color: white;
            border-radius: 4px;
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 20px;
            width: 100%;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background-color: var(--primary-hover);
        }

        footer {
            background-color: #0b0b0b;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid #222;
            color: var(--text-muted);
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .contact-container {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 32px;
            }
        }

	/* --- Part 6: Brands & Trust Section --- */

        .brands-section {
            padding: 80px 0;
            background-color: #0b0c10;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .brands-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px 60px;
            opacity: 0.7;
        }

        .brand-item {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-muted);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .brand-item span {
            color: var(--primary);
        }

        /* --- Part 7: Contact & Booking Section --- */
        .contact-section {
            padding: 100px 0;
            background: radial-gradient(circle at 10% 90%, var(--accent-glow), transparent 30%);
        }

        .contact-grid {
            display: grid;
            grid-template-cols: 1fr 1.2fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .contact-info p {
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 450px;
        }

        .info-details {
            list-style: none;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .info-icon {
            width: 45px;
            height: 45px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .contact-form-container {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 40px;
            border-radius: 12px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            padding: 12px 16px;
            color: white;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        select.form-control option {
            background: var(--bg-card);
        }

        /* --- Part 8: Footer --- */
        footer {
            background: #06070a;
            padding: 40px 0;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* --- Part 1: Core Variables & Base Styles --- */
        :root {
            --bg-dark: #0a0b0d;
            --bg-card: #12141c;
            --primary: #ff5e00;
            --primary-hover: #ff7c33;
            --text-main: #f3f4f6;
            --text-muted: #9ca3af;
            --border: #232733;
            --accent-glow: rgba(255, 94, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px var(--accent-glow);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .section-title span {
            color: var(--primary);
        }

        /* --- Part 2: Navigation Bar --- */
         

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-link {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        /* --- Part 3: Hero Section --- */
        .hero {
            padding: 120px 0 100px 0;
            background: radial-gradient(circle at 80% 20%, var(--accent-glow), transparent 40%);
            position: relative;
        }

        .hero-grid {
            display: grid;
            grid-template-cols: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.8rem;
            line-height: 1.1;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 35px;
             
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
        }

        /* Visual placeholder representing high-end audio gear */
        .audio-gear-graphic {
            width: 80%;
            height: 350px;
            background: linear-gradient(135deg, #1e2230, #12141c);
            border: 2px solid var(--border);
            border-radius: 12px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .audio-gear-graphic::before {
            content: '';
            position: absolute;
            width: 140px;
            height: 140px;
            border: 8px solid var(--border);
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--primary);
        }

	
    
 /* --- Part 4: Services Section --- */

        .services-section {
            padding: 100px 0;
            background-color: var(--bg-dark);
        }

        .services-grid {
            display: grid;
            grid-template-cols: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(255, 94, 0, 0.05);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: inline-block;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: white;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            font-size: 0.85rem;
            color: var(--text-main);
        }

        .service-features li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-features li::before {
            content: "✓";
            color: var(--primary);
            font-weight: bold;
        }

        /* --- Part 5: Process Section --- */
        .process-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg-dark), #0f111a);
        }

        .process-grid {
            display: grid;
            grid-template-cols: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            position: relative;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--bg-card);
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 25px auto;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .process-step h3 {
            margin-bottom: 12px;
            font-size: 1.25rem;
        }

        .process-step p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
