/* =========================================================================
   KATHRYN MARTINS | HIGH-END EDITORIAL DESIGN
   Intuitive Reader & Spiritual Guide — Sydney, Australia
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- 1. Variables & Themes --- */
:root, [data-theme="light"] {
    --clr-bg: #F9FAFB;        
    --clr-card: #FFFFFF;      
    --clr-text: #111827;      
    --clr-text-muted: #6B7280; 
    --clr-border: #E5E7EB;    
    
    --clr-primary: #111827;   
    --clr-primary-text: #FFFFFF; 
    
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.08);
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
}

[data-theme="dark"] {
    --clr-bg: #0a0a0a;        
    --clr-card: #111111;      
    --clr-text: #F3F4F6;      
    --clr-text-muted: #9CA3AF; 
    --clr-border: rgba(255, 255, 255, 0.08); 
    
    --clr-primary: #F3F4F6;   
    --clr-primary-text: #000000; 
    
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.8);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 1);
    --gold: #D4B896;
    --gold-light: #8B7355;
}

/* --- 2. Base Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

[data-theme="dark"] body {
    background-image: radial-gradient(circle at 50% 0%, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- 3. Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
}

.btn-outline:hover {
    border-color: var(--clr-text);
    background-color: var(--clr-text);
    color: var(--clr-bg);
}

/* Pill Badges */
.pill-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

/* --- 4. Logo --- */
.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: filter 0.3s ease;
}

.logo-img-footer {
    height: 52px;
    width: auto;
    object-fit: contain;
}

/* --- 5. Navigation --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background-color: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #111827;
    transition: all 0.3s ease;
}

[data-theme="dark"] .header {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #F3F4F6;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-center {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--clr-text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- 6. Lang Config --- */
.lang-selector {
    position: relative;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem;
}

.lang-active {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lang-active img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    min-width: 280px;
    max-height: 280px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-soft);
    padding: 0.5rem;
}

@media (hover: hover) {
    .lang-selector:hover .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown button {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.lang-dropdown button img {
    border-radius: 2px;
}

.lang-dropdown button:hover {
    background-color: var(--clr-bg);
}

.theme-btn {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    transition: transform 0.3s ease;
}

.theme-btn:hover {
    transform: rotate(15deg);
    color: var(--clr-text);
}

/* --- 7. Hero Section --- */
.hero {
    padding: 200px 0 160px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -1px;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.hero-title em {
    font-style: italic;
    color: var(--clr-text-muted);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- 8. About Section --- */
.about {
    padding: 2rem 0 8rem;
    background-color: var(--clr-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
}

.about-image-badge {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background-color: var(--clr-primary);
    color: var(--clr-primary-text);
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    border-radius: 12px 12px 0 0;
}

.about-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.about-title em {
    font-style: italic;
    color: var(--clr-text-muted);
}

.about-desc {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* --- 9. Services Section --- */
.services {
    padding: 8rem 0;
    background-color: var(--clr-card);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1rem;
}

.section-header em {
    font-style: italic;
    color: var(--clr-text-muted);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background-color: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: #D1D5DB;
}

[data-theme="dark"] .service-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.card-bg-number {
    position: absolute;
    top: -20px;
    right: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
}

[data-theme="dark"] .card-bg-number { color: rgba(255, 255, 255, 0.03); }

.card-icon {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-price {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.service-price span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--clr-text-muted);
}

.service-card p {
    position: relative;
    z-index: 1;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-btn {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: auto;
    font-size: 0.8rem;
    padding: 0.75rem 1.25rem;
    gap: 0.5rem;
    border-radius: 9999px;
    justify-content: center;
}

/* --- 10. Testimonials Section --- */
.testimonials {
    padding: 8rem 0;
    background-color: var(--clr-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    letter-spacing: 0.5px;
}

/* --- 11. Floating Socials --- */
.floating-socials {
    position: fixed;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 95;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.floating-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-socials a:hover {
    transform: scale(1.12);
    background: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.floating-socials a[aria-label="WhatsApp"]:hover {
    background: #25D366;
    border-color: #25D366;
}

.floating-socials a[aria-label="Instagram"]:hover {
    background: #E4405F;
    border-color: #E4405F;
}

.floating-socials a[aria-label="Facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.floating-socials a[aria-label="Email"]:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* --- Header Menu Dropdown --- */
.header-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.header-menu-btn:hover {
    background: var(--clr-text);
    color: var(--clr-bg);
    border-color: var(--clr-text);
}

.header-menu-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.header-menu-btn.open i {
    transform: rotate(90deg);
}

.header-menu-dropdown {
    position: fixed;
    top: 80px;
    right: 2rem;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 200px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.header-menu-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    color: var(--clr-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
}

.header-menu-dropdown a:hover {
    background: var(--clr-bg);
    color: var(--clr-text);
}

/* --- 12. Footer --- */
.footer {
    padding: 6rem 0 2rem;
    background-color: #000000;
    color: #F3F4F6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: start;
}

.footer-bio {
    color: #9CA3AF;
    max-width: 400px;
    margin-top: 1.5rem;
    line-height: 1.7;
}

.footer-contact-icons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.contact-icon i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    color: #F3F4F6;
}

.contact-icon:hover i {
    background: var(--gold);
    color: #000;
}

.contact-icon span {
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #9CA3AF;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #9CA3AF;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #F3F4F6;
}

/* Footer social bar */
.footer-social-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.footer-social-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.footer-social-bar a i {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.footer-social-bar a:hover {
    color: #ffffff;
}

.footer-social-bar a:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-social-bar {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    .footer-social-bar a {
        font-size: 0.7rem;
    }
    .footer-social-bar a i {
        font-size: 1.1rem;
    }
}

/* --- 13. Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* --- 14. AI Chatbot Widget --- */
.chatbot-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--clr-card);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

.chatbot-window.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.chatbot-header {
    background: var(--clr-primary);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--clr-bg);
}

.chat-message {
    max-width: 85%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: var(--clr-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot-input {
    padding: 1rem;
    background: var(--clr-card);
    border-top: 1px solid var(--clr-border);
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    background: var(--clr-bg);
    color: var(--clr-text);
    outline: none;
}

.chatbot-input button {
    background: var(--clr-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

/* --- 15. Responsive --- */
@media (max-width: 1024px) {
    .hero { padding: 160px 0 100px; }
    .hero-title { font-size: 3.5rem; }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-center { display: none; }
    .hamburger { display: flex; }
    .mobile-bottom-bar { display: block; }
    body { padding-bottom: 64px; }

    /* Mobile header: solid black in light mode */
    [data-theme="light"] .header {
        background-color: #000000;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }
    [data-theme="light"] .header .logo-img {
        filter: brightness(0) invert(1);
    }
    [data-theme="light"] .hamburger span {
        background: #ffffff;
    }
    [data-theme="light"] .theme-btn {
        color: #ffffff;
    }

    /* Mobile floating socials — upper right to avoid bottom cluster */
    .floating-socials {
        right: 0.5rem;
        top: 35%;
        bottom: auto;
        transform: translateY(-50%);
        gap: 0.5rem;
        z-index: 90;
    }
    .floating-socials a {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    /* Mobile header menu */
    .header-menu-dropdown {
        right: 1rem;
        top: 76px;
        min-width: 180px;
    }
    [data-theme="light"] .header-menu-btn {
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.2);
    }
    [data-theme="light"] .header-menu-btn:hover {
        background: #ffffff;
        color: #000000;
        border-color: #ffffff;
    }

    .hero { padding: 110px 0 70px; min-height: auto; }
    .services { padding: 5rem 0; }
    .about { padding: 1rem 0 5rem; }
    .testimonials { padding: 5rem 0; }
    .section-header { margin-bottom: 3rem; }
    .about-container { gap: 2.5rem; }

    .about-image-badge {
        left: 1rem;
        bottom: 1rem;
        transform: none;
        transform-origin: unset;
        border-radius: 9999px;
        font-size: 0.72rem;
        padding: 0.45rem 1rem;
        letter-spacing: 0.5px;
    }

    .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-nav { gap: 1.5rem; }

    .chatbot-widget {
        bottom: 5rem;
        right: 1.5rem;
    }
    .chatbot-window {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        z-index: 2000;
        border: none;
    }
}

@media (max-width: 480px) {
    .hero { padding: 95px 0 55px; }
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); word-break: break-word; }
    .hero-description { font-size: 1rem; }
    .about-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .chatbot-widget { bottom: 5rem; right: 1rem; }
    .chatbot-toggle { width: 52px; height: 52px; font-size: 1.3rem; }
    .logo-img { height: 36px; }
}

/* ─── HAMBURGER BUTTON ─── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 200;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: #000000;
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 2rem;
}
.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}
.mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 700;
    color: #F3F4F6;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s;
}
.mobile-nav.open a { opacity: 1; transform: translateY(0); }
.mobile-nav.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.20s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.28s; }
.mobile-nav a:hover { color: #9CA3AF; }

/* ─── MOBILE BOTTOM BAR ─── */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-bottom-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.mob-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    flex: 1;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}
.mob-bar-item i { font-size: 1.1rem; line-height: 1; }
.mob-bar-item span {
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}
.mob-bar-item:active,
.mob-bar-item:hover { color: #ffffff; }
[data-theme="light"] .mob-bar-item { color: rgba(255, 255, 255, 0.5); }
[data-theme="light"] .mob-bar-item:active,
[data-theme="light"] .mob-bar-item:hover { color: #ffffff; }
