/*! modern-normalize | MIT License | https://github.com/sindresorhus/modern-normalize */


/* Document ========== */

html {
    -webkit-text-size-adjust: 100%;
    line-height: 1.15;
    box-sizing: border-box;
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}


/* Sections ========== */

body {
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

main {
    display: block;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem;
    line-height: 1.2;
    font-weight: 700;
}

p {
    margin: 0 0 1.5rem;
}


/* Grouping content ========== */

figure {
    margin: 0;
}


/* Text-level semantics ========== */

a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #8b1f76;
}

strong {
    font-weight: 600;
}


/* Forms ========== */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}


/* Interactive ========== */

details {
    display: block;
}

summary {
    display: list-item;
}


/* Utilities ========== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Skip Links ========== */

.skip-links {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #8b1f76;
    color: white;
    padding: 1rem;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skip-link:focus {
    left: 0;
    opacity: 1;
}


/* Top Bar ========== */

.top-bar {
    background-color: #222;
    color: #fff;
    font-size: 0.75rem;
    /* Reduced from 0.875rem */
    padding: 0.4rem 0;
    /* Slightly reduced padding */
}

.top-bar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar__item {
    display: flex;
    align-items: center;
    margin: 0.2rem 0;
    /* Reduced margin */
}

.top-bar__item i {
    margin-right: 0.4rem;
    /* Reduced margin */
    color: #8b1f76;
    font-size: 0.7rem;
    /* Added icon size reduction */
}

.top-bar__item a {
    color: #fff;
    transition: color 0.3s ease;
    font-size: 0.75rem;
    /* Explicit font size for links */
}

.top-bar__item a:hover {
    color: #8b1f76;
}

.divider {
    margin: 0 0.4rem;
    /* Reduced margin */
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    /* Added size for divider */
}

@media (max-width: 768px) {
    .top-bar__content {
        flex-direction: column;
        align-items: flex-start;
    }
    .top-bar__item {
        margin: 0.2rem 0;
        /* Reduced margin */
    }
}


/* Header ========== */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.main-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.main-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}


/* Mobile Navigation Toggle */

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-nav-toggle {
    padding: 12px 15px;
    /* Adjust as needed */
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}


/* Primary Navigation */

.primary-nav {
    display: flex;
    padding: 15px 0;
    /* Vertical padding for the nav container */
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    padding: 0 20px;
    /* Horizontal padding for the list */
}

.nav-link {
    display: block;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 12px 20px;
    /* Vertical and horizontal padding for links */
    display: inline-block;
    /* Ensures padding works properly */
}

.nav-link:hover,
.nav-link.active {
    color: #8b1f76;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: #8b1f76;
}


/* Dropdown Navigation */

.dropdown {
    position: relative;
}

.dropdown__toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.3s ease;
    padding: 12px 20px 12px 20px;
    /* Match nav-link padding */
}

.dropdown__toggle:hover {
    color: #8b1f76;
}

.dropdown__toggle i {
    margin-left: 0.25rem;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown__toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    list-style: none;
    padding: 10px 0;
    /* Vertical padding for dropdown */
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown__menu,
.dropdown__toggle[aria-expanded="true"]+.dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__link {
    display: block;
    padding: 8px 20px 8px 30px;
    /* More left padding for visual hierarchy */
    color: #333;
    transition: all 0.3s ease;
}

.dropdown__link:hover {
    color: #8b1f76;
    background-color: #f9f9f9;
}


/* CTA Button */

.cta-button {
    background-color: #8b1f76;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link.cta-button {
    padding: 12px 25px;
    /* Slightly more padding for emphasis */
}

.cta-button:hover {
    background-color: #6e175f;
    transform: translateY(-2px);
}


/* Mobile Navigation */

@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: block;
    }
    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 80%;
        max-width: 320px;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding: 20px 0;
        /* More vertical padding on mobile */
        overflow-y: auto;
    }
    .primary-nav[data-visible="true"] {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        padding: 0;
        /* Remove horizontal padding on mobile */
    }
    .nav-link,
    .dropdown__toggle {
        padding: 15px 25px;
        /* Larger touch targets on mobile */
    }
    .dropdown__menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .dropdown__toggle[aria-expanded="true"]+.dropdown__menu {
        max-height: 500px;
    }
    .dropdown__link {
        padding: 12px 25px 12px 35px;
        /* Adjusted for mobile */
    }
}


/* Hero Section ========== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    width: 100%;
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem 15px;
    width: 100%;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    z-index: 1;
    animation: bounce 2s infinite;
}

.scroll-indicator__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    margin-bottom: 0.5rem;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@media (max-width: 992px) {
    .hero__title {
        font-size: 2.75rem;
    }
    .hero__text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        text-align: center;
    }
    .hero__title {
        font-size: 2.25rem;
    }
    .hero__cta {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }
    .hero__text {
        font-size: 1rem;
    }
    .hero__cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}


/* Buttons ========== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn--primary {
    background-color: #8b1f76;
    color: #fff;
}

.btn--primary:hover {
    background-color: #6e175f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn--outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--white {
    background-color: #fff;
    color: #8b1f76;
}

.btn--white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn i {
    margin-left: 0.5rem;
}

@media (max-width: 576px) {
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}


/* Section Styling ========== */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 15px;
}

.section-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #8b1f76;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #8b1f76;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    .section-description {
        font-size: 0.95rem;
    }
}


/* Video Container with YouTube Link */

.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 31, 118, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-link:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.play-text {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}


/* YouTube brand color for hover effect */

.video-link:hover .play-overlay i {
    color: #ff0000;
    /* YouTube red */
}


/* About Section ========== */

.about-section {
    padding: 5rem 0;
    width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 15px;
}

.about-media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.media-container {
    position: relative;
    padding-top: 75%;
}

.media-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.media-img.active {
    opacity: 1;
}

.media-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 1;
}

.media-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.media-control.active {
    background-color: #fff;
    transform: scale(1.2);
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    color: #8b1f76;
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    .feature-list {
        grid-template-columns: 1fr 1fr;
    }
}


/* Services Section ========== */

.services-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 15px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
    font-size: 2.5rem;
    color: #8b1f76;
    margin-bottom: 1.5rem;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card__description {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    color: #8b1f76;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card__link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card__link:hover {
    color: #6e175f;
}

.service-card__link:hover i {
    transform: translateX(5px);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}


/* Stats Section ========== */

.stats-section {
    padding: 4rem 0;
    background-color: #8b1f76;
    color: #fff;
    text-align: center;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 15px;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

@media (min-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* Why Choose Us Section ========== */

.why-choose-section {
    padding: 5rem 0;
    width: 100%;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 15px;
}

.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(139, 31, 118, 0.8);
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-button:hover {
    background-color: #8b1f76;
    transform: translate(-50%, -50%) scale(1.1);
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    color: #8b1f76;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: #666;
}

@media (min-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* Testimonials Section ========== */

.testimonials-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    width: 100%;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonial-slide {
    background-color: #fff;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
}

.rating {
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.client-title {
    color: #666;
    font-size: 0.875rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #8b1f76;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: #8b1f76;
    color: #fff;
}


/* CTA Section ========== */

.cta-section {
    padding: 4rem 0;
    background-color: #8b1f76;
    color: #fff;
    width: 100%;
}

.cta-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 15px;
}

.cta-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cta-text {
    max-width: 600px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .cta-content {
        margin-bottom: 2rem;
    }
}


/* Contact Section ========== */

.contact-section {
    padding: 5rem 0;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 15px;
}

.contact-description {
    margin-bottom: 2rem;
    color: #666;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b1f76;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.method-info {
    color: #666;
    margin-bottom: 0;
}

.method-info a {
    color: #8b1f76;
    transition: color 0.3s ease;
}

.method-info a:hover {
    color: #6e175f;
}

.flag-icon {
    margin-right: 0.5rem;
}


/* Contact Form */

.contact-form {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #8b1f76;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 31, 118, 0.1);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}


/* Alerts */

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert--success {
    background-color: #d4edda;
    color: #155724;
}

.alert--error {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-icon {
    font-size: 1.25rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* Footer ========== */

.main-footer {
    background-color: #222;
    color: #fff;
    padding: 4rem 0 0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 15px;
}

.footer-col {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #8b1f76;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    display: block;
    padding: 0.5rem 0;
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #8b1f76;
    padding-left: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #8b1f76;
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #aaa;
}

.contact-item i {
    margin-top: 0.25rem;
    color: #8b1f76;
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item a {
    color: #aaa;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8b1f76;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 15px;
}

.footer-copyright {
    text-align: center;
    color: #aaa;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.legal-link {
    color: #aaa;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #8b1f76;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}


/* Floating Elements ========== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: #8b1f76;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #6e175f;
    transform: translateY(-5px);
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 4.5rem;
        right: 1.5rem;
    }
}


/* Animations ========== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}


/* Counter Animation */

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    display: inline-block;
    animation: countUp 1s ease forwards;
}


/* Responsive Adjustments ========== */

@media (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 4.5rem;
        right: 1.5rem;
    }
}


/* About Page Specific Styles */

.hero-about {
    min-height: 70vh;
    max-height: 800px;
}

.hero-about .hero__title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-about .hero__text {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.hero-about .hero__cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .hero-about .hero__title {
        font-size: 2.75rem;
    }
    .hero-about .hero__text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-about {
        min-height: 500px;
        text-align: center;
    }
    .hero-about .hero__title {
        font-size: 2.25rem;
    }
    .hero-about .hero__cta {
        justify-content: center;
    }
}


/* About Company Section */

.about-company-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    padding: 0 15px;
}

.about-company-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.media-container {
    position: relative;
    height: 100%;
}

.media-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.media-img.active {
    opacity: 1;
}

.media-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 1;
}

.media-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.media-control.active {
    background-color: #fff;
    transform: scale(1.2);
}

.about-company-content {
    padding: 1rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.mission-vision-item {
    display: flex;
    gap: 1rem;
}

.mission-vision-item i {
    font-size: 1.5rem;
    color: #8b1f76;
    margin-top: 0.25rem;
}

.mission-vision-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    color: #8b1f76;
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .about-company-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-company-media {
        height: 500px;
    }
    .mission-vision {
        grid-template-columns: 1fr 1fr;
    }
    .feature-list {
        grid-template-columns: 1fr 1fr;
    }
}


/* History Section */

.history-section {
    padding: 3rem 0;
    background-color: #fff;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 15px;
}

.history-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    max-height: 400px;
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* Milestones section remains the same */

.milestones {
    margin-top: 2rem;
}

.milestone {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.milestone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #8b1f76;
}

.milestone-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8b1f76;
    min-width: 80px;
}

.milestone-content {
    flex: 1;
}

.milestone-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}


/* Responsive adjustments */

@media (min-width: 992px) {
    .history-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* Core Services Section */

.core-services-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 15px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
    font-size: 2.5rem;
    color: #8b1f76;
    margin-bottom: 1.5rem;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card__description {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    color: #8b1f76;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card__link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card__link:hover {
    color: #6e175f;
}

.service-card__link:hover i {
    transform: translateX(5px);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}


/* Why Choose Us Section */

.why-choose-us-section {
    padding: 5rem 0;
    background-color: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 15px;
}

.why-choose-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    font-size: 2.5rem;
    color: #8b1f76;
    margin-bottom: 1.5rem;
}

.why-choose-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}


/* Team Preview Section */

.team-preview-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.team-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 15px;
}

.team-preview-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}

.team-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.team-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 1.5rem;
}

.team-image-caption h3 {
    margin-bottom: 0.25rem;
    color: #fff;
}

.team-image-caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.team-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.team-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-features i {
    color: #8b1f76;
}

@media (min-width: 768px) {
    .team-preview-images {
        grid-template-columns: 1fr 1fr;
    }
    .team-preview-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =============================================
   TEAM PAGE SPECIFIC STYLES
   ============================================= */


/* Team Hero */

.hero--team .hero__overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}


/* CEO Card */

.ceo-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.ceo-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-info {
    padding: 2rem;
    text-align: center;
}

.ceo-badge {
    display: inline-block;
    background: #8b1f76;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ceo-name {
    font-size: 1.8rem;
    margin: 0.5rem 0;
    color: #333;
}

.ceo-position {
    color: #8b1f76;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.ceo-bio {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ceo-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.ceo-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.3s ease;
}

.ceo-social .social-link:hover {
    background: #8b1f76;
    color: #fff;
}


/* Team Members Grid */

.team-members-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 15px;
}

.team-member-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 31, 118, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member-card:hover .team-member-overlay {
    opacity: 1;
}

.team-member-bio {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-member-social .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.team-member-social .social-link:hover {
    background: #fff;
    color: #8b1f76;
}

.team-member-info {
    padding: 1.5rem;
    text-align: center;
}

.team-member-name {
    font-size: 1.2rem;
    margin: 0 0 0.3rem 0;
    color: #333;
}

.team-member-position {
    color: #777;
    font-size: 0.9rem;
}


/* Responsive Adjustments */

@media (min-width: 768px) {
    .ceo-card {
        flex-direction: row;
        max-width: 1000px;
        margin: 3rem auto 0;
    }
    .ceo-image {
        width: 40%;
        height: auto;
    }
    .ceo-info {
        width: 60%;
        padding: 3rem;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .ceo-social {
        justify-content: flex-start;
    }
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 576px) {
    .ceo-image {
        height: 300px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================= */


/* Page Hero */

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 2rem 15px;
}

.page-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumb__link {
    color: #8b1f76;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb__link:hover {
    color: #fff;
}

.breadcrumb__separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb__current {
    color: rgba(255, 255, 255, 0.8);
}


/* Services Detailed Grid */

.services-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 15px;
}

.service-detailed-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-detailed__header {
    padding: 1.5rem;
    background: #8b1f76;
    color: #fff;
    display: flex;
    align-items: center;
}

.service-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    color: #fff;
}

.service-title {
    font-size: 1.3rem;
    margin: 0;
}

.service-detailed__body {
    padding: 1.5rem;
}

.service-description {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.feature-icon {
    color: #8b1f76;
    margin-right: 0.5rem;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* Process Section */

.process-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    padding: 0 15px;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #8b1f76;
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: #8b1f76;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    flex-grow: 1;
}

.step-title {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #8b1f76;
}

.step-description {
    margin: 0;
    color: #666;
}


/* Service CTA Section */

.service-cta-section {
    padding: 4rem 0;
    background: #8b1f76;
    color: #fff;
}

.service-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 15px;
}

.service-cta-content {
    max-width: 600px;
}

.service-cta-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-title {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* Responsive Adjustments */

@media (min-width: 768px) {
    .services-detailed-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
    .process-steps::before {
        left: 50%;
    }
    .process-step:nth-child(odd) {
        flex-direction: row;
        text-align: right;
    }
    .process-step:nth-child(even) {
        flex-direction: row-reverse;
        text-align: left;
    }
    .service-cta-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-cta-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
    }
    .page-hero__title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    .service-cta {
        flex-direction: column;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-buttons .btn {
        width: 100%;
    }
}


/* =============================================
   PROJECTS PAGE SPECIFIC STYLES
   ============================================= */


/* Projects Hero */

.hero--projects .hero__overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}


/* Projects Filter */

.projects-filter {
    padding: 4rem 0 2rem;
    background: #f9f9f9;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 0 15px;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #f0e6ed;
    color: #8b1f76;
}

.filter-btn.active {
    background: #8b1f76;
    color: #fff;
    border-color: #8b1f76;
}


/* Projects Grid */

.projects-grid {
    padding: 3rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 15px;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #8b1f76;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    z-index: 2;
}

.project-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-gallery {
    height: 100%;
    width: 100%;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.action-btn {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: #8b1f76;
    color: white;
}

.project-content {
    padding: 20px;
}

.project-header {
    margin-bottom: 15px;
}

.project-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.project-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-price {
    font-weight: 700;
    color: #8b1f76;
    font-size: 1.2rem;
}

.price-period {
    font-size: 0.8rem;
    color: #666;
}

.project-details-btn {
    padding: 8px 15px;
}


/* Project Stats */

.stats-section {
    padding: 4rem 0;
    background: #8b1f76;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 15px;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}


/* Responsive Adjustments */

@media (min-width: 576px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .project-features {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .filter-buttons {
        justify-content: center;
    }
    .project-card__image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .project-features {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* Gallery Hero Section */

.gallery-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/projects.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gallery-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 0 15px;
}


/* Gallery Main Content */

.gallery-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 4rem 0;
    padding: 0 15px;
}


/* Gallery Slider */

.gallery-slider-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-slide {
    position: relative;
    display: none;
    width: 100%;
    height: 400px;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
}

.slide-nav button {
    background: rgba(139, 31, 118, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-nav button:hover {
    background: rgba(139, 31, 118, 1);
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slide-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicators .indicator.active {
    background: rgba(139, 31, 118, 1);
    transform: scale(1.2);
}


/* Gallery Description */

.gallery-description h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.gallery-description p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-list i {
    color: #8b1f76;
    margin-right: 10px;
    margin-top: 3px;
}


/* Gallery Thumbnails */

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 3rem 0;
}

.thumbnail-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.thumbnail-item.active {
    border-color: #8b1f76;
}

.thumbnail-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}


/* Gallery CTA Section */

.gallery-cta-section {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.gallery-cta-section h2 {
    color: #333;
    margin-bottom: 1rem;
}

.gallery-cta-section p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .gallery-container {
        grid-template-columns: 1fr 1fr;
    }
}


/* Contact Hero Section */

.contact-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 0 15px;
}


/* Contact Form Section */

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 15px;
}

.contact-info {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-form-container {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #8b1f76;
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238b1f76' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.form-submit {
    width: 100%;
}


/* Contact Methods */

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.method-icon {
    margin-right: 1rem;
    color: #8b1f76;
    font-size: 1.25rem;
}

.method-title {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.method-info {
    margin: 0;
    color: #666;
}

.method-info a {
    color: #8b1f76;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-info a:hover {
    color: #6a175c;
    text-decoration: underline;
}


/* Alert Messages */

.alert {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.alert--success {
    background-color: #e6f7ee;
    color: #0a5c36;
}

.alert--error {
    background-color: #fde8e8;
    color: #9b1c1c;
}

.alert-icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}


/* Map Section */

.map-section {
    padding: 0 0 5rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =============================================
   AGENT REGISTRATION PAGE SPECIFIC STYLES
   ============================================= */


/* Agent Hero */

.hero-agent .hero__overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}


/* Agent Benefits */

.agent-benefits {
    padding: 5rem 0;
    background: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 15px;
}

.benefit-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #8b1f76;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #333;
}

.benefit-text {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}


/* Agent Registration Form */

.agent-registration {
    padding: 5rem 0;
}

.agent-form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.form-section {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-section-title {
    font-size: 1.3rem;
    color: #8b1f76;
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.form-section-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #8b1f76;
    outline: none;
}

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.3rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-option input {
    position: absolute;
    opacity: 0;
}

.radio-checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
}

.radio-option input:checked~.radio-checkmark {
    border-color: #8b1f76;
}

.radio-checkmark:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8b1f76;
    opacity: 0;
}

.radio-option input:checked~.radio-checkmark:after {
    opacity: 1;
}


/* Reference Cards */

.reference-card {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.reference-title {
    font-size: 1.1rem;
    color: #555;
    margin-top: 0;
    margin-bottom: 1rem;
}


/* Document Upload */

.document-upload-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.upload-card {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.upload-card:hover {
    transform: translateY(-3px);
}

.upload-icon {
    font-size: 2rem;
    color: #8b1f76;
    margin-bottom: 0.5rem;
}

.upload-label {
    display: block;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #444;
}

.file-input {
    display: none;
}

.upload-btn {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.file-name {
    display: block;
    font-size: 0.85rem;
    color: #666;
    word-break: break-all;
}


/* Checkbox Group */

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-checkbox {
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.checkbox-label {
    font-size: 0.95rem;
    color: #444;
}

.checkbox-label a {
    color: #8b1f76;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}


/* Form Submit */

.form-submit {
    text-align: center;
    margin-top: 2rem;
}


/* Agent FAQ */

.agent-faq {
    padding: 5rem 0;
    background: #f9f9f9;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin-top: 0;
    padding-bottom: 1.5rem;
    color: #555;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 500px;
    padding: 0 1.5rem;
}


/* Responsive Adjustments */

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .form-row {
        flex-direction: row;
        gap: 1.5rem;
    }
    .radio-group {
        flex-direction: row;
        gap: 1.5rem;
    }
    .document-upload-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .document-upload-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}


/* Property Hero Section */

.property-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/property-hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 100px 0;
    position: relative;
}

.property-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.property-hero__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.property-hero__text {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.property-search {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.search-field {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b1f76;
}

.search-input,
.search-select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.search-submit {
    padding: 12px 25px;
}


/* Property Listings */

.property-listings {
    padding: 80px 0;
}

.property-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 15px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
}

.filter-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.filter-toggle {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.toggle-btn {
    background: #f5f5f5;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: #8b1f76;
    color: white;
}

.properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 15px;
}

.property-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #8b1f76;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    z-index: 2;
}

.property-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-gallery {
    height: 100%;
    width: 100%;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.action-btn {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: #8b1f76;
    color: white;
}

.property-content {
    padding: 20px;
}

.property-header {
    margin-bottom: 15px;
}

.property-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.property-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.property-price {
    font-weight: 700;
    color: #8b1f76;
    font-size: 1.2rem;
}

.price-period {
    font-size: 0.8rem;
    color: #666;
}

.property-details-btn {
    padding: 8px 15px;
}


/* Modals */

.property-modal,
.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-container {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    margin: 5vh auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.modal-content {
    padding: 40px;
}


/* Property Details Modal */

.property-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.property-details__gallery {
    position: relative;
}

.property-details__main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.property-details__thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.property-details__thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.property-details__thumbnail.active {
    border-color: #8b1f76;
}

.property-details__info h2 {
    margin-bottom: 15px;
}

.property-details__location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    margin-bottom: 20px;
}

.property-details__price {
    font-size: 1.5rem;
    color: #8b1f76;
    font-weight: 700;
    margin-bottom: 20px;
}

.property-details__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.property-details__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-details__description {
    margin-bottom: 30px;
    line-height: 1.6;
}

.property-details__features {
    margin-bottom: 30px;
}

.property-details__features h3 {
    margin-bottom: 15px;
}

.property-details__features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.property-details__features-list li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-details__actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* Inquiry Modal */

.inquiry-form {
    max-width: 500px;
    margin: 0 auto;
}


/* Why Buy With Us Section */

.why-choose-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    padding: 0 15px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #f0e6ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #8b1f76;
    font-size: 1.5rem;
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}


/* Buying Guide Section */

.guide-section {
    padding: 80px 0;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    padding: 0 15px;
}

.tab-btn {
    padding: 10px 20px;
    background: #f5f5f5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #8b1f76;
    color: white;
}

.tab-content {
    display: none;
    padding: 0 15px;
}

.tab-content.active {
    display: block;
}

.process-steps {
    display: grid;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #8b1f76;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    flex-grow: 1;
}

.step-title {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #8b1f76;
}

.step-description {
    margin: 0;
    color: #666;
}

.documents-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
}

.document-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.document-icon {
    width: 60px;
    height: 60px;
    background: #f0e6ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #8b1f76;
    font-size: 1.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
}

.tip-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tip-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b1f76;
}


/* Newsletter Section */

.newsletter-section {
    padding: 60px 0;
    background: #8b1f76;
    color: white;
}

.newsletter-card {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
}

.form-checkbox {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    font-size: 0.9rem;
}


/* Responsive Adjustments */

@media (min-width: 576px) {
    .properties-grid {
        grid-template-columns: 1fr 1fr;
    }
    .property-features {
        grid-template-columns: 1fr 1fr;
    }
    .benefits-grid,
    .documents-grid,
    .tips-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .property-details {
        grid-template-columns: 1fr 1fr;
    }
    .property-details__features-list {
        grid-template-columns: 1fr 1fr;
    }
    .property-details__meta {
        grid-template-columns: 1fr 1fr;
    }
    .modal-container {
        width: 90%;
    }
}

@media (min-width: 992px) {
    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    .benefits-grid,
    .documents-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 576px) {
    .property-details__actions {
        flex-direction: column;
    }
    .property-details__features-list {
        grid-template-columns: 1fr;
    }
    .property-details__meta {
        grid-template-columns: 1fr;
    }
}


/* Sell Page Styles */

.sell-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/sell-hero.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 120px 0 100px;
    text-align: center;
}

.sell-hero__title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.sell-hero__text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    padding: 0 15px;
}

.sell-hero__cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Valuation Section */

.valuation-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.valuation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 15px;
}

.valuation-content {
    padding-right: 0;
}

.valuation-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: #8b1f76;
    font-size: 1.2rem;
}

.valuation-info {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.info-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.info-list {
    margin-top: 15px;
    padding-left: 20px;
}

.info-list li {
    margin-bottom: 8px;
    position: relative;
}

.info-list li::before {
    content: "•";
    color: #8b1f76;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.valuation-form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Process Section */

.process-section {
    padding: 80px 0;
    background-color: #fff;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 0 15px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #8b1f76;
    top: 0;
    bottom: 0;
    left: 30px;
}

.timeline-item {
    padding: 10px 0 10px 70px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.timeline-number {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #8b1f76;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    top: 15px;
    left: 10px;
    z-index: 1;
}

.timeline-content {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.timeline-text {
    color: #555;
    line-height: 1.6;
}


/* Why Sell Section */

.why-sell-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    padding: 0 15px;
}

.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #8b1f76;
    font-size: 1.5rem;
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-text {
    color: #555;
    line-height: 1.6;
}


/* Success Stories */

.success-section {
    padding: 80px 0;
    background-color: #fff;
}

.success-stories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    padding: 0 15px;
}

.story-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 20px;
}

.story-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.story-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #777;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.story-text {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.story-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b1f76;
    font-weight: 500;
}

.highlight-icon {
    font-size: 1.1rem;
}


/* Sell Property Section */

.sell-property-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.sell-property-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 15px;
}

.sell-property-content {
    padding: 40px;
    background: linear-gradient(135deg, #8b1f76, #0056b3);
    color: #fff;
}

.sell-property-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.sell-property-text {
    margin-bottom: 30px;
    line-height: 1.6;
}

.sell-property-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.sell-property-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sell-property-features .feature-icon {
    color: #fff;
}

.sell-property-form {
    padding: 40px;
}


/* FAQ Section */

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 0 15px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: #f9f9f9;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    line-height: 1.6;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 500px;
    padding: 0 20px;
}


/* Responsive Styles */

@media (min-width: 768px) {
    .valuation-grid {
        grid-template-columns: 1fr 1fr;
    }
    .valuation-content {
        padding-right: 20px;
    }
    .valuation-features {
        grid-template-columns: 1fr 1fr;
    }
    .process-timeline::before {
        left: 50%;
    }
    .timeline-item {
        padding: 10px 40px;
        width: 50%;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    .timeline-item:nth-child(even) {
        left: 50%;
    }
    .timeline-item:nth-child(odd) .timeline-number,
    .timeline-item:nth-child(even) .timeline-number {
        left: -20px;
    }
    .timeline-item:nth-child(even) .timeline-number {
        left: auto;
        right: -20px;
    }
    .benefits-grid,
    .success-stories {
        grid-template-columns: 1fr 1fr;
    }
    .sell-property-card {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .benefits-grid,
    .success-stories {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .sell-hero {
        padding: 100px 0 80px;
    }
    .sell-hero__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .sell-hero__title {
        font-size: 1.8rem;
    }
    .sell-hero__cta {
        flex-direction: column;
        gap: 15px;
    }
    .timeline-item {
        padding-left: 60px;
    }
    .timeline-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .timeline-item:nth-child(even) .timeline-number {
        right: auto;
        left: 10px;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-item {
        width: 100%;
    }
    .timeline-item:nth-child(odd) .timeline-number {
        left: 10px;
    }
}


/* Chatbot Widget Styles */

.chatbot-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chatbot-widget.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    background: linear-gradient(135deg, #8b1f76 0%, #6a185d 100%);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-title h3 {
    margin: 0;
    font-size: 16px;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.chatbot-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f9f9f9;
}

.chat-message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    margin-bottom: 10px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-user {
    align-self: flex-end;
    background: #8b1f76;
    color: white;
    border-bottom-right-radius: 5px;
}

.message-bot {
    align-self: flex-start;
    background: #e9ecef;
    color: #333;
    border-bottom-left-radius: 5px;
}

.chatbot-welcome {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.chatbot-welcome ul {
    margin: 10px 0;
    padding-left: 20px;
}

.chatbot-welcome li {
    margin-bottom: 5px;
    font-size: 14px;
}

.chatbot-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid #eee;
    background: white;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
}

.chatbot-input input:focus {
    border-color: #8b1f76;
}

.chatbot-input button {
    background: #8b1f76;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-input button:hover {
    background: #6a185d;
}

.chatbot-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b1f76 0%, #6a185d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 31, 118, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 31, 118, 0.4);
}

.chatbot-button i {
    font-size: 24px;
}

.typing-indicator {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #e9ecef;
    border-radius: 18px;
    width: fit-content;
    margin-bottom: 10px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #888;
    border-radius: 50%;
    margin: 0 2px;
    animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%,
    60%,
    100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
}


/* Adjust WhatsApp button position when chatbot is active */

.chatbot-widget.active~.whatsapp-float {
    bottom: 530px;
}


/* Responsive design */

@media (max-width: 768px) {
    .chatbot-widget {
        width: 90%;
        right: 5%;
        bottom: 80px;
        height: 70vh;
    }
    .chatbot-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .chatbot-widget.active~.whatsapp-float {
        bottom: calc(70vh + 90px);
    }
}


/* Adjust WhatsApp button position */

.whatsapp-float {
    bottom: 30px;
    right: 100px;
    z-index: 9998;
}

.chatbot-button~.whatsapp-float {
    right: 100px;
}


/* When chatbot is active, adjust WhatsApp position */

.chatbot-widget.active~.whatsapp-float {
    bottom: 530px;
    right: 100px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 80px;
    }
    .chatbot-widget.active~.whatsapp-float {
        bottom: calc(70vh + 90px);
        right: 80px;
    }
}