/* components.css */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: calc(var(--radius) * 0.5);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    height: 2.5rem;
    px: 1rem;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: 1px solid hsl(var(--primary));
}

.btn-primary:hover {
    background-color: hsl(var(--primary));
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px hsl(var(--primary) / 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: hsl(var(--secondary-foreground));
    border: 1px solid hsl(var(--border));
}

.btn-secondary:hover {
    background-color: hsl(var(--secondary));
    transform: translateY(-1px);
    box-shadow: 0 2px 8px hsl(var(--secondary-foreground) / 0.1);
}

.btn-outline {
    background-color: transparent;
    color: hsl(var(--secondary-foreground));
    border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
    background-color: hsl(var(--secondary));
    transform: translateY(-1px);
    box-shadow: 0 2px 8px hsl(var(--secondary-foreground) / 0.1);
}

.hero-buttons .btn-primary {
    background-color: hsl(var(--primary-foreground));
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--primary-foreground));
}

.hero-buttons .btn-primary:hover {
    background-color: hsl(var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsl(var(--foreground) / 0.15);
}

.hero-buttons .btn-secondary {
    background-color: transparent;
    color: hsl(var(--primary-foreground));
    border: 1px solid hsl(var(--muted-foreground) / 0.5);
}

.hero-buttons .btn-secondary:hover {
    background-color: hsl(var(--muted-foreground) / 0.8);
    color: hsl(var(--foreground));
    transform: translateY(-2px);
}

/* Services Bento Grid */
.services-overview {
    padding: 100px 0;
    background-color: hsl(var(--background));
}

.services-bento {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card.large {
    grid-row: 1 / 3;
}

.service-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) * 0.75);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px hsl(var(--foreground) / 0.1);
    border-color: hsl(var(--primary) / 0.3);
}

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

.service-card.large .service-image {
    height: 250px;
}

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

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

.service-content {
    padding: 1.5rem;
}

.service-card.large .service-content {
    padding: 2rem;
}

.service-icon {
    color: hsl(var(--primary));
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

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

.service-card.large h3 {
    font-size: 1.5rem;
}

.service-card p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.service-card.large p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    padding: 0.25rem 0.75rem;
    border-radius: calc(var(--radius) * 0.5);
    font-size: 0.75rem;
    font-weight: 500;
}

.service-link {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.service-link:hover {
    color: hsl(var(--primary));
    opacity: 0.8;
    transform: translateX(2px);
}

/* Industries Carousel */
.industries-overview {
    padding: 100px 0;
    background-color: hsl(var(--secondary));
}

.industries-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: calc(var(--radius) * 0.75);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.industry-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    align-items: center;
    gap: 2rem;
}

.industry-image {
    height: 300px;
    overflow: hidden;
}

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

.industry-info {
    padding: 2rem;
}

.industry-info .industry-icon {
    color: hsl(var(--primary));
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.industry-info h3 {
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.industry-info p {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    line-height: 1.6;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-btn {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.2s ease;
    color: hsl(var(--foreground));
}

.carousel-btn:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: hsl(var(--border));
    cursor: pointer;
    transition: all 0.2s ease;
}

.indicator.active {
    background: hsl(var(--primary));
    transform: scale(1.2);
}

/* Process Explainer */
.process-explainer {
    padding: 100px 0;
    background-color: hsl(var(--background));
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary) / 0.3));
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: hsl(var(--card));
    border: 2px solid hsl(var(--border));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: hsl(var(--primary));
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    border-color: hsl(var(--primary));
    transform: scale(1.1);
    box-shadow: 0 8px 25px hsl(var(--primary) / 0.15);
}

.process-step h3 {
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.process-step p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary) / 0.8) 100%);
    color: hsl(var(--primary-foreground));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 1rem;
    color: hsl(var(--primary-foreground) / 0.9);
    font-weight: 500;
}

/* Enhanced Sustainability Summary */
.sustainability-summary {
    padding: 100px 0;
    background-color: hsl(var(--secondary));
}

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

.sustainability-text h2 {
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.sustainability-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

.sustainability-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsl(var(--foreground));
    font-weight: 500;
}

.feature-item iconify-icon {
    color: hsl(var(--primary));
}

.sustainability-image {
    height: 400px;
    border-radius: calc(var(--radius) * 0.75);
    overflow: hidden;
}

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

/* Enhanced About Summary */
.about-summary {
    padding: 100px 0;
    background-color: hsl(var(--background));
}

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

.about-image {
    height: 400px;
    border-radius: calc(var(--radius) * 0.75);
    overflow: hidden;
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* Contact Summary */
.contact-summary {
    padding: 80px 0;
    background-color: hsl(var(--background));
}

.contact-summary h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: hsl(var(--foreground));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.contact-item h3 {
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: hsl(var(--muted-foreground));
}

.map-placeholder {
    background-color: hsl(var(--secondary));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) * 0.75);
    overflow: hidden;
    height: 300px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-container {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced About Page Styles */
.about-hero-image {
    padding: 60px 0;
    background-color: hsl(var(--background));
}

.hero-image-container {
    position: relative;
    height: 400px;
    border-radius: calc(var(--radius) * 0.75);
    overflow: hidden;
}

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

.hero-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 3rem 2rem 2rem;
}

.hero-overlay-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.mission-vision-enhanced {
    padding: 80px 0;
    background-color: hsl(var(--secondary));
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-card, .vision-card {
    background: hsl(var(--card));
    padding: 2.5rem;
    border-radius: calc(var(--radius) * 0.75);
    border: 1px solid hsl(var(--border));
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px hsl(var(--foreground) / 0.1);
}

.card-icon {
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.company-story-enhanced {
    padding: 100px 0;
    background-color: hsl(var(--background));
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: hsl(var(--border));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-icon {
    position: absolute;
    left: 16px;
    top: 0;
    width: 32px;
    height: 32px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content h3 {
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.timeline-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    font-size: 0.875rem;
}

.company-values-enhanced {
    padding: 100px 0;
    background-color: hsl(var(--secondary));
}

.values-bento {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
}

/* Enhanced Industries Page Styles */
.industries-hero-grid {
    padding: 60px 0;
    background-color: hsl(var(--background));
}

.industries-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.industry-overview-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) * 0.75);
    overflow: hidden;
    transition: all 0.3s ease;
}

.industry-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px hsl(var(--foreground) / 0.1);
}

.industry-overview-image {
    height: 180px;
    overflow: hidden;
}

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

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

.industry-overview-content {
    padding: 1.5rem;
}

.industry-overview-icon {
    color: hsl(var(--primary));
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.industry-overview-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.industries-detail-enhanced {
    padding: 100px 0;
    background-color: hsl(var(--secondary));
}

.industry-detail-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) * 0.75);
    margin-bottom: 2rem;
    padding: 2rem;
}

.industry-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.industry-detail-content.reverse .industry-detail-image {
    order: -1;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.industry-lead {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

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

.industry-features h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.industry-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.industry-features ul li {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    position: relative;
    padding-left: 20px;
}

.industry-features ul li::before {
    content: '✓';
    color: hsl(var(--primary));
    position: absolute;
    left: 0;
}

.industry-detail-image {
    height: 350px;
    border-radius: calc(var(--radius) * 0.75);
    overflow: hidden;
}

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

.industries-cta {
    padding: 80px 0;
    background-color: hsl(var(--background));
    text-align: center;
}

/* Enhanced Services Page Styles */
.services-hero-grid {
    padding: 60px 0;
    background-color: hsl(var(--secondary));
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-overview-card {
    background-color: hsl(var(--card));
    padding: 2rem;
    border-radius: calc(var(--radius) * 0.75);
    border: 1px solid hsl(var(--border));
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px hsl(var(--foreground) / 0.1);
}

.service-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.service-overview-card:hover .service-number {
    opacity: 1;
    transform: scale(1.1);
}

.service-overview-icon {
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.service-overview-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.services-detail-enhanced {
    padding: 100px 0;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail-content.reverse .service-detail-image {
    order: -1;
}

.service-badge {
    display: inline-block;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-lead {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-detail-image {
    height: 350px;
    border-radius: calc(var(--radius) * 0.75);
    overflow: hidden;
}

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

.services-cta {
    padding: 80px 0;
    background-color: hsl(var(--secondary));
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

/* Enhanced Contact Page Styles */
.contact-hero-cards {
    padding: 60px 0;
    background-color: hsl(var(--secondary));
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.contact-hero-card {
    background-color: hsl(var(--card));
    padding: 1.5rem;
    border-radius: calc(var(--radius) * 0.75);
    border: 1px solid hsl(var(--border));
    text-align: center;
    transition: all 0.3s ease;
}

.contact-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px hsl(var(--foreground) / 0.1);
}

.contact-card-icon {
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.contact-hero-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-hero-card p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    min-height: 40px; /* To align links */
}

.contact-card-link {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.contact-card-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    font-size: 0.75rem;
    font-weight: 500;
}

.contact-section-enhanced {
    padding: 100px 0;
}

.contact-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form-enhanced {
    background: hsl(var(--card));
    padding: 2rem;
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) * 0.75);
}

.form-header h2 {
    margin-bottom: 0.5rem;
}

.form-header p {
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) * 0.5);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

.form-submit-btn {
    width: 100%;
    font-size: 1rem;
    gap: 0.5rem;
}

.info-header {
    margin-bottom: 2rem;
}

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

.info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    color: hsl(var(--primary));
}

.info-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.info-content p {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: hsl(var(--muted-foreground));
    transition: color 0.2s ease;
}

.social-link:hover {
    color: hsl(var(--primary));
}

.map-section-enhanced {
    padding: 80px 0;
    background-color: hsl(var(--secondary));
}

.map-placeholder-enhanced {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) * 0.75);
    overflow: hidden;
}

.map-placeholder-enhanced iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.map-icon {
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

.map-actions {
    margin-top: 2rem;
}

.map-actions .btn {
    gap: 0.5rem;
}

.contact-faq {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-item {
    background-color: hsl(var(--card));
    padding: 1.5rem;
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) * 0.75);
}

.faq-item h4 {
    margin-bottom: 0.5rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: hsl(var(--card));
    margin: auto;
    padding: 2rem;
    border: 1px solid hsl(var(--border));
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius);
    position: relative;
    text-align: center;
    transform: translateY(-50px) scale(0.95);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.close-btn {
    color: hsl(var(--muted-foreground));
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: hsl(var(--foreground));
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 2rem;
    color: hsl(var(--muted-foreground));
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-options .btn {
    width: 100%;
    gap: 0.5rem;
}