/* ============================================================
   SJ BROTHERS - PREMIUM DARK THEME (ENHANCED EDITION)
   ============================================================ */

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background: #08080f;
    color: #e8e8f0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00d4ff, #0066cc);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00d4ff;
}

/* ----- VARIABLES ----- */
:root {
    --primary: #08080f;
    --secondary: #0f0f1e;
    --card-bg: rgba(20, 22, 40, 0.92);
    --accent: #00d4ff;
    --accent-dark: #0095ff;
    --accent-dim: rgba(0, 212, 255, 0.12);
    --gradient: linear-gradient(135deg, #00d4ff 0%, #0088ff 50%, #0055bb 100%);
    --gradient-warm: linear-gradient(135deg, #ff6b35, #f7931e);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    --text-primary: #f0f0f8;
    --text-secondary: #b0b0c8;
    --text-muted: #6a6a82;
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --border-glow: 1px solid rgba(0, 212, 255, 0.15);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.04);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- HEADER (GLASSMORPHISM) ----- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 8, 15, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    padding: 6px 0;
    background: rgba(8, 8, 15, 0.92);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(0, 212, 255, 0.12);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 42px;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.2));
}

.logo img:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient);
    transition: var(--transition);
    border-radius: 4px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* ----- DROPDOWN ----- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    background: rgba(12, 12, 28, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    min-width: 240px;
    border-radius: var(--radius-sm);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    list-style: none;
    border: var(--border-glow);
    box-shadow: var(--shadow);
    transform: translateY(8px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    color: var(--text-secondary);
    transition: var(--transition);
    font-weight: 400;
    font-size: 0.92rem;
    border-left: 2px solid transparent;
}

.dropdown-menu li a:hover {
    background: var(--accent-dim);
    padding-left: 32px;
    color: #fff;
    border-left-color: var(--accent);
}

/* ----- MOBILE MENU ----- */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 8px;
}

.menu-btn:hover {
    background: var(--accent-dim);
    transform: scale(1.05);
}

.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 290px;
    height: 100%;
    background: rgba(10, 10, 22, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 32px 28px;
    border-right: 2px solid var(--accent);
    box-shadow: 8px 0 50px rgba(0, 0, 0, 0.7);
}

.side-menu.open {
    left: 0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 26px;
    color: var(--accent);
    cursor: pointer;
    margin-bottom: 32px;
    transition: var(--transition);
    padding: 4px;
    border-radius: 8px;
}

.close-menu:hover {
    transform: rotate(90deg);
    background: var(--accent-dim);
}

.side-menu ul {
    list-style: none;
}

.side-menu li {
    margin-bottom: 12px;
}

.side-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.05rem;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    font-weight: 500;
}

.side-menu a:hover {
    color: #fff;
    padding-left: 14px;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 6px;
}

.mobile-dropdown-menu li {
    margin-bottom: 8px;
}

.mobile-dropdown-menu a {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: none;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1500;
    display: none;
}

.overlay.active {
    display: block;
}

/* ----- BUTTON (3D GLOW) ----- */
.btn {
    background: var(--gradient);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 212, 255, 0.25);
}

.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: translateY(0px) scale(0.98);
}

/* ----- HERO (ANIMATED) ----- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 80, 160, 0.15), transparent 70%),
                radial-gradient(ellipse at 70% 50%, rgba(0, 180, 255, 0.08), transparent 60%),
                #08080f;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 15, 0.5) 0%, rgba(8, 8, 15, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.rating i {
    color: #ffbb00;
    font-size: 0.9rem;
}

.rating span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ----- SECTION TITLE (ELEGANT) ----- */
.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--gradient);
    border-radius: 4px;
}

.section-title p {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 1.05rem;
}

/* ----- SERVICES (GLASS CARDS) ----- */
.services {
    padding: 90px 0;
    background: linear-gradient(180deg, #08080f, #0a0a18);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: var(--border-subtle);
    display: block;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.05), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.service-card i {
    font-size: 3.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1) rotate(-3deg);
}

.service-card h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ----- SERVICE DETAIL ----- */
.service-detail {
    padding: 150px 0 90px 0;
    background: linear-gradient(180deg, #08080f, #0a0a18);
    min-height: 100vh;
}

.service-detail .container {
    max-width: 1200px;
}

.service-header {
    text-align: center;
    margin-bottom: 55px;
}

.service-header h1 {
    font-size: 3.2rem;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.service-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-info {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    border: var(--border-glow);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.service-info h2 {
    color: var(--accent);
    margin-bottom: 22px;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-info ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-info ul li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.service-info ul li:hover {
    color: #fff;
    padding-left: 4px;
}

.service-info ul li i {
    color: var(--accent);
    width: 26px;
    font-size: 1.1rem;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 22px 0;
}

.service-price span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.service-gallery img {
    width: 100%;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: var(--border-subtle);
}

.service-gallery img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

/* ----- ABOUT (WITH GLOW LINE) ----- */
.about {
    padding: 90px 0;
    background: linear-gradient(180deg, #0a0a18, #08080f);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: var(--radius);
    pointer-events: none;
}

.about-img img {
    width: 100%;
    border-radius: var(--radius);
    transition: 0.6s ease;
}

.about-img:hover img {
    transform: scale(1.04);
}

.about-text p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
    font-size: 1.02rem;
}

/* ----- GALLERY / SLIDER (PREMIUM) ----- */
.gallery {
    padding: 90px 0;
    background: linear-gradient(180deg, #08080f, #0a0a18);
}

.slider {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.slider-container {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #0a0a14;
    border: var(--border-subtle);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide {
    flex: 0 0 100%;
}

.slide img,
.slide video {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
    background: #05050a;
    border-radius: var(--radius-sm);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 212, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: #08080f;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.35);
}

.prev {
    left: -70px;
}

.next {
    right: -70px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #2a2a3e;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    width: 36px;
    border-radius: 8px;
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
}

.img-p {
    text-align: center;
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ----- VIDEO ----- */
video {
    width: 100%;
    max-height: 460px;
    background: #05050a;
    outline: none;
    border-radius: var(--radius-sm);
}

/* ----- REVIEWS (TESTIMONIALS) ----- */
.reviews {
    padding: 90px 0;
    background: var(--primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--card-bg);
    padding: 34px 30px;
    border-radius: var(--radius);
    text-align: center;
    border: var(--border-subtle);
    transition: var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.review-card .stars {
    color: #ffbb00;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.98rem;
}

.review-card h4 {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
}

/* ----- CONTACT (MODERN) ----- */
.contact {
    padding: 90px 0;
    background: linear-gradient(180deg, #0a0a18, #08080f);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}

.contact-info h3 {
    margin-bottom: 28px;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-item i {
    width: 54px;
    height: 54px;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    border: 1px solid rgba(0, 212, 255, 0.08);
    transition: var(--transition);
}

.contact-item:hover i {
    background: var(--accent);
    color: #08080f;
    transform: scale(1.05);
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.98rem;
}

.social {
    display: flex;
    gap: 16px;
    margin-top: 34px;
}

.social a {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 212, 255, 0.06);
}

.social a:hover {
    background: var(--accent);
    color: #08080f;
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 212, 255, 0.25);
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    border: var(--border-glow);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    background: rgba(8, 8, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    color: #e8e8f0;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.06);
    background: rgba(8, 8, 15, 0.8);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ----- MAP SECTION (ENHANCED) ----- */
.map-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #08080f, #0a0a18);
}

.map-wrapper {
    background: #0a0a18;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: var(--border-glow);
    transition: var(--transition);
}

.map-wrapper:hover {
    box-shadow: var(--shadow-glow);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-6px);
}

.map-container {
    position: relative;
    width: 100%;
    height: 460px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(40%) contrast(80%) brightness(0.6);
    transition: var(--transition);
}

.map-container iframe:hover {
    filter: grayscale(0%) contrast(100%) brightness(0.8);
}

.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(8, 8, 15, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 28px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: var(--border-glow);
    z-index: 10;
    box-shadow: var(--shadow);
}

.map-address {
    display: flex;
    align-items: center;
    gap: 18px;
}

.map-address i {
    font-size: 1.8rem;
    color: var(--accent);
    background: var(--accent-dim);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.08);
}

.map-address p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-address p strong {
    color: #fff;
    font-size: 1rem;
}

.map-buttons {
    display: flex;
    gap: 14px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: var(--gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}

.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(0, 212, 255, 0.3);
}

/* ----- FOOTER (SOPHISTICATED) ----- */
footer {
    background: linear-gradient(180deg, #05050a, #000000);
    padding: 70px 0 25px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient);
    border-radius: 4px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-grid h4 {
    margin-bottom: 22px;
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-grid a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 0.92rem;
}

.footer-grid a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-grid img {
    height: 50px;
    margin-bottom: 18px;
    filter: brightness(1.2);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ----- FLOATING BUTTONS (PREMIUM) ----- */
.whatsapp {
    position: fixed;
    bottom: 85px;
    right: 24px;
    background: #25D366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 45px rgba(37, 211, 102, 0.5);
}

.call {
    position: fixed;
    bottom: 22px;
    right: 24px;
    background: var(--gradient);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.3);
    transition: var(--transition);
}

.call:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 45px rgba(0, 212, 255, 0.4);
}

.backtotop {
    position: fixed;
    bottom: 22px;
    left: 24px;
    background: var(--gradient);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.backtotop.show {
    opacity: 1;
    visibility: visible;
}

.backtotop:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.35);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 992px) {
    .prev { left: 10px; }
    .next { right: 10px; }
    
    .hero h1 { font-size: 3rem; }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .service-header h1 {
        font-size: 2.6rem;
    }
    
    .map-container {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .menu-btn { display: block; }
    .nav-links { display: none; }
    
    .hero h1 { font-size: 2.4rem; }
    .section-title h2 { font-size: 2rem; }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slide img,
    .slide video {
        max-height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .map-address {
        flex-direction: column;
        text-align: center;
    }
    
    .map-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .service-detail {
        padding: 130px 0 70px 0;
    }
    
    .service-info {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 { 
        font-size: 1.8rem; 
    }
    
    .hero p { 
        font-size: 1rem; 
    }
    
    .section-title h2 { 
        font-size: 1.6rem; 
    }
    
    .slide img,
    .slide video {
        max-height: 240px;
    }
    
    .btn { 
        padding: 12px 24px; 
        font-size: 0.9rem; 
    }
    
    .map-container { 
        height: 280px; 
    }
    
    .map-buttons { 
        flex-direction: column; 
        gap: 10px; 
        width: 100%;
    }
    
    .map-btn {
        justify-content: center;
        width: 100%;
    }
    
    .service-header h1 {
        font-size: 2rem;
    }
    
    .service-info h2 {
        font-size: 1.3rem;
    }
    
    .service-price {
        font-size: 1.6rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        gap: 20px;
        padding: 0 12px;
    }
    
    .service-card {
        padding: 28px 20px;
    }
    
    .service-card i {
        font-size: 2.6rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .whatsapp,
    .call {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        right: 16px;
    }
    
    .whatsapp {
        bottom: 72px;
    }
    
    .call {
        bottom: 16px;
    }
    
    .backtotop {
        width: 44px;
        height: 44px;
        left: 16px;
        bottom: 16px;
        font-size: 0.9rem;
    }
}

/* ------------- यह CSS आपके Footer स्टाइल के लिए है ------------- */

/* ============================================================
   FOOTER LOCATION SECTION - PREMIUM DARK THEME
   ============================================================ */

.footer-location-section {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
}

/* ===== TOGGLE BUTTON - GLASSMORPHISM ===== */
.location-toggle {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #e8e8f0;
    padding: 16px 24px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Glow effect on hover */
.location-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 136, 255, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.location-toggle:hover::before {
    opacity: 1;
}

.location-toggle:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.location-toggle:active {
    transform: translateY(0px) scale(0.99);
}

/* Location icon */
.location-toggle .toggle-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-toggle .toggle-icon i {
    color: #00d4ff;
    font-size: 1.2rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.location-toggle .toggle-text {
    background: linear-gradient(135deg, #00d4ff, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Arrow styling */
.location-toggle .arrow {
    font-size: 20px;
    color: #00d4ff;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.location-toggle .arrow.open {
    transform: rotate(180deg);
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.25);
}

/* Badge showing total locations */
.location-toggle .location-badge {
    background: linear-gradient(135deg, #00d4ff, #0088ff);
    color: #08080f;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 50px;
    margin-left: 10px;
    -webkit-text-fill-color: #08080f;
}

/* ===== LOCATION LIST CONTAINER ===== */
.location-list-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    background: rgba(12, 12, 28, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0 0 14px 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: none;
}

.location-list-container.open {
    max-height: 700px;
    overflow-y: auto;
    padding: 20px 24px 28px;
    border-color: rgba(0, 212, 255, 0.1);
    box-shadow: inset 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Custom scrollbar for location list */
.location-list-container::-webkit-scrollbar {
    width: 4px;
}

.location-list-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.location-list-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00d4ff, #0088ff);
    border-radius: 10px;
}

/* ===== LOCATION GRID ===== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

/* Individual location cards */
.location-grid a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0c8;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

/* Location pin icon */
.location-grid a i {
    color: #00d4ff;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Hover effect */
.location-grid a:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.location-grid a:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: #fff;
}

/* Active/click effect */
.location-grid a:active {
    transform: scale(0.96);
}

/* Glow line on hover */
.location-grid a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    transition: all 0.4s ease;
}

.location-grid a:hover::after {
    width: 80%;
    left: 10%;
}

/* ===== SECTION HEADER INSIDE LIST ===== */
.location-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.location-list-header h4 {
    color: #e8e8f0;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.location-list-header h4 span {
    color: #00d4ff;
}

.location-list-header .location-count {
    color: #6a6a82;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 992px) {
    .location-toggle {
        font-size: 16px;
        padding: 14px 20px;
    }
    
    .location-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
    }
    
    .location-grid a {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-location-section {
        margin-top: 20px;
        padding-top: 18px;
    }
    
    .location-toggle {
        font-size: 15px;
        padding: 12px 16px;
        border-radius: 12px;
    }
    
    .location-toggle .toggle-icon i {
        font-size: 1rem;
    }
    
    .location-toggle .arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .location-list-container.open {
        padding: 16px 16px 20px;
        max-height: 500px;
    }
    
    .location-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 6px;
    }
    
    .location-grid a {
        font-size: 0.75rem;
        padding: 7px 10px;
        border-radius: 8px;
    }
    
    .location-list-header h4 {
        font-size: 0.85rem;
    }
    
    .location-toggle .location-badge {
        font-size: 0.6rem;
        padding: 1px 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .location-toggle {
        font-size: 13px;
        padding: 10px 14px;
        border-radius: 10px;
    }
    
    .location-toggle .toggle-icon i {
        font-size: 0.9rem;
    }
    
    .location-toggle .arrow {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
    
    .location-list-container.open {
        padding: 12px 12px 16px;
        max-height: 400px;
    }
    
    .location-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 4px;
    }
    
    .location-grid a {
        font-size: 0.7rem;
        padding: 6px 8px;
        border-radius: 6px;
        gap: 4px;
    }
    
    .location-grid a i {
        font-size: 0.6rem;
    }
    
    .location-list-header {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    
    .location-list-header .location-count {
        font-size: 0.65rem;
        padding: 2px 10px;
    }
}

/* ===== ANIMATION FOR LOCATIONS APPEARING ===== */
.location-grid a {
    opacity: 0;
    animation: locationFadeIn 0.4s ease forwards;
}

.location-grid a:nth-child(1) { animation-delay: 0.02s; }
.location-grid a:nth-child(2) { animation-delay: 0.04s; }
.location-grid a:nth-child(3) { animation-delay: 0.06s; }
.location-grid a:nth-child(4) { animation-delay: 0.08s; }
.location-grid a:nth-child(5) { animation-delay: 0.10s; }
.location-grid a:nth-child(6) { animation-delay: 0.12s; }
.location-grid a:nth-child(7) { animation-delay: 0.14s; }
.location-grid a:nth-child(8) { animation-delay: 0.16s; }
.location-grid a:nth-child(9) { animation-delay: 0.18s; }
.location-grid a:nth-child(10) { animation-delay: 0.20s; }
.location-grid a:nth-child(11) { animation-delay: 0.22s; }
.location-grid a:nth-child(12) { animation-delay: 0.24s; }
.location-grid a:nth-child(13) { animation-delay: 0.26s; }
.location-grid a:nth-child(14) { animation-delay: 0.28s; }
.location-grid a:nth-child(15) { animation-delay: 0.30s; }
.location-grid a:nth-child(16) { animation-delay: 0.32s; }

@keyframes locationFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== OPEN STATE SPECIAL EFFECTS ===== */
.location-list-container.open .location-grid a {
    opacity: 1;
}

/* ===== DARK THEME SCROLLBAR (Firefox) ===== */
.location-list-container {
    scrollbar-width: thin;
    scrollbar-color: #00d4ff rgba(255, 255, 255, 0.02);
}

/* ===== GLOW TEXT FOR SECTION ===== */
.location-toggle .toggle-text {
    background: linear-gradient(135deg, #00d4ff, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ============================================================
   INSTAGRAM REELS SECTION
   ============================================================ */

.instagram-reels {
    padding: 90px 0;
    background: linear-gradient(180deg, #0a0a18, #08080f);
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 28px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.3);
}

.insta-follow-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(225, 48, 108, 0.5);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reel-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: var(--border-subtle);
    transition: var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.reel-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.reel-embed {
    width: 100%;
    background: #0a0a14;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.reel-embed iframe {
    width: 100% !important;
    min-height: 480px !important;
    border: none !important;
}

/* Instagram Embed Override */
.reel-embed .instagram-media {
    margin: 0 auto !important;
    min-width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.reel-info {
    padding: 16px 20px 20px;
}

.reel-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.reel-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.view-more-container {
    text-align: center;
    margin-top: 45px;
}

.view-more-container .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Loading Placeholder */
.reel-embed .loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.reel-embed .loading-placeholder i {
    font-size: 3rem;
    color: var(--accent);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .reels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reel-embed {
        min-height: 280px;
    }
    
    .reel-embed iframe {
        min-height: 380px !important;
    }
    
    .insta-follow-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .reel-embed {
        min-height: 220px;
    }
    
    .reel-embed iframe {
        min-height: 320px !important;
    }
}
/* ============================================================
   NEW YOUTUBE VIDEO SECTION - DARK THEME
   ============================================================ */

.youtube-video-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #08080f, #0a0a18, #08080f);
    position: relative;
    overflow: hidden;
}

.youtube-video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 0, 0, 0.05), transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(0, 212, 255, 0.03), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.youtube-video-section .container {
    position: relative;
    z-index: 1;
}

/* ===== Subscribe Button ===== */
.yt-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 28px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 24px rgba(255, 0, 0, 0.25);
}

.yt-subscribe-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
}

.yt-subscribe-btn i {
    font-size: 1.2rem;
}

/* ===== Video Grid ===== */
.youtube-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

/* ===== Video Card ===== */
.yt-video-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.yt-video-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Featured card (first video) */
.yt-video-card.featured {
    border-color: rgba(255, 0, 0, 0.15);
}

.yt-video-card.featured:hover {
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(255, 0, 0, 0.05);
}

/* ===== Video Wrapper ===== */
.yt-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #05050a;
    overflow: hidden;
}

.yt-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Video Overlay ===== */
.yt-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
    cursor: pointer;
}

.yt-video-card:hover .yt-video-overlay {
    opacity: 1;
}

/* ===== Play Icon ===== */
.yt-play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
    transform: scale(0.8);
}

.yt-video-card:hover .yt-play-icon {
    transform: scale(1);
    box-shadow: 0 0 60px rgba(255, 0, 0, 0.5);
}

.yt-play-icon:hover {
    background: #ffffff;
    color: #ff0000;
    transform: scale(1.1) !important;
}

/* ===== Video Duration ===== */
.yt-video-duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== Video Placeholder ===== */
.yt-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a18, #08080f);
    color: var(--text-muted);
    gap: 12px;
}

.yt-video-placeholder i {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
}

.yt-video-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Video Info ===== */
.yt-video-info {
    padding: 22px 24px 26px;
}

.yt-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.08);
    color: #ff4444;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 0, 0, 0.06);
    margin-bottom: 12px;
}

.yt-video-card.featured .yt-video-badge {
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.1);
}

.yt-video-info h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.yt-video-card:hover .yt-video-info h3 {
    color: #ff4444;
}

.yt-video-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

/* ===== Video Meta ===== */
.yt-video-meta {
    display: flex;
    gap: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.yt-video-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.yt-video-meta i {
    color: #ff4444;
    font-size: 0.7rem;
}

/* ===== View All Button ===== */
.yt-view-all-container {
    text-align: center;
    margin-top: 50px;
}

.yt-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff0000, #cc0000) !important;
    box-shadow: 0 4px 24px rgba(255, 0, 0, 0.25) !important;
}

.yt-view-all-btn:hover {
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4) !important;
}

.yt-view-all-btn i {
    font-size: 1.1rem;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablets */
@media (max-width: 992px) {
    .youtube-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .youtube-video-section {
        padding: 70px 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .youtube-video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 16px;
    }
    
    .youtube-video-section {
        padding: 60px 0;
    }
    
    .yt-video-info {
        padding: 18px 20px 22px;
    }
    
    .yt-video-info h3 {
        font-size: 1rem;
    }
    
    .yt-play-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .yt-video-duration {
        font-size: 0.65rem;
        padding: 3px 12px;
        bottom: 12px;
        right: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .youtube-video-grid {
        gap: 20px;
        padding: 0 12px;
    }
    
    .youtube-video-section {
        padding: 50px 0;
    }
    
    .yt-video-info {
        padding: 14px 16px 18px;
    }
    
    .yt-video-info h3 {
        font-size: 0.95rem;
    }
    
    .yt-video-info p {
        font-size: 0.82rem;
    }
    
    .yt-video-meta {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .yt-video-meta span {
        font-size: 0.7rem;
    }
    
    .yt-play-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .yt-video-badge {
        font-size: 0.6rem;
        padding: 3px 12px;
    }
    
    .yt-subscribe-btn {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .yt-view-all-btn {
        font-size: 0.85rem;
        padding: 11px 24px;
    }
}