/* ========================================= */
/* VARIABLES & BASE STYLES                   */
/* ========================================= */

:root {
    /* Client Brand Palette */
    --dark-purple: #4f1964;
    --light-purple: #975ab6;
    --pink-wash: #e6affc;
    --white: #ffffff;
    
    /* Supporting Tones */
    --text-main: #2a1b38; 
    --text-muted: #5a4b68;
    --pink-ultra-light: #fbf5fd; 
    --border-color: rgba(151, 90, 182, 0.2);
    
    /* Layout */
    --container-width: 1100px;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent; 
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

:focus-visible {
    outline: 2px solid var(--light-purple);
    outline-offset: 3px;
}

/* Scroll Animation Classes */
.reveal, .reveal-on-load {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal.active, .reveal-on-load.active {
    opacity: 1;
    transform: translateY(0);
}

/* Typography Details */
h1, h2, h3, h4, .hero-quote {
    font-family: 'Playfair Display', serif;
    color: var(--dark-purple);
    font-weight: 600;
    text-wrap: balance;
}

p { 
    margin-bottom: 1rem; 
    text-wrap: pretty;
}

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Margins */
section { padding: 100px 0; }
.bg-pink { background-color: var(--pink-ultra-light); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; }
.mb-12 { margin-bottom: 3rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-8 { margin-top: 2rem; }
.mt-4 { margin-top: 1rem; }

.section-subtitle {
    display: block;
    font-family: 'Inter', sans-serif;
    color: var(--light-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ========================================= */
/* BUTTONS & LINKS                           */
/* ========================================= */

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--dark-purple);
    color: var(--white);
    border-color: var(--dark-purple);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--dark-purple);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-purple);
    border-color: var(--dark-purple);
}

.btn-secondary:hover {
    background-color: var(--dark-purple);
    color: var(--white);
}

.w-full { width: 100%; }

/* ========================================= */
/* NAVIGATION                                */
/* ========================================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(79, 25, 100, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img { height: 85px; width: auto; transition: var(--transition); }
.navbar.scrolled .logo-img { height: 60px; }

.nav-controls {
    display: none;
    align-items: center;
    gap: 15px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-purple);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--light-purple); }
.nav-links .btn { color: var(--white); }
.nav-links .btn:hover { color: var(--dark-purple); }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--dark-purple);
    transition: var(--transition);
}

/* ========================================= */
/* ABOUT SECTION                             */
/* ========================================= */

.about-section {
    padding-top: 180px; 
}

.about-card {
    display: flex;
    align-items: center;
    gap: 80px;
    background: var(--white);
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-image-wrapper::after {
    display: none;
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    box-shadow: 0 20px 40px rgba(79, 25, 100, 0.08);
}

.about-text { flex: 1; }
.about-text h2 { font-size: 3rem; margin-bottom: 30px; }
.about-text p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 20px; }

.about-italic-intro {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #000000 !important;
    font-weight: 500;
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

/* ========================================= */
/* THE JOURNEY (TIMELINE) SECTION            */
/* ========================================= */

.process-section h2 { font-size: 2.5rem; }

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.timeline-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: left;
    background: transparent;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 1px solid var(--light-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-purple);
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(79, 25, 100, 0.05);
}

.timeline-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ========================================= */
/* GALLERY SECTION                           */
/* ========================================= */

.gallery-section {
    background-color: var(--white);
    padding-top: 60px;
}

.gallery-section h2 {
    font-size: 2.8rem;
}

.gallery-carousel {
    position: relative;
    /* Narrowed for portrait mode */
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(79, 25, 100, 0.08);
    /* Standard portrait aspect ratio */
    aspect-ratio: 4 / 5;
    border: 1px solid var(--border-color);
}

.gallery-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
}

.gallery-arrow:hover {
    background: var(--light-purple);
    color: var(--white);
    border-color: var(--light-purple);
}

.prev-arrow { left: 15px; }
.next-arrow { right: 15px; }

/* Navigation Dots */
.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

.gallery-dot.active {
    background: var(--white);
    transform: scale(1.3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .gallery-carousel {
        /* Slightly squarer portrait on mobile */
        aspect-ratio: 3 / 4;
        border-radius: 8px;
    }
    .gallery-arrow {
        width: 38px;
        height: 38px;
    }
}

/* ========================================= */
/* OFFERINGS & CHOOSING SECTION              */
/* ========================================= */

.choosing-celebrant { 
    scroll-margin-top: 120px;
}
.choosing-celebrant h2 { font-size: 2.5rem; margin-bottom: 20px; }
.choosing-celebrant p { font-size: 1.1rem; color: var(--text-muted); }

.coffee-cta {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: inline-block;
}

/* ========================================= */
/* SERVICES & PACKAGES                       */
/* ========================================= */

.services-section h2 { font-size: 3rem; }

.service-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(79, 25, 100, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--light-purple);
    box-shadow: 0 20px 50px rgba(79, 25, 100, 0.08);
}

.service-header {
    background: var(--dark-purple);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.service-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.service-type {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--pink-wash);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-body {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-desc {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-align: center;
}

.service-body h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--dark-purple);
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.service-list i, .service-list svg {
    width: 18px;
    height: 18px;
    color: var(--light-purple);
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}

.note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
    border-top: 1px solid var(--pink-ultra-light);
    padding-top: 20px;
}

.service-btn-wrapper {
    margin-top: auto; 
    padding-top: 25px;
}

/* ========================================= */
/* GOOGLE REVIEWS SECTION (NATIVE CAROUSEL)  */
/* ========================================= */

.testimonials-section h2 { font-size: 2.8rem; }

.testimonial-carousel-wrapper {
    position: relative;
    max-width: 100%;
    padding: 0 70px; 
    display: flex;
    align-items: center;
}

.testimonial-track {
    display: flex;
    align-items: flex-start; 
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
    padding: 15px 5px; 
    width: 100%;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start; 
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(79, 25, 100, 0.04);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(79, 25, 100, 0.08);
    transform: translateY(-5px);
}

.google-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.stars {
    color: #FBBC05; 
    display: flex;
    gap: 4px;
}

.stars i, .stars svg { 
    width: 18px; 
    height: 18px; 
    fill: #FBBC05; 
    color: #FBBC05; 
}

.testimonial-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.reviewer-info {
    border-top: 1px solid var(--pink-ultra-light);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.reviewer-info h4 {
    font-size: 1.05rem;
    color: var(--dark-purple);
    font-family: 'Inter', sans-serif; 
    font-weight: 600;
    margin-bottom: 2px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(79, 25, 100, 0.1);
}

.carousel-btn i, .carousel-btn svg {
    width: 28px;
    height: 28px;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--light-purple);
    color: var(--white);
    border-color: var(--light-purple);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: none;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.reviews-btn-wrapper {
    margin-top: 40px;
}

/* ========================================= */
/* REAL WEDDINGS (SOCIALS) SECTION           */
/* ========================================= */

.socials-section {
    background-color: var(--white);
}

.socials-section h2 { font-size: 2.8rem; }

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@keyframes socialPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.icon-pulse {
    animation: socialPulse 2s infinite;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.2);
}

.btn-facebook {
    background: #1877F2;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
}

.btn-facebook:hover {
    background: #166fe5;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.2);
}

/* ========================================= */
/* FAQ SECTION                               */
/* ========================================= */

.faq-section h2 { font-size: 2.8rem; }

.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 24px 30px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-purple);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover { color: var(--light-purple); }

.faq-icon, .faq-item svg.faq-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--light-purple);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-question.active .faq-icon, .faq-question.active svg.faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--white);
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ========================================= */
/* CONTACT SECTION                           */
/* ========================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-text h2 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.contact-text p { font-size: 1.1rem; color: var(--text-muted); }

.contact-detail-item { display: flex; align-items: center; margin-bottom: 20px; }
.contact-detail-item i, .contact-detail-item svg { color: var(--light-purple); margin-right: 15px; width: 24px; height: 24px; flex-shrink: 0; }
.contact-detail-item p { margin-bottom: 0; font-weight: 500; font-size: 1.1rem; color: var(--dark-purple); }

/* FORM STYLING */
#contact-form-start {
    scroll-margin-top: 120px;
}

.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(79, 25, 100, 0.05);
    border: 1px solid var(--border-color);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { 
    margin-bottom: 24px; 
    min-width: 0; 
    max-width: 100%;
}

label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-purple);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.field-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-style: italic;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
    background-color: #fafafa;
    
    appearance: none;
    -webkit-appearance: none;
}

input[type="date"] {
    min-height: 50px;
    display: block;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--light-purple);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(151, 90, 182, 0.1);
}

.custom-radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.custom-radio { 
    display: flex; 
    align-items: center; 
    cursor: pointer; 
    font-weight: 400; 
    font-size: 0.95rem; 
    color: var(--text-main); 
    text-transform: none; 
    padding: 4px 0; 
}
.custom-radio input { position: absolute; opacity: 0; cursor: pointer; }
.radio-mark { height: 20px; width: 20px; background-color: #fff; border: 1px solid #ddd; border-radius: 50%; display: inline-block; position: relative; margin-right: 10px; transition: var(--transition); flex-shrink: 0; }
.custom-radio:hover input ~ .radio-mark { border-color: var(--light-purple); }
.custom-radio input:checked ~ .radio-mark { border-color: var(--dark-purple); background-color: var(--white); }
.radio-mark:after { content: ""; position: absolute; display: none; top: 4px; left: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--dark-purple); }
.custom-radio input:checked ~ .radio-mark:after { display: block; }

.custom-checkbox { 
    display: flex; 
    align-items: flex-start; 
    cursor: pointer; 
    font-weight: 400; 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    line-height: 1.4; 
    text-transform: none; 
    padding: 4px 0; 
}
.custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; }
.checkmark { height: 20px; width: 20px; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; display: inline-block; position: relative; margin-right: 12px; flex-shrink: 0; margin-top: 2px; transition: var(--transition); }
.custom-checkbox input:checked ~ .checkmark { background-color: var(--dark-purple); border-color: var(--dark-purple); }
.checkmark:after { content: ""; position: absolute; display: none; left: 6px; top: 2px; width: 5px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.custom-checkbox input:checked ~ .checkmark:after { display: block; }

.custom-radio input:focus-visible ~ .radio-mark,
.custom-checkbox input:focus-visible ~ .checkmark {
    outline: 2px solid var(--light-purple);
    outline-offset: 3px;
}

.submit-btn { width: 100%; padding: 16px; font-size: 1.1rem; }

/* ========================================= */
/* FOOTER                                    */
/* ========================================= */

.footer {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

.footer-img {
    height: 70px;
    margin: 0 auto 15px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--pink-wash);
    font-style: italic;
    margin-bottom: 30px;
}

.footer-links { margin-bottom: 40px; }
.footer-links a { color: var(--white); text-decoration: none; margin: 0 15px; font-size: 0.95rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--pink-wash); }

.footer-social-section {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-section h4 {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--light-purple);
    border-color: var(--light-purple);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(151, 90, 182, 0.3);
}

.footer-socials i, .footer-socials svg { 
    width: 22px; 
    height: 22px; 
}

.footer-bottom {
    padding-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================= */
/* RETURN TO TOP BUTTON                      */
/* ========================================= */

.return-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(151, 90, 182, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(79, 25, 100, 0.15);
}

.return-to-top.show {
    opacity: 1;
    visibility: visible;
}

.return-to-top:hover {
    background: var(--dark-purple);
    transform: translateY(-3px);
}

.return-to-top svg {
    width: 24px;
    stroke: var(--white);
}

/* ========================================= */
/* RESPONSIVE DESIGN                         */
/* ========================================= */

@media (max-width: 1024px) {
    .about-card, .contact-wrapper { gap: 40px; }
    .testimonial-card { flex: 0 0 calc(50% - 15px); }
}

@media (max-width: 768px) {
    section { padding: 70px 0; }
    .nav-controls { display: flex; }
    .hamburger { display: block; }
    
    .mobile-contact-btn {
        color: var(--dark-purple);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    .mobile-contact-btn i, .mobile-contact-btn svg { width: 24px; height: 24px; }
    
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px 0;
        gap: 25px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

    .logo-img { height: 75px; }
    .navbar.scrolled .logo-img { height: 55px; }
    .about-section { padding-top: 120px; }
    
    .about-card { flex-direction: column; text-align: center; }
    .about-img { height: 400px; border-radius: 150px 150px 0 0; }
    
    .timeline-grid { grid-template-columns: 1fr; margin-top: 40px; }
    .timeline-grid::before { left: 30px; top: 0; width: 1px; height: 100%; }
    .timeline-step { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 30px; padding-left: 80px; }
    .step-number { position: absolute; left: 0; top: 0; margin-bottom: 0; }
    
    .service-cards-container { grid-template-columns: 1fr; }
    
    .testimonial-carousel-wrapper { padding: 0 50px; }
    .testimonial-card { flex: 0 0 100%; } 
    .carousel-btn { width: 40px; height: 40px; }
    .carousel-btn i, .carousel-btn svg { width: 24px; height: 24px; }
    
    .social-buttons { flex-direction: column; align-items: center; }
    .social-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

    .contact-wrapper { grid-template-columns: 1fr; text-align: center; }
    .contact-detail-item { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .custom-radio-group { grid-template-columns: 1fr; }
    .form-container { padding: 30px 20px; }
}