@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Tiro+Devanagari+Hindi:ital,wght@0,400;0,500;0,600;1,400&family=Cinzel:wght@400;500;600;700&display=swap');

:root {
    --color-text: #1f2937;
    /* gray-800 */
    --color-muted: #6b7280;
    /* gray-500 */
    --color-border: #e5e7eb;
    /* gray-200 */
    --color-bg: #ffffff;
    --color-primary: #ed5b00;
    /* indigo-600 */
    --primary-600: #ff8c00;
    --color-primary-weak: #eef2ff;
    --color-primary-rgb: 79, 70, 229;
    /* RGB values for rgba usage */
}

/* Base typography and spacing */
html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    font-family: "Poppins", sans-serif !important;
    color: var(--color-text);
    background: var(--color-bg);
}

/* Common modern UI */
input,
textarea {
    display: block;
    margin: 6px 0;
    padding: 8px;
    width: 100%;
}

/* Typography */
h1,
.display-6 {
    letter-spacing: 0.2px;
}

.lead {
    color: var(--color-muted);
}

/* Layout helpers */
.section {
    padding: 64px 0;
}

.hero {
    padding: 96px 0;
}

.container-narrow {
    max-width: 920px;
    margin: 0 auto;
}

/* Navbar */
.navbar-blur {
    backdrop-filter: saturate(180%) blur(12px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar .btn-primary {
    transition: transform 0.2s ease;
}

.navbar .btn-primary:hover {
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-item {
        padding: 0.5rem 0;
    }

    .navbar-nav .btn {
        margin-top: 0.5rem;
        width: 100%;
    }
}

/* Cards */
.card-soft {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

.shadow-soft {
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

/* Buttons */
.btn-primary-modern {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
}

.btn-primary-modern:hover {
    filter: brightness(1.05);
}

.btn-outline-modern {
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background: #fff;
    padding: 12px 18px;
    border-radius: 10px;
}

/* Badges */
.badge-soft {
    display: inline-block;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-muted);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Process */
.step {
    position: relative;
}

.step-index {
    position: absolute;
    top: 12px;
    right: 16px;
    color: var(--color-muted);
    font-weight: 600;
}

/* Testimonials */
.testimonial-card {
    border-radius: 12px;
}

/* Soft surfaces */
.bg-soft {
    background: #fafafa;
}

/* Hero */
.gradient-hero {
    background:
        radial-gradient(1000px 400px at -10% -10%, #eef2ff 0%, transparent 60%),
        radial-gradient(1000px 400px at 110% 110%, #f5f3ff 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

/* Links */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.link-muted {
    color: var(--color-muted);
}

/* Forms */
.form-control {
    border-radius: 10px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.15);
    border-color: #c7d2fe;
}

/* Footer */
footer a {
    color: inherit;
}

/* Utility tweaks */
.link-muted {
    color: var(--color-muted);
}

/* Template-specific base styles */
.template-astro1 {
    position: relative;
    overflow: hidden;
}

.template-astro2 {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --warning: #f59e0b;
    --success: #10b981;
    --dark: #1f2937;
    --light: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.template-astro3 {
    --gold: #d4af37;
    --gold-light: #f4e4a6;
    --gold-dark: #b8941f;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    font-family: 'Playfair Display', serif;
}

/* Navigation styles for templates */
.navbar-blur {
    backdrop-filter: saturate(180%) blur(12px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.navbar-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-dark {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Button styles for templates */
.btn-primary-modern {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
    transition: all 0.3s ease;
}

.btn-primary-modern:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-gradient {
    background: linear-gradient(45deg, #6366f1, #4f46e5);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, #4f46e5, #3730a3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-gold {
    background: var(--gold, #d4af37);
    border-color: var(--gold, #d4af37);
    color: var(--dark, #1a1a1a);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--gold-dark, #b8941f);
    border-color: var(--gold-dark, #b8941f);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Footer styles for templates */
.footer-modern {
    background: #f8fafc;
    border-top: 1px solid var(--color-border);
}

.footer-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.footer-dark {
    background: var(--dark, #1a1a1a);
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Text color utilities */
.text-gold {
    color: var(--gold, #d4af37) !important;
}

/* Ask Section Styles */
.ask-section {
    position: relative;
    overflow: hidden;
}

.gradient-soft {
    background:
        radial-gradient(800px 400px at 0% 0%, rgba(247, 246, 255, 0.08) 0%, transparent 100%),
        radial-gradient(600px 400px at 100% 100%, rgba(252, 251, 255, 0.08) 0%, transparent 100%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.card-modern {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow:
        0 4px 6px -1px rgba(16, 24, 40, 0.03),
        0 12px 24px -4px rgba(16, 24, 40, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-modern:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 6px -1px rgba(16, 24, 40, 0.05),
        0 12px 24px -4px rgba(16, 24, 40, 0.08);
}

/* Testimonials Section Styles */
.testimonials-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-style: italic;
    color: #6c757d;
    line-height: 1.6;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), #6f42c1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Reviews Page Styles */
.review-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), #6f42c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.rating i {
    font-size: 1.1rem;
}

.filter-btn {
    transition: all 0.3s ease;
    border-radius: 25px;
}

.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.hero-stats .stat-item {
    padding: 0 1rem;
}

.rating-overview .overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-breakdown .progress {
    border-radius: 10px;
}

/* Contact Page Styles */
.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), #6f42c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.social-links .social-link {
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links .social-link:hover {
    background: #6f42c1;
    transform: translateY(-3px);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background: #f8f9fa;
    border: none;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--color-primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: white;
}

.trust-indicators .trust-item {
    transition: transform 0.3s ease;
}

.trust-indicators .trust-item:hover {
    transform: translateY(-5px);
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary), #6f42c1);
}

.cta-section .btn-light {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Modern/* Services Page Styles */
.services-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.services-hero .hero-image img {
  transition: transform 0.3s ease;
  max-height: 400px;
  object-fit: cover;
}

.services-hero .hero-image img:hover {
  transform: scale(1.02);
}

.process-step {
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-step .step-number .badge {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16,24,40,0.15);
}

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

.service-card .service-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-card .card-body {
  position: relative;
}

.service-card .btn {
  transition: all 0.3s ease;
}

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

.specialized-service {
  transition: transform 0.3s ease;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 16px rgba(16,24,40,0.08);
}

.specialized-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(16,24,40,0.15);
}

.specialized-service .service-icon {
  width: 80px;
  height: 80px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.feature-box {
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-3px);
}

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

/* Service card animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card[data-aos="fade-up"] {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
  .services-hero {
    min-height: 50vh;
    text-align: center;
  }
  
  .services-hero .hero-image {
    margin-top: 2rem;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
  
  .service-card .service-image {
    height: 180px;
  }
  
  .specialized-service,
  .feature-box {
    margin-bottom: 1.5rem;
  }
}

/* About Page Styles */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero .hero-content h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero .hero-image img {
    transition: transform 0.3s ease;
}

.about-hero .hero-image img:hover {
    transform: scale(1.05);
}

.story-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.15);
}

.story-card .icon-box {
    width: 80px;
    height: 80px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.stat-card {
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.expertise-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.15);
}

.expertise-card .icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

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

.approach-steps .step-number .badge {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        text-align: center;
    }

    .about-hero .hero-content {
        margin-bottom: 2rem;
    }

    .stats-grid .stat-card {
        margin-bottom: 1rem;
    }

    .approach-steps .step-item {
        text-align: center;
    }

    .approach-steps .step-number {
        margin: 0 auto 1rem auto;
    }
}

/* Footer Styles */
.footer-modern {
    background: #f8fafc;
    border-top: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.footer-title {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    color: var(--color-text);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    text-decoration: none;
    transform: translateX(3px);
}

.footer-link {
    color: var(--color-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-brand {
    color: var(--color-text);
}

.footer-contact {
    color: var(--color-muted);
}

.footer-bottom {
    font-size: 0.875rem;
}

.social-link {
    color: var(--color-muted);
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--color-primary-rgb), 0.1);
}

.social-link:hover {
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.15);
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .d-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-social {
        justify-content: center;
    }
}

.grid-full {
    grid-column: 1 / -1;
}

/* Form Styles */
.lead-form {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
}

.lead-form .form-control {
    width: 100%;
    max-width: none;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.lead-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.lead-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-header {
    margin-bottom: 24px;
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--color-muted);
    margin: 0;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background: var(--color-primary) !important;
    border-color: var(--color-primary);
    color: white;
    transition: all 0.2s ease;
}

.submit-button:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

/* Services Section Styles */
.services-section {
    position: relative;
    overflow: hidden;
}

.service-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-content {
    background: #ffffff;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.service-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.card-modern {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.08);
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--color-primary), #7c3aed);
    color: white !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
    color: white;
    text-decoration: none;
}

.btn-outline-modern {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: var(--color-primary-weak);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .services-section .card-modern {
        margin-bottom: 1.5rem;
    }

    .service-thumb {
        height: 200px;
    }

    .cta-section .d-flex {
        flex-direction: column;
    }

    .cta-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

.grid-full {
    grid-column: 1 / -1;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background: var(--color-primary) !important;
    border-color: var(--color-primary);
    color: white;
    transition: all 0.2s ease;
}

.submit-button:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

/* Contact Section Styles */
.contact-hero {
    position: relative;
    overflow: hidden;
}

.quick-connect-grid {
    display: grid;
    gap: 1rem;
}

.card-accent {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-accent:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 6px -1px rgba(16, 24, 40, 0.05),
        0 12px 24px -4px rgba(16, 24, 40, 0.08);
}

.quick-connect-icon {
    font-size: 2rem;
    line-height: 1;
}

.trust-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-muted);
}

.trust-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.form-header {
    text-align: left;
}

/* Button Styles */
.btn-success {
    background-color: #10b981;
    border-color: #10b981;
    color: white;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #059669;
    border-color: #059669;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .quick-connect-grid {
        grid-template-columns: 1fr;
    }

    .card-accent {
        margin-bottom: 1rem;
    }
}

.grid-full {
    grid-column: 1 / -1;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background: var(--color-primary) !important;
    border-color: var(--color-primary);
    color: white;
    transition: all 0.2s ease;
}

.submit-button:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

/* Trust Badges */
.form-footer {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.trust-badge {
    font-size: 13px;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Admin Panel Styles */
.table th {
    font-weight: 600;
    background-color: #f8f9fa;
    white-space: nowrap;
}

.table th:hover {
    background-color: #e9ecef;
}

.table td {
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: rgba(var(--color-primary-rgb), 0.02);
}

.card {
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

.card-body {
    padding: 1.5rem;
}

.form-control,
.form-select {
    border-color: var(--color-border);
    border-radius: 8px;
    padding: 0.6rem 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.btn {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

.pagination {
    margin-bottom: 0;
}

.page-link {
    border-radius: 6px;
    margin: 0 2px;
    padding: 0.5rem 0.75rem;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

.page-link:hover {
    background-color: rgba(var(--color-primary-rgb), 0.05);
    border-color: var(--color-border);
    color: var(--color-primary);
}

.page-item.active .page-link {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--color-border);
    padding: 1.25rem 1.5rem;
}

.alert {
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.spinner-border {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 0.15em;
}

/* Admin navbar styles */
.navbar {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.navbar-brand {
    font-weight: 600;
    color: var(--color-text);
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: var(--color-text);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(var(--color-primary-rgb), 0.05);
    color: var(--color-primary);
}

.navbar-nav .nav-link.active {
    background-color: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
}