/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FFFFFF;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.navbar-menu a {
    color: #1F1F1F;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-menu a:hover {
    color: #6A0DAD;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6A0DAD;
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

/* Carousel Container */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 4.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

/* Dark overlay for readability */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInContent 1s ease-in 0.3s both;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-paragraph {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #6A0DAD;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.4);
}

.cta-button:hover {
    background-color: #5A0CA0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 13, 173, 0.6);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ============================================
   SERVICES SECTION STYLES
   ============================================ */

.services {
    padding: 5rem 0;
    background-color: #E6EEF4;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.services-subtext {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Service Card */
.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    animation: fadeInCard 0.6s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card.scroll-visible {
    opacity: 1;
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6A0DAD 0%, #C9A84E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: #333;
    stroke-width: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(106, 13, 173, 0.3);
}

/* Service Title */
.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

/* Service Description */
.service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        gap: 1.5rem;
    }

    .navbar-logo {
        font-size: 1.2rem;
    }

    .hero {
        height: 80vh;
        margin-top: 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-paragraph {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-subtext {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .navbar-logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero {
        height: 70vh;
        margin-top: 45px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-paragraph {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .services {
        padding: 3rem 0;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .services-subtext {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        gap: 1.5rem;
    }

    .navbar-logo {
        font-size: 1.2rem;
    }

    .hero {
        height: 80vh;
        margin-top: 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-paragraph {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .navbar-logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero {
        height: 70vh;
        margin-top: 45px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-paragraph {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */

.testimonials {
    padding: 5rem 0;
    background-color: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.testimonials-subtext {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Testimonial Card */
.testimonial-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #6A0DAD;
    opacity: 0;
    animation: fadeInTestimonial 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInTestimonial {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    background-color: #fff;
}

.testimonial-card.scroll-visible {
    opacity: 1;
}

/* Quote Mark */
.testimonial-quote-mark {
    font-size: 3rem;
    color: #6A0DAD;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
    opacity: 0.8;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Testimonial Author */
.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-header {
        margin-bottom: 2.5rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtext {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .testimonials-subtext {
        font-size: 0.9rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote-mark {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }
}

/* ============================================
   COMMUNITY CTA SECTION STYLES
   ============================================ */

.community-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6A0DAD 0%, #3B0A7A 100%);
    text-align: center;
}

.community-cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInCTA 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInCTA {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.community-cta.scroll-visible {
    opacity: 1;
}

.community-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.community-cta-text {
    font-size: 1.15rem;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.community-cta-button {
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-cta-button:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #6A0DAD;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.community-cta-button:active {
    transform: translateY(-1px);
}

/* ============================================
   COMMUNITY CTA RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .community-cta {
        padding: 3rem 0;
    }

    .community-cta-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .community-cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .community-cta-button {
        padding: 12px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .community-cta {
        padding: 2rem 0;
    }

    .community-cta-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .community-cta-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .community-cta-button {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

/* ============================================
   FAQ SECTION STYLES
   ============================================ */

.faq {
    padding: 5rem 0;
    background-color: #E6EEF4;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeInHeader 0.6s ease-out 0.1s forwards;
}

@keyframes fadeInHeader {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #6A0DAD;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* FAQ Item */
.faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    opacity: 0;
    animation: fadeInFAQ 0.6s ease-out forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInFAQ {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-item.active .faq-question {
    background-color: #f0f0f0;
    color: #6A0DAD;
}

.faq-icon {
    font-size: 1.5rem;
    color: #6A0DAD;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: right;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.faq-answer p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   FAQ RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }

    .faq-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .faq-text {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 2rem 0;
    }

    .faq-header {
        margin-bottom: 2.5rem;
    }

    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .faq-text {
        font-size: 0.95rem;
    }

    .faq-accordion {
        gap: 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* ============================================
   CONTACT SECTION STYLES
   ============================================ */

.contact {
    padding: 5rem 0;
    background-color: #0F0F0F;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeInHeader 0.6s ease-out 0.1s forwards;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
}

.contact-subtext {
    font-size: 1.2rem;
    color: #FFFFFF;
    font-weight: 500;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Contact Block */
.contact-block {
    background: #1A1A1A;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInContact 0.6s ease-out forwards;
}

.contact-block:nth-child(1) {
    animation-delay: 0.2s;
}

.contact-block:nth-child(2) {
    animation-delay: 0.3s;
}

.contact-block:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInContact {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background-color: #252525;
}

/* Contact Icon */
.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6A0DAD 0%, #C9A84E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 38px;
    height: 38px;
    color: #333;
    stroke-width: 2;
}

.contact-block:hover .contact-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
}

/* Contact Block Title */
.contact-block-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

/* Contact Block Text */
.contact-block-text {
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-block-text a {
    color: #C9A84E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-block-text a:hover {
    color: #E0C896;
    text-decoration: underline;
}

/* ============================================
   CONTACT RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-block:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }

    .contact-header {
        margin-bottom: 2.5rem;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .contact-subtext {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-block {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 2rem 0;
    }

    .contact-header {
        margin-bottom: 2rem;
    }

    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-subtext {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-block {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }

    .contact-icon svg {
        width: 32px;
        height: 32px;
    }

    .contact-block-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .contact-block-text {
        font-size: 0.95rem;
    }
}

/* ============================================
   REQUEST FORM SECTION STYLES
   ============================================ */

.request-form-section {
    padding: 5rem 0;
    background-color: #E6EEF4;
}

.request-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.request-form-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInHeader 0.6s ease-out 0.1s forwards;
}

.request-form-label {
    font-size: 0.9rem;
    color: #6A0DAD;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.request-form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.request-form-subtext {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Form Styles */
.request-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    opacity: 0;
    animation: fadeInForm 0.6s ease-out 0.2s forwards;
}

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Group */
.form-group {
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
}

.form-group:last-of-type {
    margin-bottom: 2rem;
}

/* Form Label */
.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.6rem;
    display: block;
}

/* Form Inputs */
.form-input {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #6A0DAD;
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.1);
}

.form-input::placeholder {
    color: #999;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form Error */
.form-error {
    font-size: 0.85rem;
    color: #e74c3c;
    margin-top: 0.3rem;
    display: block;
    min-height: 1.2rem;
}

/* Submit Button */
.request-form-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #6A0DAD;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(106, 13, 173, 0.3);
}

.request-form-button:hover {
    background-color: #5A0CA0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.4);
}

.request-form-button:active {
    transform: translateY(0);
}

/* Success Message */
.form-success {
    display: none;
    padding: 1.5rem;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    color: #155724;
    text-align: center;
    margin-top: 1.5rem;
    animation: slideInSuccess 0.4s ease-out;
}

.form-success.show {
    display: block;
}

.form-success p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

@keyframes slideInSuccess {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   REQUEST FORM RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .request-form-section {
        padding: 3rem 0;
    }

    .request-form-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .request-form-subtext {
        font-size: 1rem;
    }

    .request-form {
        padding: 2rem;
    }

    .form-input {
        padding: 0.9rem;
        font-size: 1rem;
    }

    .request-form-button {
        padding: 0.9rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .request-form-section {
        padding: 2rem 0;
    }

    .request-form-label {
        font-size: 0.85rem;
    }

    .request-form-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .request-form-subtext {
        font-size: 0.95rem;
    }

    .request-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .form-input {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .request-form-button {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

/* ============================================
   FOOTER SECTION STYLES
   ============================================ */

.footer {
    background-color: #0F0F0F;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

/* Footer Column */
.footer-column {
    opacity: 0;
    animation: fadeInFooter 0.6s ease-out forwards;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes fadeInFooter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Footer Tagline */
.footer-tagline {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.6;
}

/* Footer Navigation */
.footer-nav {
    margin: 0;
    padding: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #C9A84E;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C9A84E;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background-color: #333;
    margin-bottom: 1.5rem;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-legal {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

/* FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 60px;
  height: 60px;

  background-color: #25D366;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;

  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Click */
.whatsapp-float:active {
  transform: scale(0.95);
}

/* TOOLTIP */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;

  background: #111;
  color: #fff;

  padding: 6px 10px;
  border-radius: 6px;

  font-size: 12px;
  white-space: nowrap;

  opacity: 0;
  transform: translateY(5px);

  transition: 0.3s ease;
}

/* Show tooltip on hover */
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: pulse 2.5s infinite;
}


/* FOOTER SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #f1f1f1;

  color: #6A0DAD; /* your site purple */

  text-decoration: none;

  transition: all 0.3s ease;
}

/* Hover effect */
.footer-social a:hover {
  transform: translateY(-4px);
  background: #6A0DAD; /* purple highlight */
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}


/* ============================================
   FOOTER RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-links {
        flex-direction: row;
        gap: 1.5rem;
    }

    .footer-logo {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

    .footer-legal {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .footer-logo {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-divider {
        margin-bottom: 1rem;
    }

    .footer-legal {
        font-size: 0.8rem;
    }
}