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

:root {
    --primary: #0d3b66;
    --secondary: #1565c0;
    --accent: #2196f3;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    top: 0 !important; /* Prevent Google Translate from pushing page down */
}

/* Navigation Bar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    gap: 1.5rem;
}

.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

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

.nav-link.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

/* ── Google Translate (hidden widget — translation triggered via cookie) ── */
#google_translate_element {
    display: none !important;
}

/* Hide the top banner Google Translate injects */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

.skiptranslate > iframe {
    display: none !important;
    height: 0 !important;
}

/* Prevent Google Translate from offsetting the page body downward */
body {
    top: 0 !important;
}

/* Language Switcher (legacy - kept for 1.html compatibility) */
.language-switcher {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.6rem;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-link:hover {
    background: var(--bg-light);
}

.lang-link.active-lang {
    background: var(--secondary);
    color: var(--white);
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.75rem;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--secondary);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: inherit;
}

.lang-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

.lang-btn.active {
    background: var(--secondary);
    color: var(--white);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.header-logo {
    max-width: 180px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 300;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Value Proposition Section */
#value-prop {
    padding: 5rem 0;
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Services Home Section */
#services-home {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

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

.service-item h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-link-large {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border: 2px solid var(--secondary);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* How It Works Section */
#how-it-works {
    padding: 5rem 0;
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* About Preview Section */
#about-preview {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Trust/Stats Section */
#trust {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Final CTA Section */
#cta-final {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

#cta-final h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

#cta-final p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Fallback for pages without main wrapper */
body > section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

h2 a:hover {
    color: var(--accent);
}

h2 a:active {
    transform: scale(0.98);
}

/* About Section */
#about p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Button Links */
.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.btn-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.btn-link:active {
    transform: translateX(2px);
}

.btn-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.btn-link:hover::after {
    margin-left: 0.75rem;
}

/* Services Section */
#services {
    background: var(--bg-light);
    padding: 4rem 2rem;
    margin: 0 -2rem;
}

#services ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    padding: 0;
}

#services li {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-size: 1.0625rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
    cursor: pointer;
}

#services li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent);
    background: #fafbfc;
}

/* Services Page Specific Styles */
#services-intro {
    padding: 3rem 0 2rem;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
}

#services-list {
    padding: 2rem 0;
    border: none;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.service-card p:last-child {
    margin-bottom: 0;
}

.service-note {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    background: var(--white);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    font-size: 1.125rem;
    color: var(--text-light);
}

.contact-item a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: 2px solid var(--secondary);
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* About Page Specific Styles */
#about-mission {
    padding: 3rem 0 2rem;
}

.mission-statement {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    font-weight: 400;
}

#about-approach p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 900px;
}

#founder-bio {
    background: var(--bg-light);
    padding: 4rem 2rem;
    margin: 2rem -2rem;
}

.bio-container {
    max-width: 900px;
    margin: 0 auto;
}

.bio-content h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bio-title {
    font-size: 1.125rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.bio-photo {
  width: 300px;   /* adjust */
  height: auto;   /* keeps proportions */
}

.bio-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.bio-note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    font-size: 1rem;
}

.bio-note a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.bio-note a:hover {
    color: var(--accent);
    text-decoration: underline;
}

#why-choose {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
}

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

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Page Specific Styles */
#contact-intro {
    padding: 3rem 0 2rem;
}

/* Homepage Styles */
#hero-intro {
    padding: 3rem 0 2rem;
    text-align: center;
}

#home-services,
#why-choose-home {
    padding: 4rem 0;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

#stats-home {
    padding: 4rem 0;
    background: var(--bg-light);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

#cta-home {
    padding: 4rem 0;
    text-align: center;
}

.cta-buttons-home {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent);
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.service-card-detail {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

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

.service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card-detail h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.service-card-detail p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-card-detail p:last-child {
    margin-bottom: 0;
}

#cta-services {
    padding: 4rem 0;
    text-align: center;
    background: var(--bg-light);
    margin: 2rem -2rem 0;
    padding-left: 2rem;
    padding-right: 2rem;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-detail {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    word-break: break-all;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.contact-detail a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.contact-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Form */
#contact-form-section {
    background: var(--bg-light);
    padding: 4rem 2rem;
    margin: 2rem -2rem;
}

.form-intro {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.google-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.google-form-container iframe {
    display: block;
    border: none;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

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

.submit-btn {
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Business Hours */
#business-hours {
    padding: 4rem 0;
    text-align: center;
}

.hours-container {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
}

.hours-note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-light);
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .goog-te-gadget-simple {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.8rem !important;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-logo {
        max-width: 150px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .value-grid,
    .services-grid,
    .steps-container,
    .trust-stats {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    #cta-final h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }

    #services ul {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
