/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: helvetica-w01-roman, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000569;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Image logo */
.nav-logo a {
    display: flex;
    align-items: center;
}
.nav-logo .logo {
    height: 44px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-family: helvetica-w01-roman, sans-serif;
    font-size: 14px;
}

.nav-link:hover {
    color: #64b5f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #64b5f6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    display: none; /* hidden by default */
    z-index: 1001;
}

.dropdown.open > .dropdown-menu {
    display: block;
}

.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: #1f2937;
    text-decoration: none;
    white-space: nowrap;
}
.dropdown-menu a:hover {
    background: #f3f4f6;
    color: #111827;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh; /* reduced to keep next section visible */
    display: flex;
    align-items: center;
    color: white;
    padding-top: 120px; /* keeps content below navbar */
    overflow: hidden;
    z-index: 0; /* establish stacking context below following sections */
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0; /* keep overlay behind content and not above next sections */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: -1; /* behind overlay and content */
}

.hero-container {
    position: relative;
    z-index: 1; /* above overlay */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #EBB67A;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    user-select: none;
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: #ffffff;
    color: #2563eb;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #2563eb;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.financial-icon svg {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Ensure sections don't hide under fixed navbar when using anchors */
section[id] {
    scroll-margin-top: 100px;
}

/* Ensure sections sit above hero background/overlay */
.about,
.services,
.why-choose,
.contact,
.footer {
    position: relative;
    z-index: 1;
}

/* Responsive hero height adjustments */
@media (max-width: 1024px) {
    .hero { height: 60vh; }
}

@media (max-width: 640px) {
    .hero { height: 55vh; padding-top: 100px; }
    .hero-container { grid-template-columns: 1fr; gap: 2rem; }
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 0;
    position: relative;
    background-color: #f5f5f5; /* Default background */
    overflow: hidden;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    padding: 0;
    justify-content: center;
    position: relative;
}

.about-left h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000569;
    margin-top: 1rem;
    line-height: 1.2;
}

.section-line {
    width: 80px;
    height: 3px;
    margin-top: 1rem;
    background: #EBB67A;
    border-radius: 2px;
}

/* Use a single pseudo-element for the right side */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0; /* Position from right */
    width: 57%; /* Right two-thirds */
    height: 100%;
    background-color: #fdf6e9; /* Right side color */
    z-index: 0;
}

.about-left {
    position: relative;
    z-index: 1;
    padding: 2rem;
    /* Removed orange background as requested */
}

.about-right {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 2rem;
    background: transparent; /* Make transparent to show the pseudo-element background */
    padding: 2rem;
    border-radius: 0;
    position: relative;
    z-index: 1;
}


.about-right .about-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.about-right .about-heading h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000569;
    text-align: right;
    margin-bottom: 0;
    white-space: nowrap;
    min-width: 120px;
}

.about-right .about-content p {
    color: #333;
    line-height: 1.8;
    text-align: left;
    margin: 0;
    flex: 1;
}

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

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.about-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Responsive: About layout */
@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-left h2 {
        font-size: 2rem;
    }
    .about-right .about-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    .about-right .about-heading h3 {
        text-align: left;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

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

.service-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose {
    padding: 6rem 0;
    background-color: #f5f5f5;
    color: #333;
}

.why-choose .section-header h2,
.why-choose .section-header p {
    color: #333;
}

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

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 5, 105, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    stroke: #000569;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000569;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
}

/* Our Partners Section */
.our-partners-section {
    padding: 3rem 0;
    background-color: #000569;
    color: white;
    text-align: center;
}

.grayscale-img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.white-img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.our-partners-section .section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: white;
    text-transform: uppercase;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 0 auto;
    max-width: 1200px;
}

.partner-item {
    flex: 1;
    max-width: 250px;
}

.partner-logo-placeholder {
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo-placeholder:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.partner-logo {
    height: 100px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.partner-logo img {
    max-height: 70%;
    max-width: 80%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.placeholder-text {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
}

@media (max-width: 768px) {
    .partners-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .partner-item {
        width: 100%;
        max-width: 100%;
    }
}

/* Partners Logo Section */
.partners-section {
    padding: 4rem 0 2rem;
    background: #ffffff;
    text-align: center;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden;
}

.partners-section .section-header h2 {
    font-size: 1.75rem;
    color: #000569;
    margin-bottom: 2rem;
    font-weight: 600;
}

.logo-container {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin-top: 1rem;
}

.logo-scroll {
    display: flex;
    position: absolute;
    animation: scroll 40s linear infinite;
    width: max-content;
    left: 0;
}

.logo-set {
    display: flex;
    gap: 60px;
    padding: 0 30px;
}

.logo-item {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
}

/* Specific sizing for 1Life logo */
.logo-item img[alt="1Life"] {
    max-height: 60%;
    max-width: 60%;
}
/* Specific sizing for 1Life logo */
.logo-item img[alt="Discovery"] {
    max-height: 150%;
    max-width: 150%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

.logo-scroll:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .logo-item {
        width: 100px;
        height: 50px;
    }
    
    .logo-set {
        gap: 40px;
    }
    
    .logo-container {
        height: 70px;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info > p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.method-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.method-details a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.method-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Calculator Page Styles */
.calculator-page {
    padding-top: 120px; /* space for fixed navbar */
    padding-bottom: 60px;
    background: #f5f5f5;
}

.calculator-hero {
    background: #000569;
    color: #ffffff;
    padding: 60px 0;
    margin-top: 76px; /* avoid overlap with fixed navbar */
}
.calculator-hero .section-header h2 {
    color: #EBB67A;
}
.calculator-hero .section-header p {
    color: #e8ecff;
}

.calculator-container {
    width: 100%;
    max-width: 1100px;
    margin: -40px auto 0; /* overlap hero a bit */
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    padding: 2rem;
}

.calculator-form .input-group { margin-bottom: 20px; }
.calculator-form .input-label { color: #1F2937; font-weight: 600; }
.calculator-form .input-field {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
}
.calculator-form .input-field:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.btn-block { width: 100%; }

.results-grid { margin-top: 20px; }
.result-card {
    padding: 16px;
    background-color: #F3F4F6;
    border-radius: 8px;
}
.result-label { font-size: 0.875rem; color: #6B7280; margin-bottom: 4px; }
.result-value { font-size: 1.125rem; font-weight: 700; color: #1F2937; }

.info-section { padding: 60px 0; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.info-card h3 { color: #000569; font-size: 1.1rem; margin-bottom: 0.5rem; }
.info-card p { color: #4b5563; font-size: 0.95rem; }

.notice-section {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 12px;
}
.notice-title { font-weight: 700; color: #000569; margin-bottom: 0.5rem; display: inline-flex; gap: 8px; align-items: center; }
.notice-text { color: #4b5563; }

.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.cta-row .btn { min-width: 160px; padding: 10px 16px; font-size: 0.95rem; }
.whatsapp-icon { width: 18px; height: 18px; }

/* Ensure strong contrast for calculator primary action on white card */
.calculator-container .btn.btn-primary {
    background: #2563EB;
    color: #ffffff;
    border-color: #2563EB;
}
.calculator-container .btn.btn-primary:hover,
.calculator-container .btn.btn-primary:active {
    background: #1D4ED8;
    border-color: #1D4ED8;
    color: #ffffff;
}

/* Better contrast for secondary CTA on light background */
.cta-row .btn.btn-secondary {
    background: transparent;
    color: #2563EB;
    border-color: #2563EB;
}
.cta-row .btn.btn-secondary:hover,
.cta-row .btn.btn-secondary:active {
    background: #2563EB;
    color: #ffffff;
}

@media (max-width: 640px) {
    .calculator-container { margin: -30px 16px 0; padding: 1.25rem; }
}

/* Footer */
.footer {
    background: #000569;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

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

/* Footer logo */
.footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.75rem;
}
.footer-logo {
    height: 48px;
    width: auto;
    display: block;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2563eb;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.fsp-notice {
    font-size: 0.9rem;
    font-style: italic;
    color: #94a3b8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.privacy-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(17, 24, 39, 0.98);
        width: 100%;
        border-radius: 0 0 12px 12px;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    .nav-logo .logo { height: 36px; }
    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid,
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .about-card,
    .service-card,
    .feature-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .about-card,
    .service-card,
    .feature-card,
    .contact-method {
        animation: fadeInUp 0.6s ease-out;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading animation for better UX */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Let's Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-btn {
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chat-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.chat-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6), 0 0 0 10px rgba(255, 107, 53, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }
}

@media (max-width: 768px) {
    .chat-button {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
