/* Sydney Surveyor Solutions - New Design System */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* --- VARIABLES & RESET --- */
:root {
    --primary-blue: #004aad;
    --dark-blue: #002d5b;
    --text-dark: #222222;
    --text-grey: #555555;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gold: #f4c150;
    --max-width: 1240px;
    --border-radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
html { scroll-behavior: smooth; }

/* --- UTILITIES --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}
.btn:hover { background-color: #003380; color: var(--white); }
.btn.square { border-radius: 4px; }
.btn.full-width { width: 100%; }
.btn-gold { background-color: var(--gold); color: var(--text-dark); }
.btn-gold:hover { background-color: #e0ad3a; color: var(--text-dark); }

/* --- HEADER --- */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 45px; width: auto; }
.logo-text { font-weight: 800; font-size: 1.2rem; text-transform: uppercase; line-height: 1.1; color: var(--text-dark); }
.nav-links { display: flex; gap: 30px; align-items: center; list-style: none; }
.nav-links a { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; color: #333; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-blue); }
.header-cta {
    background-color: var(--dark-blue);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}
.header-cta:hover { background-color: #001f40; }
.header-cta svg { width: 18px; height: 18px; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; background: none; border: none; }

/* Dropdown */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-links .has-dropdown > a svg { transition: transform 0.3s ease; }
.nav-links .has-dropdown:hover > a svg { transform: rotate(180deg); }
.nav-links .dropdown {
    position: absolute; top: 100%; left: 0; background: var(--white);
    min-width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px; padding: 10px 0; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all 0.3s ease; list-style: none; z-index: 100;
}
.nav-links .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-links .dropdown a { display: block; padding: 12px 20px; font-weight: 500; transition: all 0.2s ease; text-transform: none; }
.nav-links .dropdown a:hover { background: var(--light-bg); padding-left: 25px; }

/* Mobile Menu Button */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-menu-btn span { display: block; width: 25px; height: 3px; background: var(--primary-blue); margin: 5px 0; transition: 0.3s; }

/* --- HERO SECTION --- */
.hero {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--white);
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.hero-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.hero-content { flex: 1; max-width: 600px; padding-top: 40px; }
.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}
.hero-content p { font-size: 1.1rem; margin-bottom: 20px; opacity: 0.95; }
.hero-features { list-style: none; margin-bottom: 30px; }
.hero-features li {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: var(--white);
}
.hero-features li::before { content: "✓"; margin-right: 10px; color: var(--gold); font-weight: bold; }
.hero-buttons { margin-top: 30px; display: flex; gap: 15px; flex-wrap: wrap; }

/* --- HERO FORM --- */
.hero-form-card {
    flex: 0 0 400px;
    background-color: var(--dark-blue);
    padding: 30px;
    border-radius: var(--border-radius);
    color: var(--white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.hero-form-card h3 { margin-bottom: 8px; font-size: 1.4rem; color: var(--white); }
.hero-form-card > p { margin-bottom: 20px; font-size: 0.9rem; opacity: 0.9; }
.form-row { display: flex; gap: 10px; margin-bottom: 10px; }
.form-group { width: 100%; margin-bottom: 12px; }
.form-group label { display: block; font-size: 0.75rem; margin-bottom: 4px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; font-size: 0.95rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold);
}
.submit-btn {
    width: 100%;
    background-color: var(--gold);
    color: var(--text-dark);
    border: none;
    padding: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.submit-btn:hover { background-color: #e0ad3a; }
.form-note { font-size: 0.8rem; text-align: center; margin-top: 15px; opacity: 0.8; }

/* --- SERVICES GRID --- */
.section-header { margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 15px; color: var(--text-dark); }
.section-header p { color: var(--text-grey); max-width: 600px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.service-card {
    background: var(--white);
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: 0.3s;
}
.service-card:hover { border-color: var(--primary-blue); box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-5px); }
.service-img {
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-content { padding: 25px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; font-weight: 700; color: var(--text-dark); }
.service-card p { color: var(--text-grey); margin-bottom: 15px; font-size: 0.95rem; line-height: 1.6; }
.read-more { color: var(--primary-blue); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; }
.read-more:hover { color: var(--dark-blue); }

/* --- WHY WORK WITH US --- */
.why-us-section { padding: 80px 0; text-align: center; background: var(--white); }
.why-us-section h2 { font-size: 2.2rem; margin-bottom: 50px; color: var(--text-dark); }
.hub-container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.hub-center {
    flex: 0 0 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    border-radius: 50%;
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
}
.hub-column { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 30px; }
.feature-box {
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 20px 30px;
    background: var(--white);
    text-align: left;
    transition: all 0.3s ease;
}
.feature-box:hover { border-color: var(--primary-blue); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.feature-box h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.feature-box p { font-size: 0.85rem; color: var(--text-grey); margin: 0; }
.dots { color: var(--gold); font-weight: bold; letter-spacing: 2px; display: block; margin-bottom: 5px; }

/* USP Grid Alternative */
.usp { padding: 80px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.usp-item { text-align: center; padding: 30px; }
.usp-icon {
    width: 70px; height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.usp-icon svg { width: 35px; height: 35px; color: var(--primary-blue); }
.usp-item h3 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 10px; font-weight: 700; }
.usp-item p { color: var(--text-grey); font-size: 0.95rem; }

/* --- TRUST / STATS SECTION --- */
.trust { padding: 80px 0; background: var(--light-bg); }
.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 60px; }
.stat-item { text-align: center; padding: 30px; background: var(--white); border-radius: var(--border-radius); }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--primary-blue); line-height: 1; margin-bottom: 10px; }
.stat-label { color: var(--text-grey); font-size: 1rem; }
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.testimonial-text { font-style: italic; color: var(--text-dark); margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar {
    width: 50px; height: 50px; background: var(--primary-blue); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 600; font-size: 1.25rem;
}
.testimonial-info strong { display: block; color: var(--primary-blue); }
.testimonial-info span { font-size: 0.9rem; color: var(--text-grey); }

/* --- CTA SECTION --- */
.cta { padding: 80px 0; background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%); color: var(--white); text-align: center; }
.cta h2 { font-size: 2.2rem; margin-bottom: 20px; }
.cta p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta .btn { background: var(--gold); color: var(--text-dark); }
.cta .btn:hover { background: #e0ad3a; }

/* --- PAGE HERO --- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.page-hero h1 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 800; }
.page-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.breadcrumb { padding: 15px 0; background: var(--light-bg); font-size: 0.9rem; }
.breadcrumb a { color: var(--text-grey); }
.breadcrumb a:hover { color: var(--primary-blue); }
.breadcrumb span { color: var(--text-dark); margin: 0 10px; }

/* --- BLOG HERO --- */
.blog-hero {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    position: relative;
}
.blog-hero::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:1; }
.blog-hero .container { position: relative; z-index: 2; }
.blog-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }

/* --- BLOG GRID --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 40px; }
.blog-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-img-thumb { height: 220px; background-color: #ddd; background-size: cover; background-position: center; }
.blog-card-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.blog-title { font-size: 1.15rem; font-weight: 700; line-height: 1.4; margin-bottom: 12px; color: var(--text-dark); }
.blog-title a { color: var(--text-dark); }
.blog-title a:hover { color: var(--primary-blue); }
.blog-meta { font-size: 0.8rem; color: #888; margin-bottom: 12px; text-transform: uppercase; font-weight: 500; }
.blog-card-content p { color: var(--text-grey); font-size: 0.95rem; margin-bottom: 15px; flex: 1; }
.blog-card-content .read-more { margin-top: auto; }

/* --- SINGLE POST LAYOUT --- */
.page-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 60px 0;
    align-items: start;
}
.post-header { margin-bottom: 30px; }
.post-header h1 { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 15px; line-height: 1.3; }
.post-meta { font-size: 0.85rem; color: var(--text-grey); margin-bottom: 20px; }

/* Post Content */
.post-content { line-height: 1.8; }
.post-content h2 { font-size: 1.5rem; color: var(--text-dark); margin: 40px 0 20px; font-weight: 700; }
.post-content h3 { font-size: 1.25rem; color: var(--text-dark); margin: 30px 0 15px; font-weight: 700; }
.post-content p { margin-bottom: 20px; color: var(--text-dark); }
.post-content ul, .post-content ol { margin: 20px 0; padding-left: 25px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 10px; color: var(--text-dark); }
.post-content a { color: var(--primary-blue); text-decoration: underline; }
.post-content a:hover { color: var(--dark-blue); }
.post-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 20px 25px;
    margin: 30px 0;
    background: var(--light-bg);
    font-style: italic;
}
.post-content table { width: 100%; border-collapse: collapse; margin: 30px 0; }
.post-content th, .post-content td { padding: 12px 15px; border: 1px solid #ddd; text-align: left; }
.post-content th { background: var(--light-bg); font-weight: 700; }

/* Quick Answer Box */
.quick-answer {
    background: var(--light-bg);
    border-left: 4px solid var(--gold);
    padding: 20px 25px;
    margin-bottom: 30px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.quick-answer strong { color: var(--primary-blue); }

/* FAQ Block */
.faq-block { margin-top: 40px; border-top: 1px solid #eee; padding-top: 30px; }
.faq-block h2 { font-size: 1.5rem; margin-bottom: 20px; color: var(--text-dark); }
.faq-item { margin-bottom: 15px; border: 1px solid #eee; border-radius: 4px; }
.faq-item summary {
    padding: 15px;
    cursor: pointer;
    font-weight: 700;
    background: #fcfcfc;
    display: flex;
    justify-content: space-between;
    list-style: none;
    color: var(--text-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; font-weight: bold; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 15px; padding-top: 0; color: var(--text-grey); line-height: 1.7; }

/* Related Posts */
.related-posts { margin-top: 60px; padding-top: 40px; border-top: 1px solid #eee; }
.related-posts h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 25px; font-weight: 700; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { background: var(--light-bg); padding: 20px; border-radius: var(--border-radius); }
.related-card h4 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.related-card h4 a { color: var(--text-dark); }
.related-card h4 a:hover { color: var(--primary-blue); }
.related-card .read-more { font-size: 0.8rem; }

/* --- SIDEBAR --- */
aside { position: sticky; top: 100px; }
.sidebar-widget { margin-bottom: 30px; }
.sidebar-title {
    background-color: var(--gold);
    padding: 15px 20px;
    font-weight: 700;
    border-radius: 4px 4px 0 0;
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 1rem;
}
.service-list { background: var(--white); border: 1px solid #eee; border-top: none; }
.service-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}
.service-list a:last-child { border-bottom: none; }
.service-list a::after { content: '›'; font-weight: bold; color: var(--primary-blue); }
.service-list a:hover { background: var(--light-bg); color: var(--primary-blue); }

.quote-widget {
    background: var(--white);
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
}
.quote-widget h4 { font-size: 1.1rem; margin-bottom: 15px; color: var(--text-dark); }
.quote-widget p { font-size: 0.9rem; color: var(--text-grey); margin-bottom: 20px; }
.quote-widget .btn { width: 100%; }

/* Sidebar Card Alternative */
.sidebar-card { background: var(--light-bg); padding: 25px; border-radius: var(--border-radius); margin-bottom: 25px; }
.sidebar-card h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 15px; font-weight: 700; }
.sidebar-card ul { list-style: none; }
.sidebar-card li { padding: 10px 0; border-bottom: 1px solid #ddd; }
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card a { display: flex; justify-content: space-between; align-items: center; color: var(--text-dark); }
.sidebar-card a:hover { color: var(--primary-blue); }

/* --- CONTENT SECTION (for service pages) --- */
.content-section { padding: 60px 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.content-main h2 { font-size: 1.6rem; color: var(--text-dark); margin: 40px 0 20px; font-weight: 700; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 1.3rem; color: var(--text-dark); margin: 30px 0 15px; font-weight: 700; }
.content-main p { margin-bottom: 20px; line-height: 1.8; color: var(--text-dark); }
.content-main ul, .content-main ol { margin: 20px 0; padding-left: 25px; }
.content-main ul { list-style: disc; }
.content-main ol { list-style: decimal; }
.content-main li { margin-bottom: 10px; line-height: 1.7; }
.content-main a { color: var(--primary-blue); }
.content-main a:hover { color: var(--dark-blue); }
.content-sidebar { position: sticky; top: 100px; }

/* FAQ Page */
.faq-section { padding: 60px 0; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-category { margin-bottom: 40px; }
.faq-category h2 { font-size: 1.4rem; color: var(--primary-blue); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }

/* Pricing Page */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin: 40px 0; }
.pricing-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.pricing-card:hover { border-color: var(--primary-blue); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.pricing-card h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 15px; }
.pricing-card .price { font-size: 2rem; font-weight: 800; color: var(--primary-blue); margin-bottom: 15px; }
.pricing-card .price span { font-size: 1rem; font-weight: 500; color: var(--text-grey); }
.pricing-card p { font-size: 0.9rem; color: var(--text-grey); }

/* --- FOOTER --- */
footer { background-color: #111; color: #ccc; padding: 80px 0 20px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 25px; text-transform: uppercase; font-weight: 700; }
.footer-col p { line-height: 1.8; opacity: 0.8; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-brand .logo img { height: 45px; background: var(--white); padding: 8px 12px; border-radius: 4px; margin-bottom: 15px; }
.footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); }
.check-icon { color: var(--gold); margin-right: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; opacity: 0.7; font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--gold); }

/* --- CONTACT PAGE --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-dark); }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 1rem;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--primary-blue);
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--text-dark); }
.contact-info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.contact-info-item svg { width: 24px; height: 24px; color: var(--primary-blue); flex-shrink: 0; margin-top: 3px; }
.contact-info-item h4 { font-size: 1rem; margin-bottom: 5px; color: var(--text-dark); }
.contact-info-item p { color: var(--text-grey); }

/* --- STICKY CTA MOBILE --- */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--primary-blue);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-layout { flex-direction: column; }
    .hero-form-card { width: 100%; max-width: 450px; margin: 0 auto; flex: none; }
    .hero-content { max-width: 100%; text-align: center; padding-top: 0; }
    .hero-features { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .page-wrapper { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-stats { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr; }
    aside { position: static; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0;
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid #eee; }
    .nav-links .has-dropdown .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; background: var(--light-bg); margin-top: 0; border-radius: 0;
    }
    .mobile-menu-btn { display: block; }
    .header-cta { display: none; }

    .hero { padding: 50px 0; }
    .hero-content h1 { font-size: 2rem; }
    .hero-form-card { padding: 25px 20px; }

    .section-padding { padding: 50px 0; }
    .section-header h2 { font-size: 1.75rem; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .hub-container { flex-direction: column; }
    .hub-center { width: 150px; height: 150px; font-size: 1rem; }

    .page-hero h1 { font-size: 1.75rem; }
    .post-header h1 { font-size: 1.6rem; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-contact p { justify-content: center; }
    .trust-stats { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }

    .sticky-cta { display: block; }
    body { padding-bottom: 70px; }
}

/* --- ANIMATIONS --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.6s ease forwards; }

@keyframes ring { 0%, 100% { transform: rotate(0); } 10%, 30% { transform: rotate(-10deg); } 20%, 40% { transform: rotate(10deg); } 50% { transform: rotate(0); } }
.header-cta svg { animation: ring 1.5s ease-in-out infinite; }
