:root {
    --primary-color: #1a5f7a;
    --primary-dark: #0d3d4d;
    --secondary-color: #f97316;
    --accent-color: #57c5b6;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8fafb;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

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

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo svg {
    width: 40px;
    height: 40px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    color: var(--text-color);
    padding: 5px 0;
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
}

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

.nav a:hover::after {
    width: 100%;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.header-phone:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.header-phone svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero.png') center top / cover no-repeat;
    opacity: 0.25;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.hero-cta:hover {
    background: #ea580c;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.section-title p {
    margin-top: 1.5rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--secondary-color);
}

.service-card a:hover {
    color: #ea580c;
}

/* Service Row with Image */
.services-with-images {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
}

.service-row:nth-child(even) {
    direction: rtl;
}

.service-row:nth-child(even) > * {
    direction: ltr;
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-row:nth-child(even) {
        direction: ltr;
    }
    
    .service-img {
        height: 150px;
    }
}

/* Local SEO Section */
.local-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.local-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.local-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.local-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.local-areas span {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Why Choose Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px;
}

.why-item svg {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.why-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.cta-phone:hover {
    background: #ea580c;
    color: var(--white);
    transform: scale(1.05);
}

.cta-phone svg {
    width: 24px;
    height: 24px;
}

/* About Page */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

.page-hero p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Services Page */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.service-detail img {
    border-radius: var(--radius);
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-detail h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-detail p {
    color: var(--text-light);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    text-align: center;
}

.contact-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.phone-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 2rem 0;
}

.phone-large a {
    color: var(--secondary-color);
}

.phone-large a:hover {
    color: #ea580c;
}

.availability {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* City Pages List */
.cities-section {
    padding: 60px 0;
}

.cities-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.city-link {
    display: block;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.city-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* City Page */
.city-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
}

.city-hero .container {
    position: relative;
    z-index: 1;
}

.city-intro {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-phone svg {
    width: 20px;
    height: 20px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

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

.footer ul a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer ul a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    text-align: center;
}

.disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    margin-top: 20px;
    border-radius: var(--radius);
}

.disclaimer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 10px 15px;
    z-index: 9999;
}

.mobile-sticky-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.mobile-sticky-bar a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .local-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .service-detail img {
        height: 180px;
    }
    
    .header .container {
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo svg {
        width: 32px;
        height: 32px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .nav a {
        font-size: 0.95rem;
    }
    
    .header-phone {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 12px 15px;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        z-index: 999;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1rem;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .nav .header-phone {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
    }
    
    .header-phone {
        display: none;
    }
    
    .mobile-sticky-bar {
        display: block;
        padding: 6px 10px;
    }
    
    .mobile-sticky-bar a {
        padding: 10px 16px;
        font-size: 0.9rem;
        max-width: 260px;
        gap: 6px;
    }
    
    .mobile-sticky-bar a svg {
        width: 16px;
        height: 16px;
    }
    
    body {
        padding-bottom: 50px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.25rem; }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-cta {
        padding: 14px 24px;
        font-size: 1rem;
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.35rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.15rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .why-item {
        padding: 20px 15px;
    }
    
    .why-item svg {
        width: 40px;
        height: 40px;
    }
    
    .why-item h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .why-item p {
        font-size: 0.875rem;
    }
    
    .faq-question {
        padding: 15px 18px;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 18px 15px;
        font-size: 0.95rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .city-link {
        padding: 12px 15px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-phone {
        padding: 14px 28px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-section h2 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .content-section ul {
        font-size: 0.95rem;
    }
    
    .service-detail {
        padding: 20px;
        gap: 20px;
    }
    
    .service-detail img {
        height: 150px;
    }
    
    .service-detail h3 {
        font-size: 1.15rem;
    }
    
    .service-detail p {
        font-size: 0.95rem;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-section p {
        font-size: 0.95rem;
    }
    
    .phone-large {
        font-size: 1.75rem;
        margin: 1.5rem 0;
    }
    
    .availability {
        padding: 8px 20px;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-bottom: 25px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 1.25rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-nav {
        text-align: center;
    }
    
    .footer-nav h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-nav ul li {
        margin-bottom: 8px;
    }
    
    .footer-nav ul a {
        font-size: 0.9rem;
    }
    
    .disclaimer {
        padding: 15px;
        margin-top: 15px;
    }
    
    .disclaimer p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }
    
    .logo svg {
        width: 28px;
        height: 28px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .city-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .phone-large {
        font-size: 1.5rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    
    .faq-question svg {
        width: 18px;
        height: 18px;
    }
    
    body {
        padding-bottom: 50px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .logo {
        font-size: 1rem;
    }
    
    .logo svg {
        width: 24px;
        height: 24px;
    }
    
    .hero h1 {
        font-size: 1.35rem;
    }
    
    .cta-phone {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

/* Print */
@media print {
    .header,
    .mobile-sticky-bar,
    .cta-phone,
    .hero-cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
}