body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0f172a;
    color: #f8fafc;
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- Header --- */
header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #f8fafc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: #6366f1;
}

/* --- Hero Carousel (Full Background) --- */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero.home-hero {
    height: 100vh;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.10); /* Very subtle overlay */
    z-index: 1;
    pointer-events: none;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: brightness(1); /* No darkening */
    z-index: 0;
}

.carousel-img.active {
    opacity: 1;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    animation: fadeUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #e2e8f0;
    margin-bottom: 40px;
}

/* --- Scrolling Reviews Ticker --- */
.reviews-ticker {
    background: #6366f1;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-track {
    display: inline-block;
    animation: scrollTicker 40s linear infinite;
}

.review-item {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    margin: 0 15px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
}

.review-stars {
    color: #ffd700;
    margin-right: 10px;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Main & Grids --- */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.bento-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
}

/* --- Footer --- */
footer {
    background: #020617;
    padding: 60px 20px;
    color: #94a3b8;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #f8fafc;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom a {
    color: #f59e0b;
    text-decoration: none;
}

/* --- Pop-ups --- */
.popup-overlay { 
    display: none; 
    position: fixed; 
    top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.7); 
    z-index: 998; 
    backdrop-filter: blur(5px); 
}
.popup { 
    display: none; 
    position: fixed; 
    top: 50%; left: 50%; 
    transform: translate(-50%, -50%); 
    background: #1e293b; 
    padding: 40px; 
    border-radius: 20px; 
    z-index: 999; 
    max-width: 500px; 
    width: 90%; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    text-align: center; 
}
.close-btn { 
    position: absolute; 
    top: 15px; 
    right: 20px; 
    font-size: 24px; 
    cursor: pointer; 
}

@keyframes fadeUp { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}

@media (max-width: 900px) {
    header { flex-direction: column; gap: 15px; }
    nav ul { flex-wrap: wrap; justify-content: center; }
}
/* Gallery Styles */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 15px;
}

.gallery-item {
    position: relative;
    max-width: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 5px 0;
    font-weight: bold;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-item {
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        max-width: 100%;
    }
}