/* CSS Reset & Variables */
:root {
    --primary-color: #1e40af;
    /* Deeper, more professional blue */
    --primary-dark: #1e3a8a;
    --accent: #10b981;
    --accent-alt: #fbbf24;
    /* Softer, golden yellow */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', 'Manrope', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

/* Typography */
.section-subtitle {
    font-family: var(--font-body);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-secondary {
    background: var(--accent-alt);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #e5cb00;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-call {
    background: var(--accent-alt);
    color: var(--primary-color);
    font-weight: 700;
}

.btn-call:hover {
    background: #e5cb00;
    transform: translateY(-2px);
    color: var(--primary-dark);
}

.btn-call i {
    margin-right: 6px;
}

.btn-call-hero {
    background: var(--accent-alt);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
}

.btn-call-hero:hover {
    background: #e5cb00;
    transform: translateY(-2px);
    color: var(--primary-dark);
}

.btn-call-hero i {
    margin-right: 8px;
}

.btn-call-sm {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    background: var(--accent-alt);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.82rem;
    font-family: var(--font-body);
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-call-sm:hover {
    background: #e5cb00;
    transform: translateY(-2px);
    color: var(--primary-dark);
}

.btn-call-sm i {
    margin-right: 5px;
}

/* ======================== NAVBAR ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    padding: 0.3rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 95px;
    object-fit: contain;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-nav-call {
    display: none;
    align-items: center;
    gap: 6px;
    background: var(--accent-alt);
    color: var(--text-dark);
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-left: auto;
    margin-right: 0.75rem;
    transition: var(--transition);
}

.mobile-nav-call:hover {
    background: #e5cb00;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.35rem;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    padding: 4px;
}

.mobile-menu-btn:hover {
    color: var(--accent-alt);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    visibility: hidden;
    width: 280px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    /* Matching deep blue-grey */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 5.5rem 2rem 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    z-index: 9999;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu a:not(.btn) {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.mobile-menu a:not(.btn):hover {
    color: var(--accent-alt);
}

.mobile-menu .btn {
    text-align: center;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    opacity: 0.8;
}

.close-menu:hover {
    color: var(--accent-alt);
    transform: rotate(90deg);
}

/* ======================== HERO ======================== */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    background: #000;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.indicator {
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--accent-alt);
    width: 32px;
}

/* ======================== ABOUT ======================== */
.about {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf8 50%, #f5f0ff 100%);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/m1.jpg') center/cover no-repeat;
    opacity: 0.04;
    z-index: 0;
}

.about .section-container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 12px;
}

.about-image img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: 500px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-alt);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    padding: 10px;
    border: 3px solid var(--white);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* ======================== SERVICES ======================== */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.services .section-subtitle {
    color: var(--accent);
}

.services .section-title {
    color: var(--white);
}

.services .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(38, 76, 249, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.service-info h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.service-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
}

.service-info .btn-call-sm {
    align-self: flex-start;
}

.service-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.service-buttons .btn-call-sm,
.service-buttons .btn-quote-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 0;
}

.btn-quote-sm {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 0.82rem;
    font-family: var(--font-body);
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-quote-sm:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

/* ======================== WHY CHOOSE US ======================== */
.why-us {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
    color: var(--white);
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero.jpg') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.why-us .section-container {
    position: relative;
    z-index: 1;
}

.why-us .section-subtitle {
    color: var(--accent);
}

.why-us .section-title {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 2.5rem 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.why-card i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 600;
}

.why-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ======================== WORKS ======================== */
.works {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.video-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-card iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

.video-card.vertical iframe {
    max-width: 267px;
    height: 476px;
}

/* ======================== TESTIMONIALS ======================== */
.testimonials {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/m4.jpg') center/cover no-repeat;
    opacity: 0.06;
    z-index: 0;
}

.testimonials .section-container {
    position: relative;
    z-index: 1;
}

.testimonials .section-subtitle {
    color: var(--accent);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-embed {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.testimonial-embed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-embed iframe {
    border-radius: 8px;
    width: 100% !important;
    max-width: 500px;
    display: block;
}

/* ======================== GALLERY ======================== */
.gallery {
    padding: 6rem 0;
}

.gallery-grid {
    column-count: 3;
    column-gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1rem;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ======================== BOOKING ======================== */
.booking {
    padding: 6rem 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.booking-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 230, 118, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.booking-phone i {
    font-size: 1.5rem;
    color: var(--accent);
}

.booking-phone span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.booking-phone a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.booking-phone a:hover {
    color: var(--primary-color);
}

.booking-form-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input {
    flex: 1;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    color: var(--text-dark);
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 76, 249, 0.1);
}

.w-100 {
    width: 100%;
}

/* ======================== FAQ SECTION ======================== */
.faq {
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.faq-item:hover {
    border-color: #d1d5db;
}

.faq-item.active {
    border-left-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:focus {
    outline: none;
}

.faq-question i {
    color: var(--primary-color);
    background: rgba(38, 76, 249, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.1s;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--accent);
}

/* ======================== FOOTER ======================== */
.footer {
    background: #111827;
    color: var(--white);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo {
    height: 120px;
    margin-bottom: 1.5rem;
    background: var(--white);
    padding: 5px;
    border-radius: 8px;
}

.footer-brand p {
    color: #e2e8f0;
    font-size: 1rem;
    max-width: 350px;
}

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-alt);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #e2e8f0;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.contact-info li i {
    color: var(--accent-alt);
    margin-right: 1rem;
    margin-top: 5px;
}

.contact-info li a {
    color: inherit;
}

.contact-info li a:hover {
    color: var(--accent-alt);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-alt);
    transform: translateY(-2px);
}

.footer-bottom {
    background: #030712;
    padding: 1.5rem 0;
    color: #e2e8f0;
    font-size: 0.875rem;
}

/* ======================== ANIMATIONS ======================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.text-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 2rem;
    }

    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    /* Disable opacity lock & transform on mobile to prevent blank/black screens on load/refresh */
    .text-fade-in,
    .slide-in-left,
    .slide-in-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .section-container {
        padding: 0 1.25rem;
    }

    .booking-form-box {
        padding: 1.5rem;
    }

    .nav-container {
        padding: 0.5rem 1.25rem;
    }

    .logo img {
        height: 75px;
        max-width: 180px;
    }

    .navbar.scrolled .logo img {
        height: 60px;
        max-width: 150px;
    }

    .nav-links,
    .desktop-only {
        display: none;
    }

    .mobile-nav-call {
        display: inline-flex;
        align-items: center;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }

    .hero-content p {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons .btn {
        flex: 1;
        max-width: 170px;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        white-space: nowrap;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-field {
        width: 100%;
        min-width: 0;
    }

    .about-image {
        overflow: hidden;
    }

    .why-card {
        padding: 2rem 1.25rem;
    }

    .faq-question {
        padding: 1.25rem 1rem 1.25rem 1.25rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .section-container {
        padding: 0 1rem;
    }
    .experience-badge {
        right: 10px;
        bottom: -10px;
        padding: 0.5rem;
        width: 100px;
        height: 100px;
    }
    .experience-badge .number {
        font-size: 1.5rem;
    }
    .experience-badge .text {
        font-size: 0.65rem;
    }

    .video-grid {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        column-count: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.0rem;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        column-count: 1;
    }
}

/* ======================== SEE US IN ACTION ======================== */
.works {
    background: var(--bg-light);
    padding: 6rem 0;
}

.video-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.video-card {
    background: var(--white);
    padding: 6px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    line-height: 0;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-card iframe {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 560 / 429;
}

.video-card.vertical iframe {
    aspect-ratio: auto;
    height: 476px;
}

@media (max-width: 768px) {
    .video-grid {
        gap: 1.5rem;
    }

    .video-card {
        max-width: 100%;
        width: 100%;
    }

    .video-card iframe {
        max-width: 100% !important;
    }

    .testimonial-embed iframe {
        max-width: 100% !important;
        width: 100% !important;
    }

    iframe {
        max-width: 100% !important;
    }
}

/* ======================== MODERN FOOTER ======================== */
.footer-modern {
    background: #090d16;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    overflow: hidden;
    width: 100%;
}

.footer-modern-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-brand-col .brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.modern-socials {
    display: flex;
    gap: 0.75rem;
}

.modern-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1rem;
    transition: var(--transition);
}

.modern-socials a:hover {
    background: var(--accent-alt);
    color: var(--primary-dark);
    border-color: var(--accent-alt);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.25);
}

.footer-modern .col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-modern .col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-alt);
}

.modern-links li {
    margin-bottom: 0.85rem;
}

.modern-links li a {
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.modern-links li a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--accent-alt);
    opacity: 0.6;
}

.modern-links li a:hover {
    color: var(--white);
    padding-left: 6px;
}

.modern-links li a:hover i {
    transform: translateX(3px);
    opacity: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e2e8f0;
    width: 100%;
    box-sizing: border-box;
}

.contact-item:hover {
    color: var(--white);
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(30, 64, 175, 0.15);
    border: 1px solid rgba(30, 64, 175, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-alt);
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--accent-alt);
    color: var(--primary-dark);
    border-color: var(--accent-alt);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-text .label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-text .value {
    font-size: 0.9rem;
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-text .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-flex .copyright-text {
    color: #64748b;
    font-size: 0.9rem;
}

.bravin-link {
    color: var(--accent-alt);
    font-weight: 700;
    transition: var(--transition);
}

.bravin-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.footer-policies {
    display: flex;
    gap: 1.5rem;
}

.footer-policies a {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-policies a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .footer-modern-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-text .value {
        word-break: break-all;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .testimonial-embed {
        max-width: 100%;
        padding: 1rem;
    }

    .testimonial-embed iframe {
        max-width: 100%;
    }
}