/* Global Styles */
:root {
    --primary-color: #fca311;
    --primary-hover: #e89510;
    --secondary-color: #14213d;
    --secondary-hover: #0e172a;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #1e293b;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container-full {
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 80px 0;
}

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

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

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

.bg-dotted {
    background-color: #f8fafc;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 30px 30px;
}

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

.text-light {
    color: #cbd5e1;
}

.subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 163, 17, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 33, 61, 0.4);
}

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 75px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition);
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    color: var(--primary-color);
    background-color: #f8f9fa;
    padding-left: 25px;
    /* Slight indent on hover */
}

/* Hero Slider */
.hero {
    position: relative;
}

.hero-slider {
    height: 600px;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}



.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: 10%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.3s;
}

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

.hero-content h1 {
    font-size: 4rem;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* Process Section */
.process-section {
    background-color: #f7f9fa;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 60px 20px;
}

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

.process-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.process-icon {
    width: 70px;
    height: 70px;
    background-color: #11539c;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(17, 83, 156, 0.2);
}

.process-card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.process-link {
    color: #4a90e2;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.process-link:hover {
    color: #11539c;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.intro-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Services */
.services {
    background: linear-gradient(rgba(20, 33, 61, 0.9), rgba(20, 33, 61, 0.9)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

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

@media (max-width: 992px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-new {
        grid-template-columns: 1fr;
    }
}

.service-card-new {
    background: #343961;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 200px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

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

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

.service-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.service-content {
    padding: 0 10px 10px 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-content p {
    font-size: 0.9rem;
    color: #f1f1f1;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    align-items: center;
    justify-content: space-between;
}

.btn-book,
.btn-read {
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.btn-book {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-book:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-read {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--primary-color);
}

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

/* Why Stand Out */
.wso-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.wso-content .subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.wso-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

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

.wso-feature .icon {
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--primary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.wso-feature h4 {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.wso-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.wso-image-wrapper {
    position: relative;
    width: 100%;
    margin-top: 30px;
}

.wso-img-main {
    width: 85%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: block;
    margin-right: auto;
}

.wso-img-front {
    position: absolute;
    bottom: -15%;
    right: 0;
    width: 65%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 10px solid var(--white);
    transform: translateY(0);
    transition: var(--transition);
}

.wso-image-wrapper:hover .wso-img-front {
    transform: translateY(-10px);
}

/* CTA Bar */
.cta-bar {
    background-color: #101726;
    padding: 60px 20px;
}

.cta-bar h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-bar .btn-primary {
    background-color: #fca210;
    color: var(--white);
    border: none;
}

.cta-bar .btn-primary:hover {
    background-color: #e5900a;
}

.cta-bar .btn-secondary {
    background-color: #1f2a3f;
    color: var(--white);
    border: none;
}

.cta-bar .btn-secondary:hover {
    background-color: #2b3954;
}

/* Connecting Section */
.connecting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.connecting-images {
    position: relative;
    height: 400px;
}

.connecting-images img {
    border-radius: 10px;
    position: absolute;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.connecting-images .img-1 {
    width: 70%;
    top: 0;
    left: 0;
    z-index: 1;
}

.connecting-images .img-2 {
    width: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 5px solid var(--white);
}

.connecting-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.connecting-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.connecting-content .btn {
    margin-top: 15px;
}

/* Stats & Booking */
.stats-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.wp-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-image-wrapper .wp-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* 5 Section Stats Block */
.five-stats-section {
    background-color: #fca210;
    color: var(--white);
    padding: 30px 0;
}

.stats-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e54b4b;
    /* Redish-orange like screenshot */
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-text h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
    font-weight: 700;
}

.stat-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.working-process-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    color: var(--text-color);
}

.wp-header {
    margin-bottom: 40px;
}

.wp-subtitle {
    display: flex;
    align-items: center;
    color: #11539c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.wp-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1.1rem;
}

.wp-header h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    line-height: 1.2;
}

.wp-steps {
    position: relative;
    padding-left: 10px;
}

.wp-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 32px;
    border-left: 2px dashed var(--primary-color);
    z-index: 0;
}

.wp-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.wp-step:last-child {
    margin-bottom: 0;
}

.wp-step-number {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #11539c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-right: 25px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.wp-step-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.wp-step-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.team-card {
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: var(--transition);
}

.team-card:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.team-card h4 {
    margin-bottom: 5px;
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card .stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-card h5 {
    color: var(--secondary-color);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.faq-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header.active {
    background: var(--primary-color);
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-light);
}

.accordion-body p {
    padding: 15px 0;
    color: var(--text-light);
}

.faq-image img {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col p {
    color: var(--text-light);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.contact-info li i {
    color: var(--primary-color);
}

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

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: var(--secondary-hover);
    padding: 20px 0;
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        display: none;
        /* In a real app, add a hamburger menu */
    }

    .intro-grid,
    .wso-grid,
    .connecting-grid,
    .stats-booking-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .stats-horizontal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .stats-booking-grid {
        gap: 30px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-horizontal-grid {
        grid-template-columns: 1fr;
    }
}

/* --- New Intro Section --- */
.new-intro {
    background-color: #fff;
    padding-top: 60px;
}

.new-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.new-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.new-intro-content .subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.new-intro-content h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.new-intro-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.new-intro-content .btn-primary {
    background-color: var(--primary-color);
    padding: 14px 35px;
    font-size: 1.1rem;
}

/* --- Who We Are Section --- */
.who-we-are {
    background-color: #fff;
    padding-bottom: 100px;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 3fr 4fr 5fr;
    gap: 40px;
    align-items: center;
}

/* Left Cards */
.wwa-left-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wwa-card-light-blue {
    background-color: #d1f0ff;
    padding: 40px 30px;
    border-radius: 40px 10px 40px 40px;
}

.wwa-stat {
    margin-bottom: 25px;
}

.wwa-stat:last-child {
    margin-bottom: 0;
}

.wwa-stat h3 {
    font-size: 2.2rem;
    color: #00bcd4;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 5px;
}

.wwa-stat p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.wwa-card-teal {
    background-color: #00838f;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wwa-card-teal .badge-icon {
    background-color: #ffca28;
    color: #00838f;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.wwa-card-teal h4 {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Center Image */
.wwa-center-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 120px 120px 120px 120px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    transition: var(--transition);
}

.wwa-center-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Right Content */
.wwa-right-content {
    padding-left: 20px;
}

.badge-cyan {
    background-color: #e0f7fa;
    color: #00acc1;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.wwa-right-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.wwa-desc {
    color: var(--text-light);
    margin-bottom: 25px;
}

.wwa-bullets {
    margin-bottom: 35px;
}

.wwa-bullets li {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wwa-bullets li i {
    color: #00acc1;
    font-size: 1.2rem;
}

.btn-yellow {
    background-color: #ffeb3b;
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 10px 10px 30px;
    border-radius: 40px;
}

.btn-yellow:hover {
    background-color: #fdd835;
    transform: translateY(-2px);
}

.btn-yellow .btn-icon {
    background-color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

/* Floating Menu */
.floating-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.floating-menu a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.floating-menu a:hover {
    background-color: #f0f0f0;
}

@media (max-width: 992px) {
    .new-intro-grid {
        grid-template-columns: 1fr;
    }

    .who-we-are-grid {
        grid-template-columns: 1fr;
    }

    .wwa-center-image img {
        height: auto;
        border-radius: 30px;
    }

    .floating-menu {
        display: none;
    }
}

/* --- Hero Slider --- */
.hero-section {
    background-color: transparent;
}

.hero-slider {
    padding: 0;
}

.hero-slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    color: #fff;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    border: 4px solid var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Slider Animations */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-text.delay-1 {
    transition-delay: 0.2s;
}

.animate-text.delay-2 {
    transition-delay: 0.4s;
}

.animate-image {
    opacity: 0;
    transform: scale(0.9) translateX(30px);
    transition: all 1s ease 0.3s;
}

.swiper-slide-active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .animate-image {
    opacity: 1;
    transform: scale(1) translateX(0);
}

@media (max-width: 992px) {
    .hero-slide-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-slider {
        padding: 0px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Best Option Section */
.best-option {
    position: relative;
    z-index: 1;
}

.best-option-bg {
    position: relative;
    background-color: transparent;
    border-radius: 0;
    padding-bottom: 0;
    margin: 0 auto;
}

.best-option-inner {
    background-color: #f3f6f1;
    border-radius: 0;
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.subtitle-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 1.5px;
}

.subtitle-lines {
    color: #3b9b00;
    font-weight: 700;
    letter-spacing: -2px;
}

.best-option-content h2 {
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.best-option-desc {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.divider {
    height: 1px;
    background-color: #e0e5db;
    margin-bottom: 30px;
}

.best-option-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.best-option-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    font-size: 1.05rem;
}

.check-icon {
    background-color: #3b9b00;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.btn-yellow {
    background-color: #ffde00;
    color: #111;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    background-color: #e6c800;
    transform: translateY(-2px);
}

.best-option-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .best-option-inner {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .best-option-content h2 {
        font-size: 2.2rem;
    }
}

/* About Us Page Styles */
.page-header {
    padding: 20px 0;
    position: relative;
    color: var(--white);
    margin-top: 0;
}

.page-header h1 {
    font-size: 3rem;
    color: #ff9900;
    /* Match the orange color in screenshot */
    margin: 0;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page-images {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.about-img-main {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img-overlay-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border: 8px solid #14213d;
    /* Dark blue border */
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-img-sub {
    width: 100%;
    display: block;
}

.about-page-text h2 {
    font-size: 2.5rem;
    color: #14213d;
    margin-bottom: 25px;
}

.about-page-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.vision-mission {
    position: relative;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.vm-card h3 {
    font-size: 2rem;
    color: #14213d;
    margin-bottom: 20px;
}

.vm-card p {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 992px) {

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

    .about-img-overlay-wrapper {
        width: 50%;
    }
}

/* Service Details Page */
.service-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    margin-bottom: 10px;
}

.service-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f2f5;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-list a:hover,
.service-list a.active {
    background-color: #e5e7eb;
    color: #14213d;
}

.service-list a i {
    color: #ff9900;
    font-size: 1.2rem;
}

.service-cta {
    background-color: #14213d;
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-cta p {
    color: #ff9900;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-cta .btn-yellow {
    width: 100%;
}

/* Main Content Styles */
.service-content {
    color: #444;
}

.service-main-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-content h2 {
    font-size: 2rem;
    color: #14213d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.service-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #fff;
}

.service-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-content li {
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
}

.service-content li strong {
    color: #333;
}

/* Green Bullet List Custom Style */
.green-bullet-list {
    list-style: none;
    padding-left: 0;
}

.green-bullet-list li {
    position: relative;
    padding-left: 25px;
    color: #48a77a;
    /* Green text matching screenshot */
}

.green-bullet-list li strong {
    color: #48a77a;
}

.green-bullet-list li::before {
    content: "\2022";
    /* Bullet */
    color: #48a77a;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 5px;
    top: -2px;
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        order: 2;
        /* Move sidebar below content on mobile */
    }

    .service-content {
        order: 1;
    }

    .page-header {
        padding: 15px 0;
    }
}

/* Top Bar Styles */
.top-bar {
    background-color: #fca311;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

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

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

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

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, transform 0.3s;
}

.top-bar-right a:hover {
    color: #e5e5e5;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 5px;
        align-items: center;
        text-align: center;
    }

    .d-none-mobile {
        display: none;
        /* Hide address on very small screens to save space */
    }
}

/* Responsive Sections */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

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

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 30px;
    padding: 60px 20px;
}

@media (max-width: 992px) {

    .faq-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

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

    .faq-grid {
        gap: 30px;
    }

    .quote-grid {
        gap: 30px;
    }
}

/* Floating Action Buttons */
.btn-call-floating {
    position: fixed;
    left: 40px;
    bottom: 90px;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-whatsapp-floating {
    position: fixed;
    left: 40px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-call-floating:hover,
.btn-whatsapp-floating:hover {
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .btn-call-floating {
        left: 20px;
        bottom: 20px;
    }

    .btn-whatsapp-floating {
        left: auto;
        right: 20px;
        bottom: 20px;
    }
}

/* Mobile Menu & Header Adjustments */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .header .container {
        padding: 0 15px;
        /* Reduced padding to touch the edges more */
        justify-content: space-between;
    }

    .logo img {
        height: 75px;
        /* Larger logo on mobile */
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        display: none;
        /* Hidden by default on mobile */
        z-index: 999;
    }

    .navbar.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Fix gap and hero slider on mobile */
@media (max-width: 992px) {
    .header {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .hero-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .hero-slider {
        height: auto !important;
        min-height: 500px;
    }

    .hero-slide-grid {
        grid-template-columns: 1fr;
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
    }

    .hero-content {
        margin-left: 0;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}