@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS variables for the color palette & typography */
:root {
    --primary: #10316b;          /* Trustworthy Navy Blue */
    --primary-light: #184799;
    --primary-dark: #0a1f44;
    --secondary: #e65c00;        /* Vibrant Orange Accent */
    --secondary-hover: #cc5200;
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --text-light: #9ca3af;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 85px;
    --header-height-sticky: 70px;
}

/* Reset and general styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

ul {
    list-style: none;
}

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

/* Common Layout Elements */
.section {
    padding: 80px 0;
}

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

.section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

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

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

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

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

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

/* TOP BAR INFO */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info-item i {
    color: var(--secondary);
}

.top-info-item a:hover {
    color: var(--secondary);
}

/* HEADER & NAVBAR */
header {
    background-color: var(--bg-white);
    width: 100%;
    position: relative;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    height: var(--header-height-sticky);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 45px;
    height: 45px;
    fill: var(--primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 30px;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--secondary);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-white);
    border-top: 3px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    border-radius: 0 0 5px 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--secondary);
    padding-left: 25px;
}

/* Hamburger Toggler */
.menu-toggler {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggler span {
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Drawer Sidebar */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background-color: var(--bg-white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    z-index: 1100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-submenu {
    padding-left: 15px;
    margin-top: 8px;
    display: none;
    flex-direction: column;
    gap: 10px;
    border-left: 2px solid var(--secondary);
}

.mobile-submenu.open {
    display: flex;
}

.mobile-sub-link {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.drawer-contact-info {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.drawer-contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.drawer-contact-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-contact-info i {
    color: var(--secondary);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* HERO SLIDER (Pure CSS & JS Carousel) */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide-container {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 49, 107, 0.75); /* Dark blue filter */
}

.slide-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--bg-white);
    max-width: 800px;
}

.hero-badge {
    align-self: flex-start;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge i {
    color: #ffb400;
}

.slide-subtitle {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.slide-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--bg-white);
    animation: fadeInUp 1s ease-out;
}

.slide-title span {
    color: var(--secondary);
}

.slide-text {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons-wrap {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    animation: fadeInUp 1.3s ease-out;
    flex-wrap: wrap;
}

.hero-buttons-wrap .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons-wrap .hero-call-btn {
    background-color: var(--secondary);
    color: var(--bg-white);
}

.hero-buttons-wrap .hero-call-btn:hover {
    background-color: var(--secondary-hover);
}

.hero-buttons-wrap .hero-quote-btn {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-buttons-wrap .hero-quote-btn:hover {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    border-color: var(--bg-white);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 1.4s ease-out;
    flex-wrap: wrap;
}

.hero-rating .stars {
    color: #ffb400;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-rating .area {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-rating .area i {
    color: var(--secondary);
}

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

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

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

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--secondary);
    width: 30px;
    border-radius: 6px;
}

/* ABOUT INTRO BLOCK */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(230, 92, 0, 0.3);
    text-align: center;
}

.about-experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-intro-content .intro-desc {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-intro-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.feature-item i {
    color: var(--secondary);
}

/* TRUST BANNER STATS */
.trust-banner {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 60px 0;
}

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

.stat-card .number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--secondary);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card .label {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.85;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#services .services-grid {
    grid-template-columns: repeat(6, 1fr);
}

#services .service-card {
    grid-column: span 2;
}

#services .service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

#services .service-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--secondary);
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 2.2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background-color: var(--secondary);
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 10px;
}

/* PROCESS WORKFLOW */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--secondary);
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: var(--transition);
}

.process-card:hover .process-step-num {
    background-color: var(--secondary);
    color: var(--bg-white);
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* OFFER SECTION */
.offer-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    color: var(--bg-white);
    text-align: center;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 49, 107, 0.85);
}

.offer-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

.offer-subtitle {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.offer-title {
    font-size: 2.8rem;
    color: var(--bg-white);
    margin-bottom: 25px;
}

.offer-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.offer-item i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.offer-item a {
    color: var(--secondary);
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-quote {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.rating-stars {
    color: #ffb400;
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    color: rgba(16, 49, 107, 0.08);
}

/* CONTACT & FAQ */
.contact-faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

/* Accordion FAQs */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.faq-header {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.05rem;
    transition: var(--transition);
}

.faq-header:hover {
    background-color: rgba(16, 49, 107, 0.02);
}

.faq-icon {
    color: var(--secondary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 0 25px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Booking Form */
.booking-form-wrap {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.booking-form-wrap h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.booking-form-wrap p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 5px;
    color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: rgba(255,255,255,0.15);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

select.form-control option {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

textarea.form-control {
    resize: none;
}

.form-submit-btn {
    width: 100%;
    background-color: var(--secondary);
    color: var(--bg-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit-btn:hover {
    background-color: var(--secondary-hover);
}

/* SUBPAGE BREADCRUMBS BANNER */
.breadcrumbs-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    color: var(--bg-white);
    text-align: center;
}

.breadcrumbs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 31, 68, 0.85);
}

.breadcrumbs-content {
    position: relative;
    z-index: 5;
}

.breadcrumbs-title {
    font-size: 2.8rem;
    color: var(--bg-white);
    margin-bottom: 10px;
}

.breadcrumbs-trail {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.breadcrumbs-trail a {
    color: var(--secondary);
}

.breadcrumbs-trail span {
    opacity: 0.7;
}

/* DETAILED SERVICES SUBPAGE */
.service-details-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-details-row:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.service-details-row:nth-child(even) .service-details-content {
    grid-column: 2;
    grid-row: 1;
}

.service-details-row:nth-child(even) .service-details-img {
    grid-column: 1;
    grid-row: 1;
}

.service-details-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-details-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 30px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.bullet-item i {
    color: var(--secondary);
}

.service-details-img img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* GALLERY PAGE GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 300px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(16, 49, 107, 0.9), rgba(16, 49, 107, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-overlay h3 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay span {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* CONTACT PAGE LAYOUT */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.contact-info-card i {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info-card a:hover {
    color: var(--secondary);
}

.map-placeholder-wrap {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.map-placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 49, 107, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-align: center;
    padding: 30px;
}

.map-placeholder-overlay i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.map-placeholder-overlay h3 {
    color: var(--bg-white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* FOOTER SECTION */
footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 80px 0 30px;
    border-top: 5px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

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

.footer-logo svg {
    width: 40px;
    height: 40px;
    fill: var(--bg-white);
    margin-bottom: 10px;
}

.footer-logo .logo-text {
    color: var(--bg-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-contact-item a:hover {
    color: var(--secondary);
}

/* Newsletter inside footer */
.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 5px;
    padding: 10px 15px;
    color: var(--bg-white);
    font-size: 0.85rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary);
}

.newsletter-form button {
    background-color: var(--secondary);
    color: var(--bg-white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary-hover);
}

.seo-meta-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0 0;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.seo-areas-list {
    color: rgba(255,255,255,0.7);
}

.seo-areas-list span {
    color: var(--secondary);
    font-weight: 600;
}

/* FLOATING RESPONSIVE CONTACTS (Call / WhatsApp) */
.mobile-float-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    left: auto;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    pointer-events: none; /* Let clicks pass through screen */
}

.float-action-btn {
    pointer-events: auto; /* Re-enable clicks for buttons */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.float-action-btn:hover {
    transform: scale(1.1);
}

.float-call {
    background-color: var(--primary);
    animation: pulseCall 2s infinite;
}

.float-whatsapp {
    background-color: #25d366;
    animation: pulseWA 2s infinite;
}

@keyframes pulseCall {
    0% { box-shadow: 0 0 0 0 rgba(16, 49, 107, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(16, 49, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 49, 107, 0); }
}

@keyframes pulseWA {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #services .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    #services .service-card {
        grid-column: span 2;
    }
    #services .service-card:nth-child(4) {
        grid-column: auto / span 2;
    }
    #services .service-card:nth-child(5) {
        grid-column: 2 / span 2;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .top-bar {
        display: none; /* Hide top bar on mobile for cleaner look */
    }
    
    .nav-links {
        display: none; /* Hide desktop nav link menu */
    }
    
    .menu-toggler {
        display: flex; /* Show menu toggler */
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-text {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    #services .services-grid {
        grid-template-columns: 1fr;
    }
    #services .service-card,
    #services .service-card:nth-child(4),
    #services .service-card:nth-child(5) {
        grid-column: auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .service-details-row, .service-details-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-details-row:nth-child(even) .service-details-content {
        grid-column: 1;
        grid-row: auto;
    }
    
    .service-details-row:nth-child(even) .service-details-img {
        grid-column: 1;
        grid-row: auto;
    }
    
    .mobile-float-actions {
        display: flex; /* Show floating buttons on mobile screens */
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .booking-form-wrap {
        padding: 25px 20px;
    }
}
