/* style.css */
:root {
    --primary: #8b0000; /* Deep Maroon */
    --gold: #d4af37; /* Metallic Gold */
    --dark: #1a1a1a;
    --light: #f9f6f0;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    width: 100vw;
    max-width: 100%;
}

img, iframe {
    max-width: 100%; /* Extremely crucial for responsive media */
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 20px;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ptb-100 { padding: 100px 0; }
.ptb-80 { padding: 80px 0; }
.mt-50 { margin-top: 50px; }
.text-center { text-align: center; }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); color: var(--white); }
.bg-primary { background-color: var(--primary); }

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
}

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

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title .divider {
    height: 3px;
    width: 80px;
    background-color: var(--gold);
    margin: 10px auto 0;
    position: relative;
}

.section-title .divider::before, .section-title .divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    top: -3.5px;
}
.section-title .divider::before { left: -15px; }
.section-title .divider::after { right: -15px; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: #000000;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.navbar.scrolled .logo { color: var(--gold); }
.navbar.scrolled .nav-links a { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }
.navbar.scrolled .mobile-toggle i { color: var(--gold); }

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    max-width: 200px; /* Optional fallback width */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

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

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

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* Low opacity black overaly */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-content {
    color: var(--white);
    max-width: 100%; /* Changed from 800px to prevent overflow */
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out 0.5s;
    z-index: 2;
    box-sizing: border-box; /* Ensures padding is included */
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }


/* About Section */
.about-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    color: #444;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.stat-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.6); /* Maroon Overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 30px;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
    transition-delay: 0.1s;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.15);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 30px;
    text-align: center;
}

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

/* Videos Slider */
.video-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.video-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-slide {
    min-width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    transition: var(--transition);
}

.video-slide:hover::before {
    background: rgba(0,0,0,0.5);
}

.vid-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    color: var(--primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}

.vid-slider-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.vid-prev-btn { left: 20px; }
.vid-next-btn { right: 20px; }

.play-btn-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    z-index: 1;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.video-slide:hover .play-btn-wrapper {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Contact */
.contact-wrapper {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.contact-left {
    flex: 1;
    padding: 60px 40px;
    background-color: var(--dark); /* Changed from primary to dark */
    color: var(--white);
}

.contact-right {
    flex: 2;
    padding: 60px 50px;
}

.contact-info {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--gold);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
}

/* Cities Marquee */
.cities-section {
    background-color: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.cities-section .section-title h2 {
    color: var(--gold);
}

.cities-section .section-title .divider {
    background-color: var(--white);
}

.cities-section .section-title .divider::before, .cities-section .section-title .divider::after {
    background-color: var(--gold);
}

.marquee-wrapper {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 5%, rgba(0,0,0,1) 95%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 5%, rgba(0,0,0,1) 95%, rgba(0,0,0,0));
}

.marquee-content {
    display: flex;
    animation: scroll 60s linear infinite;
}

.city-pill {
    padding: 12px 30px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    margin: 0 15px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.city-pill:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: #ccc;
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 300px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #aaa;
}

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

.contact-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-details i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 5px;
}

.contact-details p {
    margin: 0;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #111;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    visibility: hidden;
}

.fade-up {
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.zoom-in {
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* --- SUBPAGE ENHANCEMENTS --- */
/* Solid Navbar at Top */
.navbar.navbar-solid {
    background-color: #000000;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.navbar.navbar-solid:not(.scrolled) .logo { color: var(--white); }
.navbar.navbar-solid:not(.scrolled) .nav-links a { color: var(--white); }
.navbar.navbar-solid:not(.scrolled) .nav-links a::after { background-color: var(--gold); }
.navbar.navbar-solid:not(.scrolled) .mobile-toggle i { color: var(--white); }

/* Blogs Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.blog-img {
    height: 250px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img {
    transform: scale(1.1);
}
.blog-content {
    padding: 30px;
}
.blog-meta {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}
.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
    line-height: 1.4;
}
.blog-content p {
    color: #555;
    margin-bottom: 20px;
}
.read-more {
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}
.read-more:hover {
    color: var(--gold);
}
.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Details */
.blog-details-content {
    max-width: 800px;
    margin: 0 auto;
}
.blog-details-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.blog-details-text {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
}
.blog-details-text p {
    margin-bottom: 25px;
}
.blog-quote {
    padding: 30px 40px;
    background: var(--light);
    border-left: 5px solid var(--gold);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    margin: 40px 0;
    border-radius: 0 10px 10px 0;
}
.blog-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 50px;
    border: 1px solid rgba(0,0,0,0.05);
}
.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary);
}
.author-info p {
    margin: 0;
    font-size: 0.95rem;
}

/* When scrolled, navbar goes black (inheriting from .scrolled) */

/* Page Hero Banners */
.page-hero {
    height: 55vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0; 
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); 
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-top: 50px; 
}

.page-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.page-hero-content .breadcrumb-text {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* FAQs & Why Choose Us */
.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: var(--transition);
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139,0,0,0.1);
}
.feature-box i {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.faq-item h4 { margin-bottom: 10px; color: var(--primary); }
.faq-item p { margin: 0; color: #555; }

/* Services Zigzag */
.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}
.service-row:nth-child(even) {
    flex-direction: row-reverse;
}
.service-row:last-child {
    margin-bottom: 0;
}
.service-row-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.service-row-img img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.service-row:hover .service-row-img img {
    transform: scale(1.05);
}
.service-row-text {
    flex: 1;
}
.service-row-text h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.service-row-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
}
.ul-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
}
.ul-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Map Container */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #e5e3df; /* Map fallback color */
}

/* Responsive */
@media (max-width: 992px) {
    .service-row, .service-row:nth-child(even) { 
        flex-direction: column; 
        gap: 30px; 
        width: 100%;
    }
    .service-row-text, .service-row-img {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .service-row-img img { height: 300px; }
    .page-hero-content h1 { font-size: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { flex-direction: column; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto 20px; }
    .social-links { justify-content: center; }
    .contact-details .detail-item { justify-content: center; text-align: left;}
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding-top: 80px;
        transition: 0.5s ease-in-out;
    }
    
    .nav-links.active {
        right: 0;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-bottom: 20px;
    }
    
    .mobile-toggle { display: block; z-index: 1001; }
    .mobile-toggle.active i::before { content: "\f00d"; } /* 'X' icon */
    
    .slide-content h1 { font-size: 2.2rem; margin-bottom: 10px; line-height: 1.2; word-wrap: break-word; hyphens: auto;}
    .slide-content p { font-size: 1rem; margin-bottom: 25px; word-wrap: break-word;}
    .stats-grid { grid-template-columns: 1fr; }
    
    .blog-details-content { padding: 0 15px; } /* Prevent horizontal scroll on this container */
    .blog-quote { padding: 20px; font-size: 1.1rem; margin: 30px 15px; } /* Fix overflow on blockquotes */
    .blog-author-box { padding: 20px; flex-direction: column; text-align: center; }
    
    .page-hero-content { padding: 0 15px; width: 100%; box-sizing: border-box; }
    .page-hero-content h1 { font-size: 2.2rem; word-wrap: break-word; line-height: 1.2; }
    .page-hero-content p { word-wrap: break-word; font-size: 0.9rem;}
    
    .navbar { padding: 15px 0; }
    .ptb-100 { padding: 60px 0; }
    .ptb-80 { padding: 50px 0; }
    .section-title h2 { font-size: 2rem; margin-bottom: 5px; }

    .slider-btn { width: 40px; height: 40px; font-size: 16px; }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    
    .vid-slider-btn { width: 35px; height: 35px; font-size: 14px; }
    .vid-prev-btn { left: 5px; }
    .vid-next-btn { right: 5px; }

    .video-slide { height: 300px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-left, .contact-right { padding: 30px 15px; width: 100%; box-sizing: border-box;}
    .slide-content h1 { font-size: 1.8rem; }
    .nav-container { padding: 0 15px; }
    .stat-item h3 { font-size: 2.5rem; }
    .logo img { max-height: 50px; max-width: 150px; } /* Stop logo from overflowing */
    .section-title h2 { font-size: 1.8rem; word-wrap: break-word; hyphens: auto; }
    .page-hero-content h1 { font-size: 1.8rem; word-wrap: break-word; hyphens: auto;}
    .ul-features li { font-size: 0.9rem; }
    .feature-box { padding: 30px 20px; }
    .faq-item { padding: 20px 15px; }
    .service-row-img img { height: 250px; }
    .cities-section .container { padding: 0 10px;}
    .container { padding: 0 15px; overflow: hidden; max-width: 100vw; box-sizing: border-box;}
}
