/* ==========================================================================
   OMEGA MOBILE RV REPAIR - MASTER STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    position: relative;
    gap: 2rem;
}

.logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    animation: fadeInUp 1s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.logo.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.logo img {
    height: 180px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)) brightness(1.1);
    max-width: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
}

.facebook-link {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.facebook-link:hover {
    color: #1877f2;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.facebook-link svg {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: absolute;
    right: 20px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================================================
   HERO SECTIONS (SHARED STYLES)
   ========================================================================== */

.hero,
.about-hero,
.services-hero,
.contact-hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('rv.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 70px;
}

.hero h1,
.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    line-height: 1.1;
}

.hero h2,
.about-hero h2,
.services-hero h2,
.contact-hero h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p,
.about-hero p,
.services-hero p,
.contact-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

/* Company Name Gradient */
.company-name {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInGradient 1s ease;
}

.company-name h1 {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* RVTAA Logo */
.rvtaa-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    animation: fadeInUp 1s ease 0.6s both;
}

.rvtaa-logo img {
    height: 42px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.rvtaa-logo img:hover {
    opacity: 1;
}

/* ==========================================================================
   BUTTONS & CTA COMPONENTS
   ========================================================================== */

.cta-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

/* ==========================================================================
   CONTACT FORM COMPONENTS
   ========================================================================== */

/* Contact Form Section */
.contact-form-section {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    opacity: 0;
    visibility: hidden;
}

.contact-form-section.active {
    max-height: 900px;
    padding: 40px 0;
    opacity: 1;
    visibility: visible;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-title {
    color: white;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group select option {
    background: #333;
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.close-form {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.close-form:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Success Message */
.form-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    display: none;
}

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */

.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* ==========================================================================
   PAGE: SERVICES
   ========================================================================== */

.service-benefits {
    margin-top: 4rem;
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 15px;
}

.service-benefits h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-item h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 15px;
    color: white;
}

.contact-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ==========================================================================
   PAGE: SERVICES - PRICING SECTION
   ========================================================================== */

/* Pricing Section */
.pricing-section {
    margin-top: 4rem;
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 15px;
}

.pricing-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.main-rate {
    border: 3px solid #ff6b35;
    transform: scale(1.05);
}

.pricing-card.emergency {
    border: 2px solid #dc3545;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.pricing-card.emergency::before {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.pricing-card.emergency .pricing-icon {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
}

.pricing-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.pricing-card.emergency .price {
    color: #dc3545;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Pricing Details Grid */
.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff6b35;
}

.detail-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Money Saving Tips */
.money-saving-tips {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.money-saving-tips h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.tip-item h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tip-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Pricing CTA */
.pricing-cta {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 15px;
}

.pricing-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.pricing-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   PAGE: ABOUT US
   ========================================================================== */

.about-content {
    background: #f8f9fa;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story {
    text-align: center;
    margin-bottom: 4rem;
}

.about-story h2 {
    color: #333;
    margin-bottom: 2rem;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.values-section,
.personal-section,
.mission-section {
    margin-bottom: 3rem;
}

.values-section h2,
.personal-section h2,
.mission-section h2 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.personal-section p,
.mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Enhanced Personal Section */
.enhanced-personal-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.section-header h2 {
    color: #333;
    margin: 0;
    font-size: 2.2rem;
}

.personal-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.personal-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.personal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.personal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.personal-card.adventure::before {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.personal-card.service::before {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
}

.personal-card.understanding::before {
    background: linear-gradient(45deg, #17a2b8, #6610f2);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.personal-card.adventure .card-icon {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.personal-card.service .card-icon {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
}

.personal-card.understanding .card-icon {
    background: linear-gradient(45deg, #17a2b8, #6610f2);
}

.personal-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.personal-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Enhanced Mission Section */
.enhanced-mission-section {
    margin-bottom: 3rem;
}

.mission-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.mission-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.mission-header h2 {
    color: #333;
    margin: 0;
    font-size: 2.5rem;
}

/* UPDATED: Centered mission content layout */
.mission-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-text {
    width: 100%;
}

.mission-statement {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.mission-point:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.point-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.mission-point span {
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: left;
}

/* ==========================================================================
   PAGE: CONTACT
   ========================================================================== */

.contact-content {
    background: #f8f9fa;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.phone-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #f7931e;
    text-decoration: underline;
}

.email-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #f7931e;
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-form-wrapper .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-wrapper .form-group label {
    display: block;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group select:focus,
.contact-form-wrapper .form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.contact-form-wrapper .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-wrapper .form-group label {
    color: #333 !important;
    font-weight: 500;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea {
    background: white !important;
    color: #333 !important;
    border: 2px solid #e9ecef;
}

.contact-form-wrapper .form-group input::placeholder,
.contact-form-wrapper .form-group textarea::placeholder {
    color: #999 !important;
}

.service-area {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-area h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-area p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.location-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    color: #666;
    font-weight: 500;
}

.emergency-banner {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.emergency-banner h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.emergency-banner p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.emergency-phone {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.emergency-phone:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInGradient {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Mobile Background Fix */
@media (max-width: 768px) {
    .hero,
    .about-hero,
    .services-hero,
    .contact-hero {
        background-attachment: scroll;
        min-height: 110vh;
        height: auto;
    }
}

/* Tablet Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    /* Mobile social links */
    .social-links {
        position: fixed;
        top: 20px;
        right: 80px;
        z-index: 1001;
    }

    .hero h1,
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .hero h2,
    .about-hero h2,
    .services-hero h2,
    .contact-hero h2 {
        font-size: 2rem;
    }

    .hero p,
    .about-hero p,
    .services-hero p,
    .contact-hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        align-items: center;
    }

    .form-actions .btn {
        width: 200px;
    }

    .about-grid,
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-locations {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }

    /* Mobile responsive for enhanced sections */
    .enhanced-personal-section {
        padding: 2rem 1rem;
    }
    
    .personal-content-grid {
        grid-template-columns: 1fr;
    }
    
    .personal-card {
        padding: 2rem;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .mission-content-centered {
        text-align: center;
    }
    
    .mission-points {
        align-items: center;
    }
    
    .mission-point {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.5rem;
    }
    
    .mission-point span {
        text-align: center;
    }
    
    .section-header h2,
    .mission-header h2 {
        font-size: 1.8rem;
    }
    
    .mission-statement {
        font-size: 1.1rem;
    }

    /* Mobile responsive for pricing section */
    .pricing-section {
        padding: 3rem 1rem;
        margin-top: 3rem;
    }
    
    .pricing-grid,
    .pricing-details,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .money-saving-tips {
        padding: 2rem;
    }
    
    .pricing-cta {
        padding: 2rem 1rem;
    }
}

/* Mobile Styles */
/* ==========================================================================
   MOBILE RESPONSIVE FIXES - Add these to your styles.css
   ========================================================================== */

/* Fix: Logo sizing on very small screens */
@media (max-width: 390px) {
    .logo img {
        height: 100px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
}

/* Fix: Mobile form layouts */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .contact-form-wrapper .form-group input,
    .contact-form-wrapper .form-group select,
    .contact-form-wrapper .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Fix hero text sizing */
    .hero h1, .about-hero h1, .services-hero h1, .contact-hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero h2, .about-hero h2, .services-hero h2, .contact-hero h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
}

/* Fix: Footer mobile layout - Replace existing footer mobile styles */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-company-info {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem 0;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .company-details h3 {
        font-size: 1.2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .contact-item-footer {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Fix: Very small mobile screens */
@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rv-help-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        display: block;
        text-align: center;
        width: 100%;
        max-width: 200px;
        margin: 0.8rem auto 0;
    }
    
    /* Fix hero content padding */
    .hero-content {
        padding: 0 15px;
        margin-top: 50px;
    }
    
    /* Fix service cards on mobile */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Fix contact items */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    /* Fix buttons on mobile */
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto;
        display: block;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Fix: Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero h1, .about-hero h1, .services-hero h1, .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2, .about-hero h2, .services-hero h2, .contact-hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p, .about-hero p, .services-hero p, .contact-hero p {
        font-size: 1rem;
    }
    
    .logo img {
        height: 80px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }

    .social-links {
        right: 45px;
    }
}

/* Fix: Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero, .about-hero, .services-hero, .contact-hero {
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        margin-top: 60px;
        padding: 2rem 20px;
    }
    
    .logo img {
        height: 60px;
    }

    .social-links {
        right: 80px;
    }
}

/* Fix: Ensure touch targets are adequate */
@media (max-width: 768px) {
    .nav-link, .btn, .phone-link, .email-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .hamburger {
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
    }

    .facebook-link {
        min-height: 44px;
        min-width: 44px;
        width: 44px;
        height: 44px;
    }
    
    .emergency-phone, .rv-help-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Fix: Prevent horizontal scroll */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .footer-container, 
    .contact-container, 
    .about-container,
    .form-container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .section {
        padding: 60px 15px;
    }
}

/* Fix: iOS Safari specific issues */
@supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom */
        border-radius: 0; /* Removes default iOS styling */
    }
    
    .btn {
        border-radius: 25px; /* Restore button styling */
    }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section h5 {
    color: #ff6b35;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Company Info Section - Now at bottom */
.footer-company-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.footer-logo img {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.company-details h3 {
    color: white;
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
}

.company-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.footer-certifications {
    flex-shrink: 0;
}

/* Service Area Styles */
.footer-section ul.footer-links li:not(:last-child) {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
}

/* RV Help Button */
.rv-help-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rv-help-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.8rem;
}

.rv-help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Remove old emergency footer styles */

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #ff6b35;
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -8px;
}

/* Service Area Footer */
.service-area-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.cert-logo {
    height: 40px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.cert-logo:hover {
    opacity: 1;
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 2rem;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.8rem;
}

.contact-icon-small {
    font-size: 1rem;
    width: 20px;
}

.contact-item-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-footer a:hover {
    color: #ff6b35;
}

.contact-item-footer span:not(.contact-icon-small) {
    color: rgba(255, 255, 255, 0.8);
}

/* Emergency Footer Button */
.emergency-btn-footer {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.emergency-btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff6b35;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   FOOTER RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-company-info {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .contact-item-footer {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .company-details h3 {
        font-size: 1.2rem;
    }
    
    .rv-help-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .emergency-footer {
        padding: 1rem;
    }
    
    .footer-logo h3 {
        font-size: 1.1rem;
    }
}