/* style.css - LG Renovations Main Stylesheet (Fixed Floating Share Menu UX) */
:root {
    --bg-white: #FFFFFF;
    --bg-light: #F2F2F2;
    --bg-dark: #111111;
    --bg-footer: #2A2A2A;
    --text-primary: #222222;
    --text-secondary: #555555;
    --text-light: #888888;
    --accent: #FFC107;
    --accent-dark: #E5A800;
    --border: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #111111;
    z-index: 1000;
    transition: var(--transition);
}

.header-scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 0;
    background: transparent;
    padding: 0;
    margin: 0;
}

.logo a {
    display: inline-block;
    line-height: 0;
    background: transparent;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    background: transparent;
    padding: 0;
    margin: 0;
    filter: none;
    box-shadow: none;
    border: none;
    outline: none;
}

.main-nav ul {
    display: flex;
    gap: 48px;
    list-style: none;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.2px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.header-cta .btn-quote {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 10px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.9rem;
}

.header-cta .btn-quote:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.5;
}

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

.btn {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Page Header */
.page-header {
    background: var(--bg-dark);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Value Section */
.value-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.value-section.highlight {
    background: var(--accent);
}

.value-section.highlight .section-tag,
.value-section.highlight .section-title,
.value-section.highlight .section-subtitle {
    color: var(--bg-dark);
}

.value-section.highlight .value-card {
    background: var(--bg-white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.value-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-image {
    height: 260px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.service-value {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 12px;
    color: var(--accent);
}

/* Insights Section */
.insights-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.insight-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.insight-image {
    height: 220px;
    overflow: hidden;
}

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

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

.insight-content {
    padding: 32px;
}

.insight-content h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.insight-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.insight-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.insight-link:hover {
    gap: 12px;
    color: var(--accent-dark);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.about-image {
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission-card,
.vision-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.mission-card i,
.vision-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.mission-card p,
.vision-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.process-image {
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-md);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.7;
    font-family: monospace;
    line-height: 1;
    min-width: 50px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.trust-section.highlight {
    background: var(--accent);
}

.trust-section.highlight .trust-item p,
.trust-section.highlight .trust-number {
    color: var(--bg-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    text-align: center;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.trust-section.highlight .trust-item i {
    color: var(--bg-dark);
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.trust-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.contact-image {
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-md);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.contact-form select option {
    background: var(--bg-white);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    background: var(--accent);
    color: var(--bg-dark);
    cursor: pointer;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.detail-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.detail-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.detail-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.detail-card p,
.detail-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.5;
}

.detail-card a:hover {
    color: var(--accent);
}

/* Floating Elements - VERTICAL POSITIONING on RIGHT COLUMN */
/* Scroll to Top Button - Bottom: 260px */
.scroll-top-btn {
    position: fixed;
    bottom: 260px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 995;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: scale(1.1);
    background: var(--accent-dark);
}

/* Floating Share Menu - Share Button stays on RIGHT COLUMN at bottom: 180px */
.floating-share-menu {
    position: fixed;
    bottom: 180px;
    right: 20px;
    z-index: 996;
}

/* Share Toggle Button remains on right column */
.share-toggle-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.share-toggle-btn:hover {
    transform: scale(1.1);
    background: var(--accent-dark);
}

/* Share Options - Expand to the LEFT with diagonal/staggered layout */
.share-options {
    position: absolute;
    bottom: 0;
    right: 65px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.share-options.active {
    opacity: 1;
    visibility: visible;
}

/* Each share option has different horizontal offset (staggered to the left) */
.share-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    margin-right: 0;
    transform: translateX(0);
    transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.share-options.active .share-option {
    animation: slideInFromLeft 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
    opacity: 0;
    transform: translateX(30px);
}

/* Staggered delays for diagonal effect - each button slides from different left offset */
.share-options.active .share-option:nth-child(1) { animation-delay: 0s; animation-name: slideInOption1; }
.share-options.active .share-option:nth-child(2) { animation-delay: 0.05s; animation-name: slideInOption2; }
.share-options.active .share-option:nth-child(3) { animation-delay: 0.1s; animation-name: slideInOption3; }
.share-options.active .share-option:nth-child(4) { animation-delay: 0.15s; animation-name: slideInOption4; }
.share-options.active .share-option:nth-child(5) { animation-delay: 0.2s; animation-name: slideInOption5; }

/* Different horizontal offsets for each button (diagonal spread to the left) */
@keyframes slideInOption1 {
    0% {
        opacity: 0;
        transform: translateX(80px) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInOption2 {
    0% {
        opacity: 0;
        transform: translateX(90px) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInOption3 {
    0% {
        opacity: 0;
        transform: translateX(100px) translateY(0px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInOption4 {
    0% {
        opacity: 0;
        transform: translateX(90px) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInOption5 {
    0% {
        opacity: 0;
        transform: translateX(80px) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

/* Hover effects for share options */
.share-option:hover {
    transform: scale(1.15) translateX(-5px);
}

.share-option.facebook:hover {
    background: #1877F2;
    color: white;
}

.share-option.twitter:hover {
    background: #000000;
    color: white;
}

.share-option.linkedin:hover {
    background: #0077B5;
    color: white;
}

.share-option.whatsapp:hover {
    background: #25D366;
    color: white;
}

.share-option.copy:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* WhatsApp Button - Bottom: 100px on RIGHT COLUMN */
.whatsapp-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    z-index: 997;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #128C7E;
    color: white;
}

/* Chatbot Open Button - Bottom: 20px on RIGHT COLUMN */
.chatbot-open-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 998;
}

.chatbot-open-btn:hover {
    transform: scale(1.1);
    background: var(--accent-dark);
}

/* Slide-in animation for main buttons on page load */
.scroll-top-btn,
.whatsapp-btn,
.floating-share-menu,
.chatbot-open-btn {
    animation: slideInRight 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateX(100px);
}

.scroll-top-btn { animation-delay: 0.3s; }
.whatsapp-btn { animation-delay: 0.1s; }
.floating-share-menu { animation-delay: 0.2s; }
.chatbot-open-btn { animation-delay: 0s; }

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Chatbot Container - Opens above the button */
.chatbot-container {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-container.open {
    display: flex;
    animation: slideInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.chatbot-header {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.chatbot-header i {
    font-size: 1.2rem;
}

.chatbot-header span {
    flex: 1;
}

.chatbot-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--bg-dark);
}

.chatbot-messages {
    height: 300px;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--bg-light);
}

.chatbot-message {
    padding: 10px 14px;
    border-radius: 8px;
    max-width: 80%;
    word-wrap: break-word;
}

.chatbot-message.bot {
    background: white;
    color: var(--text-primary);
    align-self: flex-start;
    border: 1px solid var(--border);
}

.chatbot-message.user {
    background: var(--accent);
    color: var(--bg-dark);
    align-self: flex-end;
}

.chatbot-input-container {
    display: flex;
    padding: 16px;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.chatbot-input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
}

.chatbot-send {
    background: var(--accent);
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-send:hover {
    background: var(--accent-dark);
}

/* Calendar Modal Styles */
.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.calendar-modal-content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 12px;
    padding: 32px;
    position: relative;
}

.calendar-modal-content h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.calendar-modal-content input,
.calendar-modal-content select,
.calendar-modal-content textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
}

.calendar-modal-content button {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.close-calendar {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

/* Footer Styles */
.site-footer {
    background: #2A2A2A;
    padding: 64px 0 32px;
    border-top: none;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: #FFFFFF;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

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

.social-links a {
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 48px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .process-wrapper,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .process-image,
    .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--bg-dark);
        padding: 32px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .value-grid,
    .services-grid,
    .insights-grid {
        gap: 24px;
    }
    
    .trust-grid {
        gap: 32px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .insights-section {
        padding: 60px 0;
    }
    
    .insight-content h3 {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .footer-container {
        padding: 0 20px;
        gap: 32px;
    }
    
    /* Mobile adjustments for floating buttons */
    .scroll-top-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 220px;
        right: 15px;
    }
    
    .floating-share-menu {
        bottom: 150px;
        right: 15px;
    }
    
    .share-toggle-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .share-options {
        right: 58px;
        gap: 10px;
    }
    
    .share-option {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .whatsapp-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 85px;
        right: 15px;
    }
    
    .chatbot-open-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
    
    .chatbot-container {
        width: calc(100vw - 40px);
        right: 15px;
        bottom: 75px;
    }
}