/* Apex Multiservices - Stylesheet */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Color Variables & Themes */
:root {
    /* Color Palette - Premium Soft Peach & Apricot */
    --primary-hue: 18; /* Burnt Peach / Apricot */
    --primary: hsl(var(--primary-hue), 83%, 62%); /* Soft rich peach #f08a5d */
    --primary-hover: hsl(var(--primary-hue), 80%, 53%); /* Warm apricot #ea6d3c */
    --primary-light: rgba(240, 138, 93, 0.12);
    
    --secondary-hue: 28; /* Soft Pastel Orange */
    --secondary: hsl(var(--secondary-hue), 90%, 75%); /* Pastel orange #f9c89e */
    --secondary-hover: hsl(var(--secondary-hue), 85%, 68%);
    
    --accent-hue: 12; /* Warm Coral */
    --accent: hsl(var(--accent-hue), 85%, 55%);
    
    /* Layout Dimensions */
    --navbar-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* DEFAULT Theme: Warm Cream, Peach & White (Rich Pastel Look) */
    --bg-main: #fffdfa; /* Warm ivory cream background */
    --bg-surface: #ffffff;
    --bg-surface-elevated: #fff6ec; /* Very soft peach-white */
    --text-primary: #2d3748; /* Soft slate charcoal */
    --text-secondary: #5a6b7c; /* Slate grey */
    --text-muted: #a0aec0;
    --border-color: rgba(240, 138, 93, 0.15); /* Soft peach borders */
    --border-color-hover: rgba(240, 138, 93, 0.35);
    --shadow-main: 0 10px 30px -10px rgba(240, 138, 93, 0.04);
    --shadow-hover: 0 20px 40px -15px rgba(240, 138, 93, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(240, 138, 93, 0.08);
    --card-gradient: linear-gradient(135deg, #ffffff 0%, #fff6ec 100%);
}

/* Global 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(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color-hover);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(14, 165, 233, 0.6);
}

.btn-secondary {
    background: var(--bg-surface-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Background Gradients & Glows */
.background-glows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: 20%;
    left: -200px;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(255, 253, 250, 0.88); /* Soft Warm Cream */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

.header .logo {
    color: var(--text-primary);
}

.header .nav-link {
    color: var(--text-secondary);
}

.header .nav-link:hover {
    color: var(--primary);
}

.header .theme-toggle-btn {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.header .theme-toggle-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.header .mobile-menu-btn {
    color: var(--text-primary);
}

.header-scrolled {
    height: 70px;
    background: #fffcf9;
    box-shadow: var(--shadow-main);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
}

.logo-icon {
    width: 60px;
    height: 60px;
   
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: var(--transition-smooth);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Theme Toggle */
.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
}

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

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: calc(var(--navbar-height) + 4rem);
    padding-bottom: 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(240, 138, 93, 0.16) 0%, rgba(240, 138, 93, 0) 32%),
        radial-gradient(circle at right center, rgba(249, 200, 158, 0.28) 0%, rgba(249, 200, 158, 0) 36%),
        linear-gradient(180deg, #fffefe 0%, #fff7ef 100%);
    color: var(--text-primary);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #1f2937;
}

.hero-content p {
    font-size: 1.25rem;
    color: #526172;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(240, 138, 93, 0.18);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    box-shadow: 0 14px 30px -16px rgba(148, 163, 184, 0.35);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

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

/* Hero Quick Consultation Card */
.hero-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(240, 138, 93, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: 0 24px 50px -24px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    color: var(--text-primary);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 246, 236, 0.2) 100%);
    pointer-events: none;
    z-index: -1;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.hero-card p {
    color: #607080;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.hero-card .form-group {
    margin-bottom: 1.25rem;
}

.hero-card .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: #374151;
}

.hero-card .form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: var(--border-radius-sm);
    color: #1f2937;
    transition: var(--transition-smooth);
}

.hero-card .form-control::placeholder {
    color: #94a3b8;
}

.hero-card .form-control:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 138, 93, 0.16);
}

.hero-card select.form-control option {
    color: #1f2937;
    background: #ffffff;
}

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

.service-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: var(--transition-smooth);
}

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

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    max-height: 8.4em;
    min-height: 8.4em;
    overflow: hidden;
    transition: max-height 0.4s ease, min-height 0.4s ease;
}

.service-card p.expanded {
    max-height: 48rem;
    min-height: 0;
}

.read-more-btn {
    align-self: flex-start;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.read-more-btn:hover {
    color: var(--secondary);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
}

.service-time {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.service-link:hover {
    color: var(--secondary);
}

/* Interactive Checklist Assistant */
/* Interactive Checklist Assistant */
.checklist-section {
    background: linear-gradient(135deg, #fffaf0 0%, #fff3e0 100%); /* Warm light orange/cream */
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(249, 115, 22, 0.15);
    padding: 4rem 2rem;
    color: var(--text-primary);
}

.checklist-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #ffffff;
    color: var(--text-secondary);
    border: 1px solid rgba(249, 115, 22, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.tab-btn:hover, .tab-btn.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.checklist-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

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

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.panel-docs h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.doc-list {
    list-style: none;
}

.doc-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.doc-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.panel-card {
    background: #ffffff;
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    color: var(--text-primary);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.panel-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.panel-card-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.panel-card-row span:first-child {
    color: var(--text-secondary);
}

.panel-card-row span:last-child {
    font-weight: 600;
    color: var(--primary);
}

.divider {
    height: 1px;
    background: rgba(249, 115, 22, 0.12);
    margin: 1.5rem 0;
}

/* Process Timeline (How it works) */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 2rem 0;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: var(--bg-main);
    border: 4px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 2.5rem;
    z-index: 1;
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.timeline-item:hover .timeline-dot {
    background: var(--secondary);
    border-color: var(--bg-main);
    transform: scale(1.2);
}

.timeline-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--border-color-hover);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-main);
    display: inline-block;
    text-align: left;
    max-width: 400px;
}

.timeline-item:nth-child(odd) .timeline-content {
    float: right;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Why Choose Us & Trust Section */
.why-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-main);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.feature-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ Accordion Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--bg-surface-elevated);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.75rem;
    color: var(--text-secondary);
    font-size: 0.975rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-question {
    background: var(--bg-surface-elevated);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 1.25rem 1.75rem;
    border-top: 1px solid var(--border-color);
}

/* Contact & Final Consultation Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: var(--border-radius-sm);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content p:first-child {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.info-content p:last-child {
    font-weight: 600;
}

.contact-form-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-main);
}

.contact-form-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

#contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form-card .form-group {
    margin: 0;
}

.contact-form-card .form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-card .form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: #ffffff;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.contact-form-card .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 138, 93, 0.18);
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    width: 90%;
    max-width: 600px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 1.75rem;
}

.modal-header p {
    color: var(--accent);
    font-weight: 600;
}

.modal-body {
    margin-bottom: 2rem;
}

/* Top Contact Floating Actions */
.top-contact-float {
    position: fixed;
    bottom: 1rem;
    right: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 1100;
}

.contact-float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.call-float {
    background-color: #0ea5e9;
}

.whatsapp-float {
    background-color: #25d366;
}

.contact-float-btn:hover {
    transform: translateY(-2px) scale(1.06);
}

.call-float:hover {
    box-shadow: 0 10px 22px rgba(14, 165, 233, 0.45);
}

.whatsapp-float:hover {
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.5);
}

/* Form Success message */
.success-banner {
    display: none;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--secondary);
    color: #ffffff;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 0.4s ease;
}

[data-theme="light"] .success-banner {
    color: var(--secondary-hover);
}

/* Footer Styling */
.footer {
    background: #ea580c; /* Rich Orange */
    color: #ffedd5;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #ffedd5;
}

.footer-brand .logo {
    color: #ffffff;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ffedd5;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.disclaimer {
    font-size: 0.75rem;
    color: #ffedd5;
    opacity: 0.85;
    line-height: 1.5;
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-grid, .why-us, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-card {
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    .nav-links, .nav-actions .btn {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.75rem;
    }
    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
        word-break: break-word;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-card {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    .top-contact-float {
        bottom: 0.85rem;
        right: 0.6rem;
    }
    .panel-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    .timeline-dot {
        left: 10px !important;
    }
    .why-us-features {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.85rem;
    }
    .hero-content h1 {
        font-size: 2.25rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
