/* ===================================
   Santa Clarita Handyman Pros - Stylesheet
   =================================== */

/* CSS Variables - Brand Colors */
:root {
    --navy-blue: #1B2A49;
    --light-gray: #F4F6F9;
    --warm-yellow: #FFC845;
    --white: #FFFFFF;
    --dark-text: #2C3E50;
    --light-text: #6C757D;
    --border-color: #E0E6ED;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.12);
}
@view-transition {
    navigation: auto;
}
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background: var(--white);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-blue);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

/* SVG icon helper — sized via font-size, colored via currentColor */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    line-height: 1;
}

.icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.logo i {
    color: var(--warm-yellow);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--navy-blue);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--warm-yellow);
}

.nav-phone {
    background: var(--warm-yellow);
    color: var(--navy-blue) !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 5px;
    font-weight: 600;
}

.nav-phone:hover {
    background: #FFD66B;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy-blue);
    transition: 0.3s;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #2C4A72 100%);
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="rgba(255,200,69,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 200, 69, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-feature i {
    color: var(--warm-yellow);
    font-size: 1.5rem;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--warm-yellow);
    color: var(--navy-blue);
}

.btn-primary:hover {
    background: #FFD66B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 200, 69, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy-blue);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

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

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

/* ===================================
   Services Preview
   =================================== */
.services-preview {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-blue), #2C4A72);
    color: var(--warm-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

.service-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* ===================================
   Why Choose Us
   =================================== */
.why-choose {
    background: var(--white);
}

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

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--warm-yellow);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* ===================================
   Service Areas
   =================================== */
.service-areas {
    background: var(--light-gray);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.areas-list {
    display: grid;
    gap: 1rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.area-item i {
    color: var(--warm-yellow);
    font-size: 1.25rem;
}

.area-item span {
    font-weight: 600;
    color: var(--navy-blue);
}

.areas-description h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.areas-description p {
    margin-bottom: 1rem;
    color: var(--light-text);
    line-height: 1.8;
}

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

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stars {
    color: var(--warm-yellow);
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--warm-yellow), #FFD66B);
    color: var(--navy-blue);
}

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

.cta-content h2 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--navy-blue);
    color: var(--white);
}

.cta-section .btn-primary:hover {
    background: #2C4A72;
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.cta-section .btn-secondary:hover {
    background: var(--navy-blue);
    color: var(--white);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--warm-yellow);
    font-size: 1.5rem;
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    color: var(--warm-yellow);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    opacity: 0.9;
}

.footer-column ul li a:hover {
    color: var(--warm-yellow);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info i {
    color: var(--warm-yellow);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--warm-yellow);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #2C4A72 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ===================================
   Services Page
   =================================== */
.services-detailed {
    background: var(--white);
}

.service-detail {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--navy-blue), #2C4A72);
    color: var(--warm-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: var(--shadow-hover);
}

.service-detail-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-detail-content > p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 5px;
}

.feature-item i {
    color: var(--warm-yellow);
    font-size: 1.125rem;
}

.service-guarantee {
    background: var(--light-gray);
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.guarantee-content > p {
    font-size: 1.125rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.guarantee-item i {
    font-size: 2.5rem;
    color: var(--warm-yellow);
    margin-bottom: 1rem;
}

.guarantee-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.guarantee-item p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* ===================================
   About Page
   =================================== */
.about-story {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.story-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--navy-blue), #2C4A72);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-yellow);
    font-size: 5rem;
}

.story-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.8;
}

.our-values {
    background: var(--light-gray);
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--warm-yellow);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--light-text);
    line-height: 1.7;
}

.why-choose-about {
    background: var(--white);
}

.choose-grid {
    display: grid;
    gap: 2rem;
}

.choose-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}

.choose-number {
    width: 80px;
    height: 80px;
    background: var(--warm-yellow);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
}

.choose-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.choose-content p {
    color: var(--light-text);
    line-height: 1.8;
}

.our-team {
    background: var(--light-gray);
}

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

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-photo {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--navy-blue), #2C4A72);
    color: var(--warm-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--warm-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

.certifications {
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.cert-item i {
    font-size: 3rem;
    color: var(--warm-yellow);
    margin-bottom: 1rem;
}

.cert-item h4 {
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.community-involvement {
    background: var(--navy-blue);
    color: var(--white);
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.community-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

.community-content > p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.community-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.community-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.community-item i {
    color: var(--warm-yellow);
    font-size: 1.5rem;
}

/* ===================================
   Gallery Page
   =================================== */
.gallery-filter {
    background: var(--light-gray);
    padding: 2rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--dark-text);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}

.gallery-section {
    background: var(--white);
}

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

.gallery-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-blue), #2C4A72);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-yellow);
    font-size: 3rem;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.gallery-info p {
    color: var(--light-text);
    margin-bottom: 0.75rem;
}

.gallery-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.gallery-location i {
    color: var(--warm-yellow);
}

.project-stats {
    background: var(--navy-blue);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--warm-yellow);
    margin-bottom: 0.5rem;
}

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

.gallery-testimonial {
    background: var(--light-gray);
}

.gallery-testimonial .testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.gallery-testimonial i {
    font-size: 3rem;
    color: var(--warm-yellow);
    margin-bottom: 1.5rem;
}

.gallery-testimonial p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.gallery-testimonial .testimonial-author {
    border-top: 2px solid var(--border-color);
    padding-top: 1.5rem;
}

.gallery-testimonial .testimonial-author strong {
    color: var(--navy-blue);
    font-size: 1.125rem;
}

.gallery-testimonial .testimonial-author span {
    color: var(--light-text);
}

/* ===================================
   Contact Page
   =================================== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-form-wrapper > p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    font-weight: 600;
    color: var(--navy-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    display: none;
}

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

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

.contact-info-wrapper h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info-wrapper > p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--warm-yellow);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info-content a {
    color: var(--navy-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.info-content a:hover {
    color: var(--warm-yellow);
}

.info-content p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.emergency-notice {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--navy-blue);
    color: var(--white);
    border-radius: 10px;
}

.emergency-notice i {
    color: var(--warm-yellow);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.emergency-notice strong {
    display: block;
    margin-bottom: 0.25rem;
}

.emergency-notice p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.service-area-map {
    background: var(--light-gray);
}

.map-container {
    margin-bottom: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.map-placeholder iframe {
    width: 100%;
    display: block;
}

.service-areas-list {
    text-align: center;
}

.service-areas-list h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.areas-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.area-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow);
    font-weight: 600;
    color: var(--navy-blue);
}

.area-badge i {
    color: var(--warm-yellow);
}

.faq-section {
    background: var(--white);
}

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

.faq-item {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-item h3 i {
    color: var(--warm-yellow);
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.7;
}

/* ===================================
   Responsive Design
   =================================== */
@media (min-width: 768px) {
    .logo {
        font-size: 1.25rem;
    }
}
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .contact-grid,
    .story-grid,
    .areas-content {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .service-detail.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

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