:root {
    --primary-green: #2E7D52;
    --light-green: #4CAF7D;
    --bg-white: #FFFFFF;
    --bg-light: #F4FAF7;
    --text-main: #1A1A1A;
    --text-sub: #6B7280;
    --font-main: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px rgba(46, 125, 82, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

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

.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: white;
    box-shadow: 0 4px 14px rgba(46, 125, 82, 0.3);
}

.btn-primary:hover {
    background-color: #236340;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 82, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.logo img {
    height: 40px;
    width: auto;
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-green);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--light-green);
}

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-green);
    background-color: var(--bg-light);
    padding: 10px 20px;
    border-radius: 50px;
}

.phone-link:hover {
    background-color: #E3F2EB;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    border-top: 1px solid #eee;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    animation: fadeInUp 1s ease forwards;
}

.badge {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-main);
}

.highlight {
    color: var(--primary-green);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-sub);
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

/* Services */
.services {
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(76, 175, 125, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: var(--bg-light);
    color: var(--primary-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card:hover .service-icon {
    background-color: var(--primary-green);
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-sub);
    font-size: 0.95rem;
}

/* Why Us */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.why-us-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-green);
    color: white;
    padding: 30px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 6px solid white;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.2;
}

.features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    color: var(--light-green);
    margin-top: 4px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-text h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-sub);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-white);
}

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

.testimonial-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.stars {
    color: #FFC107;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: #FFC107;
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--light-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-sub);
}

/* Footer */
.footer {
    background-color: var(--text-main);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #A0AEC0;
    max-width: 300px;
    font-size: 0.95rem;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: white;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #A0AEC0;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--light-green);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: #A0AEC0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info svg {
    width: 20px;
    height: 20px;
    color: var(--light-green);
    flex-shrink: 0;
}

.contact-info a {
    color: #A0AEC0;
}

.contact-info a:hover {
    color: white;
}

.footer-hours li {
    color: #A0AEC0;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #A0AEC0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .why-us-image {
        margin: 0 40px 40px;
    }
    .experience-badge {
        bottom: -20px;
        right: 0;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .header-contact .phone-link {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.95) 100%);
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-ctas {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .why-us-image {
        margin: 0 0 40px 0;
    }
}

/* Page Header */
.page-header {
    background-color: var(--primary-green);
    color: white;
    padding: 140px 0 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    color: #E3F2EB;
}

/* Detailed Services */
.detailed-services {
    background-color: var(--bg-white);
}

.detailed-service-item {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.detailed-service-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
}

.detailed-service-item h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

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

/* Pricing Calculator */
.pricing-calculator {
    background-color: var(--bg-light);
}

.calculator-card {
    background-color: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.calc-form {
    margin-top: 40px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.form-control {
    padding: 14px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: #F8FAFC;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 82, 0.1);
}

.price-display {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
    border: 2px dashed var(--light-green);
}

.price-label {
    display: block;
    font-size: 1.125rem;
    color: var(--text-sub);
    margin-bottom: 8px;
    font-weight: 500;
}

.price-value {
    font-size: 3.5rem;
    color: var(--primary-green);
    font-weight: 700;
    line-height: 1;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .calculator-card {
        padding: 30px 20px;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* Our Story */
.our-story {
    background-color: var(--bg-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.story-content p {
    font-size: 1.125rem;
    color: var(--text-sub);
    margin-bottom: 20px;
}

.story-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Statement */
.mission-statement {
    background-color: var(--primary-green);
    color: white;
    padding: 80px 0;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mission-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.mission-statement h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.mission-text {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    color: #E3F2EB;
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    background-color: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 1.125rem;
    color: var(--text-sub);
    font-weight: 500;
}

/* Core Values */
.core-values {
    background-color: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-5px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: white;
    color: var(--primary-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
}

.value-item:hover .value-icon {
    color: var(--light-green);
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.value-item p {
    color: var(--text-sub);
}

.value-item:hover p, .value-item:hover h3 {
    color: white;
}

/* Team Section */
.team-section {
    background-color: var(--bg-light);
}

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

.team-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

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

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.team-info .role {
    color: var(--light-green);
    font-weight: 500;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--text-sub);
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .mission-text {
        font-size: 1.25rem;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-white);
}

.filter-controls {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.filter-btn {
    padding: 10px 24px;
    background-color: white;
    color: var(--text-main);
    border: 2px solid #E2E8F0;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-main);
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--light-green);
    color: var(--primary-green);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #F0F0F0;
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.gallery-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.05);
}

.category-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.gallery-caption {
    padding: 24px;
}

.gallery-caption h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.gallery-caption p {
    color: var(--text-sub);
    font-size: 0.95rem;
}

/* For JS filtering animation */
.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Contact Page Section */
.contact-page-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-sidebar {
    position: relative;
}

.contact-info-card {
    background-color: var(--primary-green);
    color: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.contact-info-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info-card p.mb-4 {
    margin-bottom: 32px;
    color: #E3F2EB;
    font-size: 1.05rem;
}

.contact-details-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-details-list li:last-child {
    margin-bottom: 0;
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box svg {
    width: 24px;
    height: 24px;
    color: white;
}

.info-content h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-content p, .info-content a {
    color: #E3F2EB;
    font-size: 1rem;
    transition: var(--transition);
}

.info-content a:hover {
    color: white;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: white;
    padding: 40px 0;
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.form-subtitle {
    font-size: 1.125rem;
    color: var(--text-sub);
    margin-bottom: 32px;
}

.required {
    color: #E53E3E;
    margin-left: 2px;
}

.w-100 {
    width: 100%;
}

textarea.form-control {
    resize: vertical;
    padding-top: 16px;
    background-image: none;
}

.error-msg {
    color: #E53E3E;
    font-size: 0.875rem;
    margin-top: 6px;
    display: none;
}

.form-group.has-error .form-control {
    border-color: #E53E3E;
    background-color: #FFF5F5;
}

.form-group.has-error .error-msg {
    display: block;
}

.success-msg {
    background-color: #E6FFFA;
    border: 1px solid #38B2AC;
    color: #285E61;
    padding: 20px;
    border-radius: 12px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.success-msg.hide {
    display: none;
}

.success-msg svg {
    width: 24px;
    height: 24px;
    color: #38B2AC;
}

/* Map Section */
.map-section {
    line-height: 0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-card {
        position: static;
    }
}
