/* Mvelase Pest Control - Global Stylesheet */
/* Updated with Deep Red Color Scheme & Improved Mobile Menu */

/* CSS Variables for consistent theming - DEEP RED EDITION */
:root {
    --primary-color: #8B0000;
    --secondary-color: #B22222;
    --accent-color: #ffd700;
    --accent-light: #ffed4e;
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition-fast: 0.3s;
    --transition-medium: 0.5s;
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    --border-radius-xl: 50px;
    --max-width: 1200px;
    --header-height: 80px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* Header & Navigation - DEEP RED */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.25rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

header.scrolled {
    padding: 0.75rem 0;
    background: rgba(139, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform var(--transition-fast);
    z-index: 1001;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: opacity var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover img {
    opacity: 0.9;
}

/* Mobile Menu Toggle - IMPROVED */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border: none;
    transition: all var(--transition-fast);
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.2);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all var(--transition-fast);
    border-radius: 2px;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Menu - IMPROVED FOR MOBILE */
nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    transition: all var(--transition-fast);
}

nav a {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 0.75rem 0;
    font-size: 1rem;
    display: block;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-fast);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Page Header (Common across pages) - DEEP RED */
.page-header {
    margin-top: var(--header-height);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Hero Section (Homepage) - DEEP RED OVERLAY */
.hero {
    margin-top: var(--header-height);
    min-height: 90vh;
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-xl);
    font-weight: bold;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
    background: var(--accent-light);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 3rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
    font-size: 2.5rem;
    margin-bottom: 0;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-medium);
    position: relative;
    z-index: 1;
}

/* Stats Section - DEEP RED */
.stats {
    background: var(--primary-color);
    color: white;
    padding: 5rem 3rem;
    text-align: center;
}

.stats-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.stat-item {
    padding: 1.5rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

/* Testimonials */
.testimonial {
    background: var(--bg-white);
    padding: 4rem 2rem;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-medium);
    position: relative;
    padding: 2rem;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -1rem;
    left: 0;
    font-family: Georgia, serif;
    opacity: 0.5;
}

/* Service Cards (Services Page) */
.service-category {
    margin-bottom: 5rem;
}

.service-category h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    border-left: 5px solid var(--accent-color);
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-content li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-content li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-color);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: 5rem 0;
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.highlight-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.highlight-box p {
    position: relative;
    z-index: 1;
}

/* CTA Section - DEEP RED */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 5rem 3rem;
    text-align: center;
    border-radius: var(--border-radius-lg);
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2,
.cta-section p {
    position: relative;
    z-index: 1;
}

/* About Page Specific */
.story-section {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
}

.story-section h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.story-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.story-section p {
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    border-top: 4px solid var(--secondary-color);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-fast);
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(-10deg);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.coverage-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4.5rem 3rem;
    border-radius: var(--border-radius-lg);
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.coverage-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.coverage-item {
    background: rgba(255,255,255,0.1);
    padding: 1.3rem;
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
    font-weight: 500;
    font-size: 1.05rem;
}

.coverage-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.team-cert-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .team-cert-wrapper {
        grid-template-columns: 1fr;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.team-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-fast);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform var(--transition-fast);
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card:hover .team-avatar {
    transform: scale(1.1) rotate(5deg);
}

.team-section,
.certifications {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    line-height: 1.5;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: bold;
    color: var(--text-medium);
    padding: 1.2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.cert-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    margin-bottom: 4.5rem;
}

.contact-info {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.8rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    border-left: 4px solid transparent;
}

.info-item:hover {
    transform: translateX(10px);
    background: #ffe4e4;
    border-left-color: var(--accent-color);
}

.info-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    transition: transform var(--transition-fast);
}

.info-item:hover .info-icon {
    transform: scale(1.2) rotate(-10deg);
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
}

.emergency-banner {
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    margin-bottom: 4.5rem;
    box-shadow: 0 5px 20px rgba(139,0,0,0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% { box-shadow: 0 5px 20px rgba(139,0,0,0.3); }
    50% { box-shadow: 0 5px 30px rgba(139,0,0,0.5); }
}

.emergency-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.emergency-banner .phone {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--accent-color);
    display: inline-block;
    transition: transform var(--transition-fast);
}

.emergency-banner:hover .phone {
    transform: scale(1.1);
}

.map-section {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.map-section h2 {
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.map-placeholder {
    background: linear-gradient(135deg, #ffe4e4 0%, #ffc4c4 100%);
    height: 450px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    border: 2px dashed var(--secondary-color);
    transition: all var(--transition-fast);
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #ffc4c4 0%, #ffb4b4 100%);
    border-color: var(--primary-color);
}

.hours-section {
    margin-top: 4.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.hours-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--accent-color);
    transition: all var(--transition-fast);
}

.hours-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hours-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Footer - DEEP RED DARK */
footer {
    background: #4a0000;
    color: white;
    padding: 4rem 3rem 1.5rem;
    text-align: center;
    margin-top: 5rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section a {
    color: #ccc;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid var(--secondary-color);
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.copyright a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Contact Wrapper - Two Column Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem;
}

.contact-info-column {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.contact-info-column h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.detail-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
    transition: all var(--transition-fast);
}

.detail-item:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.detail-item h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-item h3::before {
    content: attr(data-icon);
    font-size: 1.4rem;
    display: inline-block;
    margin-right: 0.3rem;
}

.detail-item p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin: 0;
}

.detail-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.detail-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.addresses-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent-color);
}

.address-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
    transition: all var(--transition-fast);
}

.address-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.address-item h3 {
    color: var(--secondary-color);
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.address-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form-column {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-column h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    color: var(--text-medium);
    font-weight: 600;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(178, 34, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-color);
    border: none;
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Carousel Styles */
.carousel-section {
    background: var(--bg-light);
    padding: 5rem 3rem;
    margin: 4rem 0;
}

.hero .carousel-container {
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.carousel-container:not(.hero .carousel-container) {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero .carousel-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0;
    min-height: 90vh;
    height: 90vh;
    width: 100%;
    position: relative;
    flex: 0 0 100%;
}

/* Carousel slides are now controlled via transform on wrapper */
.carousel-slide {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.hero .carousel-slide::before {
    opacity: 0;
}

.slide-content {
    flex: 1;
    z-index: 1;
    max-width: 60%;
}

.hero .slide-content {
    max-width: 800px;
    color: white;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero .slide-icon {
    display: none;
}

.slide-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .slide-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero .slide-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
}

.slide-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-fast);
    background: transparent;
}

.hero .slide-link {
    color: var(--primary-color);
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.slide-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.hero .slide-link:hover {
    background: var(--accent-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.slide-icon {
    flex: 1;
    text-align: center;
    z-index: 1;
    font-size: 12rem;
    opacity: 0.8;
    transition: transform var(--transition-fast);
}

.hero .slide-icon {
    font-size: 15rem;
    opacity: 0.6;
}

.carousel-slide.active .slide-icon {
    animation: bounce-icon 0.6s ease-in-out;
}

@keyframes bounce-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Carousel Navigation */
.carousel-nav {
    display: none;
}

.carousel-nav-hidden {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 0, 0, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    display: none;
}

.indicator-hidden {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero .indicator {
    border-color: white;
}

.indicator.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
}

.hero .indicator.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.indicator:hover {
    border-color: var(--accent-color);
}

/* ===== RESPONSIVE DESIGN - IMPROVED MOBILE MENU ===== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    /* Show hamburger menu */
    .menu-toggle {
        display: flex;
    }
    
    /* Mobile menu overlay */
    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 1002;
    }
    
    nav ul.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav a {
        font-size: 1.5rem;
        padding: 1rem;
        display: block;
        border-bottom: 2px solid rgba(255,255,255,0.1);
    }
    
    nav a::after {
        display: none;
    }
    
    nav a:hover {
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
    }
    
    .hero {
        min-height: 70vh;
        height: auto;
    }
    
    .hero .carousel-container {
        min-height: 70vh;
        height: auto;
    }
    
    .hero .carousel-slide {
        min-height: 70vh;
        height: auto;
    }
    
    .hero .slide-content {
        max-width: 100%;
        width: 100%;
        padding: 6rem 1.5rem 4rem;
        min-height: 70vh;
        box-sizing: border-box;
    }
    
    .hero .slide-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero .slide-content p {
        font-size: 1rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .contact-info-column {
        position: relative;
        top: 0;
        sticky: none;
    }
    
    .carousel-slide {
        flex-direction: column;
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .slide-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-icon {
        font-size: 8rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .story-section,
    .contact-info,
    .contact-form,
    .contact-info-column,
    .contact-form-column {
        padding: 2rem;
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }
    
    .contact-wrapper {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .carousel-slide {
        padding: 2rem 1rem;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-icon {
        font-size: 6rem;
    }
    
    .carousel-indicators {
        bottom: 1rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        flex-direction: column;
        align-items: center;
    }
    
    nav {
        padding: 0 1.5rem;
    }
    
    /* Hero carousel mobile fixes for small screens */
    .hero .slide-content {
        padding: 5rem 1rem 3rem;
    }
    
    .hero .slide-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Sticky WhatsApp Chat Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.whatsapp-float:hover .whatsapp-icon {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    background: white;
    color: #333;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    visibility: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Feedback Survey Section */
.feedback-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 3rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.feedback-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.feedback-container h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.feedback-intro {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feedback-question {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--accent-color);
}

.feedback-question label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Star Rating Scale */
.rating-scale {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.rating-scale label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    margin-bottom: 0;
    font-weight: normal;
}

.rating-scale label:hover {
    background: rgba(139, 0, 0, 0.1);
}

.rating-scale input[type="radio"] {
    display: none;
}

.rating-scale .star {
    font-size: 1.8rem;
    color: #ddd;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.rating-scale input[type="radio"]:checked + .star,
.rating-scale label:hover .star,
.rating-scale label:has(~ label:hover) .star,
.rating-scale label:has(input:checked) .star,
.rating-scale label:has(input:checked) ~ label .star {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-scale .rating-number {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Textarea styling for feedback */
.feedback-textarea {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: all var(--transition-fast);
    background: var(--bg-white);
}

.feedback-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
}

/* Select dropdown styling */
.feedback-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.feedback-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
}

/* Submit button */
.feedback-submit {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-color);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
    margin: 1rem auto 0;
    display: block;
    box-shadow: var(--shadow-md);
}

.feedback-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.feedback-submit:active {
    transform: translateY(-1px);
}

/* Success message */
.feedback-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.feedback-success.active {
    display: block;
}

.feedback-success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feedback-success h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feedback-success p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* Responsive feedback section */
@media (max-width: 768px) {
    .feedback-section {
        padding: 2rem 1rem;
    }
    
    .feedback-container {
        padding: 2rem 1.5rem;
    }
    
    .feedback-container h2 {
        font-size: 1.5rem;
    }
    
    .feedback-question {
        padding: 1rem;
    }
    
    .rating-scale .star {
        font-size: 1.5rem;
    }
}

/* Mobile responsive WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .cta-button,
    .whatsapp-float {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .page-header {
        margin-top: 0;
        background: white !important;
        color: black !important;
    }
}