:root {
    --primary-color: #00A651;
    --secondary-color: #4D4D4D;
    --accent-color: #E6F4EA;
    --light-color: #FFFFFF;
    --dark-color: #222222;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --border-radius: 12px;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.15);
}

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

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

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

.beta-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 0;
    text-align: center;
    font-size: 0.75rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.beta-notice i {
    margin-right: 6px;
    color: #FFF59D;
}

.beta-text {
    font-weight: 500;
}

.beta-version {
    background: rgba(255,255,255,0.15);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 8px;
    font-weight: 600;
}

header {
    background-color: var(--light-color);
    box-shadow: var(--shadow-medium);
    position: fixed;
    width: 100%;
    top: 32px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
    padding: 8px;
    margin-right: 0;
}

.hero {
    height: auto;
    min-height: 70vh;
    background: linear-gradient(135deg,
                                rgba(0, 166, 81, 0.6) 0%,
                                rgba(0, 140, 68, 0.7) 50%,
                                rgba(0, 100, 50, 0.8) 100%
    ),
    url('../images/hero2.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    margin-top: 112px;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    color: var(--light-color);
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content .subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background-color: #008c44;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--light-color);
}

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

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

.btn i {
    margin-right: 8px;
}

.opening-hours-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.opening-hours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 166, 81, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 166, 81, 0.02) 0%, transparent 50%);
}

.hours-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.hours-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.hours-subtitle {
    font-size: 1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

.special-hours-simple {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 20px;
    display: none;
    animation: slideInDown 0.5s ease-out;
    position: relative;
    z-index: 1;
}

.special-hours-simple.show {
    display: block;
}

.special-hours-simple h4 {
    color: #d68910;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.special-hours-simple p {
    color: #856404;
    margin: 0;
    font-weight: 500;
    font-size: 0.85rem;
}

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

.hours-compact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.today-status-compact {
    background: linear-gradient(135deg, var(--primary-color) 0%, #008c44 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.today-status-compact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.status-indicator {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.today-content {
    position: relative;
    z-index: 1;
}

.today-day {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 2px;
}

.today-hours {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.today-info {
    font-size: 0.85rem;
    opacity: 0.95;
}

.schedule-compact {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 166, 81, 0.1);
}

.schedule-title-compact {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.week-grid-compact {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.day-compact {
    text-align: center;
    padding: 8px 4px;
    border-radius: 6px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.day-compact:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
}

.day-compact.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #008c44 100%);
    color: white;
}

.day-name-compact {
    display: block;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.day-time-compact {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.day-compact.active .day-time-compact {
    opacity: 1;
}

/* Extended Hours Info */
.extended-hours-container {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.extended-hours-teaser {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 166, 81, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.teaser-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.teaser-text i {
    color: var(--primary-color);
    font-size: 1rem;
}

.show-more-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.show-more-btn:hover {
    background: #008c44;
    transform: translateY(-1px);
}

.show-more-btn i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

.extended-hours-details {
    display: none;
    background: white;
    border-radius: 0 0 12px 12px;
    border: 1px solid rgba(0, 166, 81, 0.1);
    border-top: none;
    padding: 20px;
}

.hours-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #008c44 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-weight: 600;
}

.detail-content p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--secondary-color);
    margin: 0;
}

.detail-content strong {
    color: var(--dark-color);
    font-weight: 600;
}

.environmental-impact {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.impact-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.impact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-stat {
    background: var(--light-color);
    border-radius: 15px;
    padding: 35px 25px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #4ECDC4);
}

.impact-stat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.impact-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.4;
    font-weight: 500;
}

.impact-sublabel {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.3;
    margin-top: 8px;
    font-weight: 400;
}

.impact-footnote {
    margin-top: 40px;
    text-align: center;
}

.impact-footnote p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
}

.impact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Social Media Section */
.social-media-section {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
}

.social-header {
    text-align: center;
    margin-bottom: 30px;
}

.social-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.social-header p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.social-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.social-platform {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-content {
    margin-bottom: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto 10px auto;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e4405f, #f77737);
}

.social-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 600;
}

.social-text p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.social-highlights {
    display: none;
}

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

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.facebook-btn {
    background: #1877f2;
    color: white;
}

.facebook-btn:hover {
    background: #166fe5;
    color: white;
    text-decoration: none;
}

.instagram-btn {
    background: linear-gradient(135deg, #e4405f, #f77737);
    color: white;
}

.instagram-btn:hover {
    opacity: 0.9;
    color: white;
    text-decoration: none;
}

.social-btn .fab {
    font-size: 1rem;
}

.social-btn .fas {
    font-size: 0.8rem;
    opacity: 0.8;
}

.social-note {
    text-align: center;
    margin-top: 20px;
}

.social-note p {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}

@keyframes social-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@keyframes facebook-pulse {
    0%, 70%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    35% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.services {
    background-color: var(--accent-color);
    padding: 80px 0;
}

.services-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.service-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

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

.service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-form-container {
    flex: 1;
    max-width: 450px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    border-top: 5px solid var(--primary-color);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.contact-form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-form-header p {
    color: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #008c44;
    transform: translateY(-2px);
}

.btn-cta:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-cta i {
    margin-right: 8px;
}

.form-status {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-status.show {
    display: block;
}

.pricing {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.pricing-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.pricing-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.pricing-tab.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.pricing-content {
    padding: 30px;
}

.pricing-category {
    display: none;
}

.pricing-category.active {
    display: block;
}

.pricing-list {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list .location,
.pricing-list .service {
    font-weight: 600;
    flex: 1;
}

.pricing-list .price {
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 10px;
}

.pricing-note {
    text-align: center;
    padding: 0 30px 30px;
    font-size: 0.9rem;
    color: #777;
}

.pricing-list .error {
    color: #d32f2f;
    font-weight: 600;
    font-style: italic;
}

.pricing-preview {
    display: block;
}

.pricing-details {
    display: none;
}

.btn-read-more, .btn-read-less {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.btn-read-more:hover, .btn-read-less:hover {
    background-color: #008c44;
    transform: translateY(-2px);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 2;
}

.about-text h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    max-width: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    border-radius: 8px;
}

/* ===============================
   CONTACT OPTIONS
   =============================== */

.contact-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px;
    background: rgba(0, 166, 81, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.option-text {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(0, 166, 81, 0.1);
    border: 1px solid rgba(0, 166, 81, 0.2);
    transition: all 0.3s ease;
}

.phone-cta:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 166, 81, 0.3);
}

.phone-cta i {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .phone-cta {
        font-size: 14px;
        padding: 8px 16px;
    }
}

footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    list-style: none;
}

.footer-contact li i {
    margin-right: 15px;
    color: var(--primary-color);
}

.footer-contact a {
    color: #E0E0E0 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:visited {
    color: #E0E0E0 !important;
}

.footer-contact a:hover {
    color: #00D469 !important;
}

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

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

.footer-links a {
    color: #E0E0E0 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:visited {
    color: #E0E0E0 !important;
}

.footer-links a:hover {
    color: #00D469 !important;
}

.address-link {
    color: var(--light-color) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.address-link:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

.address-link:visited {
    color: var(--light-color) !important;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #777;
}

@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .services-wrapper {
        flex-direction: column;
    }

    .contact-form-container {
        max-width: 100%;
    }

    .hours-compact-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .extended-hours-teaser {
        flex-direction: column;
        gap: 12px;
        padding: 12px 15px;
        text-align: center;
    }

    .teaser-text {
        font-size: 0.85rem;
        text-align: center;
        justify-content: center;
    }

    .show-more-btn {
        align-self: center;
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .hours-detail-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .detail-item {
        gap: 10px;
    }

    .detail-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .detail-content h4 {
        font-size: 0.9rem;
    }

    .detail-content p {
        font-size: 0.75rem;
    }

    .facebook-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .facebook-content {
        flex-direction: column;
        gap: 20px;
    }

    .facebook-text h3 {
        font-size: 1.8rem;
    }

    .facebook-highlights {
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .beta-notice {
        font-size: 0.7rem;
        padding: 3px 0;
    }

    .beta-version {
        margin-left: 4px;
        font-size: 0.7rem;
    }

    header {
        top: 28px;
    }

    .hero {
        margin-top: 108px;
        min-height: 60vh;
        padding: 40px 0;
    }

    nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        position: relative;
        padding: 8px 12px;
        margin-right: 0;
    }
    
    .mobile-menu-btn.active {
        transform: rotate(90deg);
    }
    
    nav ul.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 200px;
        max-width: 280px;
        width: max-content;
        background-color: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 1000;
        border-radius: 12px 0 12px 12px;
        animation: slideDown 0.3s ease-out;
    }
    
    nav ul.mobile-open li {
        margin: 0;
        width: 100%;
    }
    
    nav ul.mobile-open li a {
        display: block;
        padding: 15px 0;
        text-align: center;
        border-bottom: 1px solid #eee;
        transition: all 0.3s ease;
    }
    
    nav ul.mobile-open li:last-child a {
        border-bottom: none;
    }
    
    nav ul.mobile-open li a:hover {
        background-color: var(--accent-color);
        color: var(--primary-color);
    }
    
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .opening-hours-section {
        padding: 30px 0;
    }

    .hours-title {
        font-size: 1.5rem;
    }

    .today-status-compact {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .week-grid-compact {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .day-compact {
        padding: 10px 6px;
    }

    .day-name-compact {
        font-size: 0.8rem;
    }

    .day-time-compact {
        font-size: 0.75rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-stat {
        padding: 25px 20px;
    }

    .impact-number {
        font-size: 2rem;
    }

    .impact-label {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .impact-title {
        font-size: 1.8rem;
    }

    .impact-stat {
        padding: 20px 15px;
    }

    .impact-number {
        font-size: 1.8rem;
    }

    .impact-label {
        font-size: 0.85rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .impact-sublabel {
        font-size: 0.75rem;
        margin-top: 6px;
    }

    .facebook-section {
        padding: 40px 0;
    }

    .facebook-content {
        gap: 15px;
    }

    .facebook-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .facebook-text h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .facebook-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .facebook-btn {
        padding: 15px 25px;
        font-size: 1rem;
        gap: 10px;
    }

    .facebook-highlights {
        gap: 8px;
    }

    .highlight-item {
        font-size: 0.9rem;
        gap: 10px;
    }

    .pricing-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-list .price {
        margin-top: 5px;
        padding: 0;
    }

    .pricing-list .note {
        text-align: left;
    }
}

@media screen and (max-width: 576px) {
    .header-container {
        padding: 10px 0;
    }

    .logo img {
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 80vh;
        padding: 40px 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .section-title h3 {
        font-size: 1.8rem;
    }

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

    .opening-hours-section {
        padding: 25px 0;
    }

    .hours-title {
        font-size: 1.5rem;
    }

    .today-status-compact,
    .schedule-compact {
        margin: 0 10px;
        padding: 15px;
    }

    .today-hours {
        font-size: 1.2rem;
    }

    .week-grid-compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .special-hours-simple {
        margin: 0 5px 20px 5px;
        padding: 12px;
    }

    .special-hours-simple h4 {
        font-size: 0.9rem;
    }

    .special-hours-simple p {
        font-size: 0.8rem;
    }

    .social-platforms {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }
    
    .social-platform {
        padding: 15px;
    }

    .social-header h3 {
        font-size: 1.5rem;
    }

    .social-header p {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .social-text h4 {
        font-size: 1rem;
    }

    .social-text p {
        font-size: 0.8rem;
    }

    .social-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
