*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1e3a5f;
    --primary-dark: #0f2744;
    --primary-light: #2c5282;
    --secondary: #3498db;
    --accent: #27ae60;
    --text: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #e9ecef;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--gray-light);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* HEADER */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo-image { height: 50px; width: auto; }
.nav { display: flex; gap: 2rem; align-items: center; }
.nav a { font-weight: 500; font-size: 0.9rem; color: var(--text); transition: var(--transition); }
.nav a:hover { color: var(--secondary); }
.nav-cta {
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    color: var(--white) !important; padding: 0.6rem 1.5rem;
    border-radius: 25px; font-weight: 600 !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin: 0.25rem;
}
.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(52,152,219,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(52,152,219,0.5); }
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover { background: var(--white); color: var(--primary); }

/* SECTIONS */
.section { padding: 4rem 5%; }

/* SERVICE SINGLE PAGE */
.single-service { padding-top: 70px; }
.service-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
}
.service-hero-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.service-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(15,39,68,0.4) 0%, rgba(15,39,68,0.85) 100%);
    z-index: 1;
}
.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5% 3rem;
    color: var(--white);
    width: 100%;
}
.service-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.service-hero-content h1 span { color: var(--secondary); }
.service-hero-subtitle { font-size: 1.2rem; opacity: 0.95; max-width: 700px; }
.service-content { background: var(--white); }
.service-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}
.service-main h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}
.service-main h2:first-child { margin-top: 0; }
.service-main h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 1.5rem 0 0.75rem;
    font-weight: 700;
}
.service-main p { color: var(--text); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.05rem; }
.service-main ul { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.service-main ul li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text);
    line-height: 1.7;
}
.service-main ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}
.service-features-box {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}
.service-features-box h2 { margin-top: 0; }
.service-cta-box {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 2.5rem 0;
}
.service-cta-box h2 { color: var(--white); margin-top: 0; }
.service-cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.service-sidebar { position: sticky; top: 90px; align-self: start; }
.sidebar-widget {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}
.sidebar-widget h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 1rem; font-weight: 700; }
.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li { padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: var(--text); font-size: 0.9rem; transition: var(--transition); display: block; }
.sidebar-widget ul li a:hover { color: var(--secondary); padding-left: 5px; }
.cta-widget { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); }
.cta-widget h3 { color: var(--white); }
.cta-widget p { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin-bottom: 1rem; }
.cta-widget .btn { width: 100%; }

/* LOCATION PAGES */
.location-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 8rem 5% 4rem;
    text-align: center;
}
.location-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.location-hero h1 span { color: var(--secondary); }
.location-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }
.location-content { max-width: 1100px; margin: 0 auto; padding: 4rem 5%; }
.location-intro {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    border-left: 5px solid var(--secondary);
}
.location-intro h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.location-intro p { line-height: 1.8; margin-bottom: 1rem; }
.location-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.location-service-item {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray);
    text-align: center;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}
.location-service-item:hover { background: var(--secondary); color: var(--white); transform: translateY(-3px); }
.location-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 2rem;
}
.location-cta h2 { color: var(--white); }
.location-cta p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }

/* FOOTER */
.footer { background: var(--primary-dark); color: var(--white); padding: 4rem 5% 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.footer-logo { height: 80px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; }
.footer h4 { font-size: 1rem; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.75rem; }
.footer ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer ul li a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .service-content-wrapper { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .header { padding: 0 4%; height: 60px; }
    .logo-image { height: 40px; }
    .footer-logo { height: 60px; }
    .service-hero-content h1 { font-size: 2rem; }
    .service-hero-subtitle { font-size: 1rem; }
    .service-content-wrapper { padding: 2.5rem 4%; gap: 2rem; }
    .service-main h2 { font-size: 1.5rem; }
    .service-main p { font-size: 0.95rem; }
    .service-cta-box { padding: 2rem 1.5rem; }
    .service-cta-box .btn { display: block; margin: 0.5rem auto; max-width: 280px; }
    .location-hero h1 { font-size: 1.8rem; }
    .location-services { grid-template-columns: 1fr 1fr; }
    .location-content { padding: 2.5rem 4%; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer { padding: 3rem 5% 2rem; }
}
@media (max-width: 480px) {
    .header { padding: 0 3%; }
    .logo-image { height: 35px; }
    .service-hero-content { padding: 5rem 4% 2rem; }
    .service-hero-content h1 { font-size: 1.7rem; }
    .location-hero { padding: 6rem 4% 3rem; }
    .location-hero h1 { font-size: 1.5rem; }
    .location-services { grid-template-columns: 1fr; }
    .location-content { padding: 2rem 3%; }
}
