/* Deep Woods HVAC & Plumbing - Custom Styles */

:root {
    --primary-color: #2d5a27; /* Deep Woods forest green from deepwoodshvac.com */
    --secondary-color: #2d5016;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #000000;
    --font-family: 'Inter', sans-serif;
    --deep-woods-green: #2d5a27; /* Deep forest green from deepwoodshvac.com */
    --deep-woods-dark: #000000;
    --deep-woods-accent: #a8d5a8; /* Light green for hover effects */
    --deep-woods-light-green: #2d5016;
}

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

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--warning-color) !important;
}

/* Logo positioning in navbar */
.navbar-logo-right {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

/* Ensure proper spacing on mobile */
@media (max-width: 991.98px) {
    .navbar-logo-right {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .navbar-logo {
        height: 35px;
    }
}

/* Deep Woods Green Theme - Override Bootstrap primary colors */
.navbar.bg-primary {
    background-color: #2d5a27 !important; /* Deep forest green from deepwoodshvac.com */
}

/* Ensure navbar brand and links work well with green background */
.navbar-dark .navbar-brand,
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff !important;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--deep-woods-accent) !important; /* Light green hover */
}

/* Hero Section */
.hero-section {
    background: url('./UpdatedBackground.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    max-height: 400px;
    width: 100%;
    height: auto;
}

.hero-heading {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.hero-text {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Emergency Banner */
.emergency-banner {
    position: sticky;
    top: 76px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

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

.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-card .service-icon {
    margin-top: -30px;
    position: relative;
    z-index: 2;
    margin-left: 2rem;
}

.service-card h4,
.service-card ul,
.service-card .btn {
    padding-left: 2rem;
    padding-right: 2rem;
}

.service-card .btn {
    margin: 0 2rem 2rem 2rem;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-woods-green), var(--deep-woods-light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

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

.service-card ul li {
    padding: 0.25rem 0;
    color: var(--secondary-color);
}

/* Map Container */
.map-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
}

.map-container::before {
    content: '🗺️ Interactive Service Areas Map';
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-align: center;
}

/* Service Areas */
.service-areas-list {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.area-item {
    padding: 0.75rem;
    background: var(--light-color);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.area-item:hover {
    background: #e9ecef;
}

/* Tracking Card */
.tracking-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tracking-header {
    border-bottom: 2px solid var(--deep-woods-green);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.tracking-header h4 {
    color: var(--primary-color);
    font-weight: 600;
}

.tracking-results {
    min-height: 200px;
    background: var(--light-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
    display: none;
}

.tracking-results.active {
    display: block;
}

.technician-info {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--success-color);
}

.technician-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-en-route {
    background: #fff3cd;
    color: #856404;
}

.status-arrived {
    background: #d1ecf1;
    color: #0c5460;
}

.status-working {
    background: #d4edda;
    color: #155724;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
}

.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-woods-green), var(--deep-woods-light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Chatbot Styles */
.chatbot-messages {
    height: 400px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 1rem;
    background: #f8f9fa;
    margin-bottom: 1rem;
}

.chatbot-message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    max-width: 80%;
}

.chatbot-message.user {
    background: var(--primary-color);
    color: white;
    margin-left: auto;
}

.chatbot-message.bot {
    background: white;
    border: 1px solid #dee2e6;
    margin-right: auto;
}

.chatbot-input {
    display: flex;
    gap: 0.5rem;
}

.chatbot-input .form-control {
    flex: 1;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--deep-woods-green), var(--deep-woods-light-green));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--deep-woods-light-green), var(--deep-woods-green));
    transform: translateY(-2px);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color), #e0a800);
    border: none;
    color: var(--dark-color);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #e0a800, var(--warning-color));
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .service-card, .tracking-card, .booking-card, .contact-card {
        padding: 1.5rem;
    }
    
    .service-icon, .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .chatbot-messages {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 120px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid var(--danger-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--deep-woods-dark), var(--deep-woods-green)) !important;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--warning-color) !important;
}

.social-links .btn {
    transition: all 0.3s ease;
}

.social-links .btn:hover {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: var(--dark-color) !important;
    transform: translateY(-2px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--deep-woods-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-woods-light-green);
}

/* Navigation Logo Styles */
.navbar-logo {
    height: 40px;
    width: auto;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
}

/* Reviews Section Styles */
#reviews {
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
}

.review-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.review-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.rating-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 10px;
}

.service-type {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.google-reviews-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Google Reviews Only (No Map) */
.google-reviews-only {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating-display {
    font-size: 3rem;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 10px;
}

.reviews-header .stars {
    color: #ffc107;
    font-size: 1.5rem;
}

.total-reviews {
    color: white;
    font-size: 1.1rem;
}

.reviews-preview {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.quick-review {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #2d5a27;
}

.quick-review .stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.quick-review .review-text {
    font-style: italic;
    margin-bottom: 10px;
    color: #555;
}

.quick-review .reviewer {
    font-weight: 600;
    color: #2d5a27;
    font-size: 0.9rem;
}

/* Company History Card */
.company-history-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    border: 2px solid #2d5a27;
}

.company-history-card h4 {
    color: #2d5a27;
    font-weight: bold;
}

.combined-experience {
    margin-top: 20px;
}

.experience-item {
    background: #f8f9fa;
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 8px;
    border-left: 4px solid #2d5a27;
    font-size: 0.95rem;
}

/* Company Reviews Sections */
.company-reviews-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.company-title {
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

/* About Us Section Styles */
.about-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: var(--font-family);
}

.about-image-gallery img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.hiring-section {
    border: 2px solid var(--primary-color);
}

.hiring-section img {
    max-height: 400px;
    object-fit: cover;
}

.about-text h3 {
    color: #2d5a27;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.family-announcement,
.unified-services,
.promise-statement {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border-left: 5px solid #2d5a27;
    font-family: var(--font-family);
}

.family-announcement h4,
.unified-services h4,
.promise-statement h4 {
    color: #2d5a27;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.family-announcement p,
.unified-services p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.promise-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a27;
    text-align: center;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    font-family: var(--font-family);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.service-areas-about {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e9ecef;
    font-family: var(--font-family);
}

.service-areas-about h5 {
    color: #2d5a27;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-areas-about p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.service-towns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.town-badge {
    background: #2d5a27;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-family);
}

/* Careers Section Styles */
.careers-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: var(--font-family);
}

.careers-intro h3 {
    color: #2d5a27;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.careers-intro .lead {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.job-openings h4 {
    color: #2d5a27;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.job-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid #2d5a27;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-title {
    color: #2d5a27;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

.job-type {
    background: #2d5a27;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.job-requirements li {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.why-deep-woods {
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
}

.why-deep-woods h4,
.why-deep-woods h5 {
    color: white;
    font-weight: 600;
}

.benefits-list {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit-item i {
    color: #ffc107;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.benefit-item h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.apply-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.apply-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.embed-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 40px 30px;
    border: 2px dashed #2d5a27;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placeholder-icon {
    margin-bottom: 20px;
}

.embed-placeholder h5 {
    color: #2d5a27;
    margin-bottom: 15px;
}

.embed-instructions {
    background: rgba(45, 90, 39, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #2d5a27;
}

.embed-instructions p {
    margin: 0;
    color: #555;
}

.embed-instructions strong {
    color: #2d5a27;
}

.review-card {
    background: white;
    color: #333;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-card .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.reviewer-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 5px;
}

.review-source {
    font-size: 0.9rem;
    color: #666;
}

/* AI Chatbot Styles - Provider selection removed for security */

/* Service Areas Map Styles */
.map-container {
    min-height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Hide any unwanted text from Google Maps components */
.map-container .gm-style-iw,
.map-container .gm-style-iw-d,
.map-container .gm-style-iw-c {
    display: none !important;
}

/* Hide any map control text that might appear */
.map-container .gmp-map-control,
.map-container .map-control,
.map-container [role="button"] {
    display: none !important;
}

/* Hide any text elements that might contain "Interactive Service Areas Map" */
.map-container *:contains("Interactive Service Areas Map"),
.map-container *[title*="Interactive Service Areas Map"],
.map-container *[aria-label*="Interactive Service Areas Map"] {
    display: none !important;
}

/* Hide any potential map title or label text */
.map-container .map-title,
.map-container .map-label,
.map-container .gmp-title {
    display: none !important;
}

/* Google Maps Extended Components Styling */
gmp-map {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
}

.place-picker-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
}

gmpx-place-picker {
    width: 100%;
    min-width: 300px;
}

/* Business Marker Styling */
.business-marker {
    background: #007bff;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 123, 255, 0.8);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    }
}

/* Service Area Marker Styling */
.service-area-marker {
    background: #28a745;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

.service-area-marker.extended {
    background: #ffc107;
    color: #333;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

/* Map Info Window Styling */
.map-info-window {
    padding: 15px;
    font-family: 'Inter', sans-serif;
    max-width: 250px;
}

.map-info-window h6 {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.map-info-window p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

.map-info-window i {
    width: 16px;
    text-align: center;
}

/* Coverage Info Styling */
.coverage-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid #007bff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.coverage-info h5 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.coverage-info ul {
    margin-bottom: 0;
}

.coverage-info li {
    padding: 4px 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.coverage-info li:hover {
    color: #007bff;
}

/* Google Maps Custom Styles */
.gm-style-iw {
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.gm-style-iw-d {
    overflow: hidden !important;
    border-radius: 12px !important;
}

/* House Call Pro Online Booking Widget Styles */
.hcp-booking-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.hcp-button {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hcp-button:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.hcp-button:active {
    transform: translateY(0);
}

.booking-widget-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.booking-features .feature-item {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.booking-features .feature-item:hover {
    transform: translateY(-5px);
}

.booking-features .feature-item i {
    transition: color 0.3s ease;
}

.booking-features .feature-item:hover i {
    color: #0056b3 !important;
}

.booking-alternatives {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* Animation for booking widget appearance */
.booking-widget-container {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Area Town Badges */
.service-towns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.town-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.town-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.town-badge:first-child {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    font-weight: 600;
}

.town-badge:first-child:hover {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

/* Responsive adjustments for town badges */
@media (max-width: 768px) {
    .service-towns {
        gap: 6px;
        margin: 15px 0;
    }
    
    .town-badge {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/* Mobile Optimization Styles */
@media (max-width: 768px) {
    /* Navigation improvements */
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-logo {
        width: 30px;
        height: 30px;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
    }
    
    /* Hero section mobile optimization */
    .hero-section {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-heading {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-section .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-section .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .hero-image {
        margin-top: 2rem;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 250px;
        height: auto;
    }
    
    /* Emergency banner mobile */
    .emergency-banner {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }
    
    /* Services section mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.3rem;
    }
    
    .service-image {
        height: 150px;
    }
    
    .about-image-gallery img {
        max-height: 250px;
    }
    
    .hiring-section img {
        max-height: 300px;
    }
    
    /* Map container mobile */
    .map-container {
        min-height: 400px;
        margin: 0 -15px;
        border-radius: 0;
    }
    
    gmp-map {
        height: 400px;
        border-radius: 0;
    }
    
    .place-picker-container {
        margin: 10px;
        padding: 10px;
    }
    
    gmpx-place-picker {
        min-width: 250px;
    }
    
    /* Service area info mobile */
    .coverage-info {
        padding: 1rem;
    }
    
    .coverage-info h5 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .coverage-info ul {
        columns: 2;
        column-gap: 1rem;
    }
    
    /* Reviews section mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .google-reviews-widget {
        padding: 1rem;
    }
    
    .reviews-header {
        margin-bottom: 1.5rem;
    }
    
    .rating-display {
        font-size: 2rem;
    }
    
    .reviews-preview .row {
        margin: 0;
    }
    
    .reviews-preview .col-md-6 {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    /* About section mobile */
    .about-content {
        padding: 1rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text .lead {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Contact section mobile */
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
    
    /* Chatbot modal mobile */
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-content {
        border-radius: 0.5rem;
    }
    
    .chatbot-messages {
        max-height: 400px;
        padding: 1rem;
    }
    
    .chatbot-message {
        padding: 0.75rem;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .quick-questions {
        margin-bottom: 1rem;
    }
    
    .quick-questions .btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .chatbot-input-group {
        padding: 1rem;
    }
    
    .chatbot-input-group .btn {
        padding: 0.75rem 1rem;
    }
    
    /* Footer mobile */
    .footer-content {
        text-align: center;
        padding: 2rem 0;
    }
    
    .footer-links {
        margin: 1rem 0;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
        padding: 0.5rem;
    }
    
    .social-links {
        margin: 1rem 0;
    }
    
    .social-links a {
        margin: 0 0.5rem;
        font-size: 1.5rem;
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .service-image {
        height: 120px;
    }
    
    .about-image-gallery img {
        max-height: 200px;
    }
    
    .hiring-section img {
        max-height: 250px;
    }
    
    .display-4 {
        font-size: 2.2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .service-towns {
        gap: 4px;
    }
    
    .town-badge {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .coverage-info ul {
        columns: 1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-dialog {
        margin: 0.25rem;
        max-width: calc(100% - 0.5rem);
    }
    
    .chatbot-messages {
        max-height: 300px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .town-badge:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .booking-features .feature-item:hover {
        transform: none;
    }
}

/* Touch-friendly interactions */
.touch-device .btn,
.touch-device .nav-link,
.touch-device .town-badge {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.touch-device .btn:active,
.touch-device .nav-link:active,
.touch-device .town-badge:active {
    transform: scale(0.98);
}

/* Custom viewport height for mobile browsers */
:root {
    --vh: 1vh;
}

.hero-section {
    min-height: calc(var(--vh, 1vh) * 100);
}

/* Improved chatbot modal for mobile */
.chatbot-messages {
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.chatbot-input-group {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 1px solid #dee2e6;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Improve button spacing */
    .service-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .service-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Better text wrapping */
    .combined-services {
        text-align: center;
    }
    
    .combined-services small {
        display: block;
        line-height: 1.4;
    }
    
    .combined-services .mx-3 {
        display: none;
    }
    
    /* Improve contact cards */
    .contact-card {
        margin-bottom: 1.5rem;
    }
    
    /* Better footer layout */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links li {
        margin: 0;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        min-height: -webkit-fill-available;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
    
    .chatbot-messages {
        -webkit-overflow-scrolling: touch;
    }
}

/* Clickable Town Badges */
.town-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.town-badge {
    background: linear-gradient(135deg, var(--deep-woods-green), var(--deep-woods-light-green));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.town-badge:hover {
    background: linear-gradient(135deg, var(--deep-woods-light-green), var(--deep-woods-green));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
    border-color: var(--deep-woods-accent);
}

.town-badge::before {
    content: "📍";
    font-size: 0.8rem;
}

.service-towns-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .town-badges {
        gap: 0.3rem;
    }
    
    .town-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}



/* Modern Weather Information Section */
.weather-info-modern {
    background: linear-gradient(135deg, var(--deep-woods-green) 0%, var(--deep-woods-light-green) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.weather-info-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.weather-icon-container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.weather-icon-container i {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.weather-title {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.weather-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.help-title {
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.help-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.seasonal-prep-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.btn-call-primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    min-width: 200px;
}

.btn-call-primary:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.6);
    color: white;
}

.btn-chat-secondary {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    border: none;
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    min-width: 200px;
}

.btn-chat-secondary:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ffc107 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.6);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .weather-info-modern {
        padding: 2rem 1.5rem;
        margin: 0 -15px;
        border-radius: 15px;
    }
    
    .weather-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .weather-description {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .weather-icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .help-title {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .help-description {
        text-align: center;
    }
    
    .seasonal-prep-buttons {
        align-items: center;
    }
    
    .btn-call-primary,
    .btn-chat-secondary {
        width: 100%;
        max-width: 250px;
    }
}



/* Modern Seasonal Tips Section */
.tips-header-modern {
    background: linear-gradient(135deg, var(--deep-woods-green) 0%, var(--deep-woods-light-green) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(45, 90, 39, 0.3);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.tips-header-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.tips-title {
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.tips-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Modern Seasonal Cards */
.seasonal-card-modern {
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.seasonal-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.winter-card {
    background: linear-gradient(135deg, var(--deep-woods-green) 0%, var(--deep-woods-light-green) 100%);
}

.summer-card {
    background: linear-gradient(135deg, var(--deep-woods-green) 0%, var(--deep-woods-light-green) 100%);
}

.seasonal-header-modern {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.seasonal-header-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.seasonal-icon-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.winter-icon {
    background: rgba(255, 255, 255, 0.2);
}

.summer-icon {
    background: rgba(255, 255, 255, 0.2);
}

.seasonal-icon-container i {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.seasonal-title {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.seasonal-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.seasonal-content-modern {
    background: white;
    padding: 2rem;
    border-radius: 0 0 20px 20px;
}

.tips-category {
    margin-bottom: 2rem;
}

.tips-category:last-child {
    margin-bottom: 0;
}

.category-title {
    color: #333;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.category-title i {
    color: var(--deep-woods-green);
}

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

.tips-list li {
    border-left: none !important;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tips-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tips-list li i {
    color: var(--deep-woods-green);
    font-weight: bold;
}

.tips-list li strong {
    color: #333;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tips-header-modern {
        padding: 2rem 1.5rem;
        margin: 0 -15px 3rem -15px;
        border-radius: 15px;
    }
    
    .tips-title {
        font-size: 2rem;
    }
    
    .tips-subtitle {
        font-size: 1.1rem;
    }
    
    .seasonal-card-modern {
        margin-bottom: 2rem;
    }
    
    .seasonal-header-modern {
        padding: 1.5rem;
    }
    
    .seasonal-content-modern {
        padding: 1.5rem;
    }
    
    .seasonal-icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .seasonal-title {
        font-size: 1.5rem;
    }
    
    .seasonal-description {
        font-size: 1rem;
    }
    
    .tips-list li {
    border-left: none !important;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}


/* Force remove all borders from tips list items */
.seasonal-card-modern .tips-list li,
.summer-card .tips-list li,
.winter-card .tips-list li {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Additional aggressive border removal */
.tips-list * {
    border-left: none !important;
}
.seasonal-content-modern * {
    border-left: none !important;
}

/* Enhanced Modern Seasonal Tips Styles */
.seasonal-header-modern {
    padding: 2rem;
    text-align: center;
    position: relative;
    color: white;
}

.seasonal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.seasonal-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    color: white;
    margin-bottom: 0;
}

.seasonal-icon-container {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.seasonal-icon-container i {
    font-size: 2.5rem;
    color: white;
}

.seasonal-content-modern {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.modern-tip-section {
    margin-bottom: 2rem;
}

.modern-tip-section:last-child {
    margin-bottom: 0;
}

.tip-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--deep-woods-green);
}

.tip-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--deep-woods-green), var(--deep-woods-light-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tip-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.tip-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-woods-green);
    margin: 0;
}

.modern-tips-grid {
    display: grid;
    gap: 1rem;
}

.modern-tip-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--deep-woods-green);
}

.modern-tip-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.modern-tip-item .tip-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--deep-woods-green), var(--deep-woods-light-green));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.modern-tip-item .tip-icon i {
    font-size: 1.1rem;
    color: white;
}

.modern-tip-item .tip-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-woods-green);
    margin-bottom: 0.25rem;
}

.modern-tip-item .tip-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.weather-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.weather-icon-container i {
    font-size: 2rem;
    color: white;
}

.weather-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.weather-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-call-primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-call-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
}

.btn-chat-secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-chat-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .seasonal-header-modern {
        padding: 1.5rem;
    }
    
    .seasonal-icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .seasonal-icon-container i {
        font-size: 2rem;
    }
    
    .seasonal-title {
        font-size: 1.5rem;
    }
    
    .seasonal-content-modern {
        padding: 1.5rem;
    }
    
    .modern-tip-item {
        padding: 0.75rem;
    }
    
    .tip-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .tip-icon-wrapper i {
        font-size: 1.25rem;
    }
    
    .action-buttons {
        gap: 0.75rem;
    }
    
    .btn-call-primary,
    .btn-chat-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

