/* =========================
   VARIABLES & GLOBAL
========================= */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #fbbf24;
    --dark: #020617;
    --light-bg: #f4f6fb;
    --text: #1e293b;
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--text);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: auto; }

/* =========================
   NAVBAR
========================= */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    background: var(--dark);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { color: #fff; text-decoration: none; font-weight: 800; font-size: 1.5rem; }
.brand-two { color: var(--accent); }

.nav-links { list-style: none; display: flex; gap: 25px; align-items: center; }
.nav-links a { color: #e5e7eb; text-decoration: none; font-weight: 500; }

.nav-btn {
    background: var(--accent);
    color: var(--dark) !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
}

/* =========================
   HERO & VIDEO
========================= */
.hero {
    height: 100vh;
    /* Darken the image slightly so white text pops */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('hero-bg.jpg.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a high-end parallax scroll effect */
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: #f1f5f9;
    margin-bottom: 25px;
}

/* =========================
   PORTFOLIO GRID
========================= */
section { padding: 100px 0; scroll-margin-top: 70px; }
.section-title { text-align: center; margin-bottom: 50px; }
.highlight { color: var(--primary); }

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.work-card {
    position: relative; height: 350px;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.work-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.work-card:hover img { transform: scale(1.1); }

.work-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9), transparent);
    color: #fff; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 25px;
}

/* =========================
   BOOKING FORM
========================= */
.booking-section { background: #e2e8f0; }
.booking-card {
    background: #fff; max-width: 800px; margin: auto;
    padding: 40px; border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.form-header { text-align: center; margin-bottom: 30px; }
.form-group-title {
    font-weight: 700; color: var(--primary);
    margin: 25px 0 15px; display: flex; align-items: center; gap: 10px;
}

.grid-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 15px; }
.input-group { display: flex; flex-direction: column; gap: 5px; }

label { font-size: 0.85rem; font-weight: 600; color: #64748b; }
input, select {
    padding: 12px; border: 2px solid #e2e8f0;
    border-radius: 8px; outline: none; transition: 0.3s;
}

input:focus, select:focus { border-color: var(--primary); }

.btn-submit {
    width: 100%; padding: 15px; background: var(--primary);
    color: white; border: none; border-radius: 8px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    margin-top: 20px; transition: 0.3s;
}

.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }

.form-footer { text-align: center; margin-top: 20px; font-size: 0.9rem; }
.form-footer a { color: var(--primary); font-weight: 600; text-decoration: none; }

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .grid-row { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
}
/* Detailed Services Section */
.services-detail {
    padding: 100px 0;
    background: #ffffff;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.detail-row.reverse {
    flex-direction: row-reverse;
}

.detail-text {
    flex: 1;
}

.mini-badge {
    color: #3b82f6;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.detail-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #020617;
}

.detail-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
}

.detail-image {
    flex: 1.2;
}

.detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Mobile Fixes */
@media (max-width: 992px) {
    .detail-row, .detail-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .detail-text h2 {
        font-size: 2rem;
    }
    
    .detail-image img {
        height: 300px;
    }
}
/* Contact Info Section */
.contact-footer {
    padding: 60px 0;
    background: #f1f5f9; /* Light grey to contrast with the dark footer */
    border-top: 1px solid #e2e8f0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item {
    padding: 20px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #020617;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    color: #020617;
    margin-bottom: 10px;
}

.contact-item p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-item a {
    color: #3b82f6;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Phone Visual Fix */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* =========================
   MAP SECTION
========================= */
.map-section {
    padding: 80px 0;
    background: #fff;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 4px solid #fff;
}

.map-container iframe {
    display: block;
    filter: grayscale(0.2) contrast(1.1); /* Subtle professional filter */
}

.map-container:hover iframe {
    filter: grayscale(0); /* Full color on hover */
    transition: 0.3s;
}
/* =========================
   TESTIMONIAL SLIDER
========================= */
.testimonials {
    background: var(--dark);
    padding: 30px 0;
    overflow: hidden;
    border-bottom: 3px solid var(--accent);
}

.slider-container {
    width: 100%;
    display: flex;
}

.slider-track {
    display: flex;
    width: calc(300px * 8); /* Adjust based on card width + gap */
    animation: scroll 30s linear infinite;
}

.review-card {
    width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 0 15px;
    flex-shrink: 0;
    text-align: center;
    transition: 0.3s;
}

.review-card:hover {
    background: rgba(240, 197, 197, 0.1);
    transform: translateY(-5px);
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-card p {
    color: #e2e8f0;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.customer-name {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* The Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 4)); } /* Slide by half the cards */
}

/* Pause animation on hover so people can read */
.slider-track:hover {
    animation-play-state: paused;
}
.btn-main {
    display: inline-block;
    background: var(--accent); /* This should be your bright yellow/gold */
    color: var(--dark);       /* Dark text for contrast */
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 25px;
    position: relative;        /* Crucial for z-index */
    z-index: 20;               /* Ensures it stays above the glass box */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
}

.btn-main:hover {
    transform: translateY(-3px);
    background: #ffffff;      /* Turns white on hover */
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.about-info {
    padding: 80px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--primary);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-bottom: 4px solid var(--accent);
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--primary);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
}
:root {
  --primary-color: #4f46e5;
  --text-main: #1f2937;
  --bg-card: #ffffff;
}

.feedback-container {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.feedback-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
}

.feedback-card h2 {
  margin-top: 0;
  color: var(--text-main);
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.input-group input, 
.input-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-sizing: border-box; /* Ensures padding doesn't break width */
}

/* Star Rating Logic */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
  margin-bottom: 1.5rem;
}

.star-rating input { display: none; }

.star-rating label {
  font-size: 2rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #fbbf24;
}

.submit-btn {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.9;
}