/* Root Variables - Premium Navy & Gold Theme */
:root {
    --navy-dark: #0a1628;
    --navy-primary: #1e3a5f;
    --navy-medium: #2c5282;
    --navy-light: #4a6fa5;
    --gold-primary: #d4af37;
    --gold-light: #f4e4b7;
    --gold-dark: #b8941f;
    --cream: #faf8f3;
    --white: #ffffff;
    --gray-dark: #2d3748;
    --gray-medium: #4a5568;
    --gray-light: #a0aec0;
    --accent-red: #c53030;
    --shadow: 0 4px 12px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 12px 28px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 20px 40px rgba(10, 22, 40, 0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--white);
    letter-spacing: 0.01em;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 1.75rem;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-primary);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-primary);
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--gray-dark);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

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

.btn-nav {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-dark);
    padding: 0.625rem 1.75rem;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 700;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 650px;
    background-image: url('images/roof-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85), rgba(30, 58, 95, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-dark);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Trust Badges Section - NEW */
.trust-badges {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
    padding: 3rem 0;
    border-top: 3px solid var(--gold-primary);
    border-bottom: 3px solid var(--gold-primary);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.badge-item {
    text-align: center;
    color: var(--white);
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.badge-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--navy-dark);
    stroke-width: 2.5;
}

.badge-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
    letter-spacing: 0.03em;
}

.badge-item p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background-color: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--navy-dark);
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 3.5rem;
    font-weight: 400;
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy-dark);
    font-weight: 700;
}

.service-card p {
    color: var(--gray-medium);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.service-link {
    color: var(--gold-dark);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.75rem;
}

/* Why Choose Us */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
    color: var(--white);
}

.why-choose .section-title {
    color: var(--white);
}

.why-choose .section-title::after {
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
}

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

.feature {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.feature h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--gold-light);
    font-weight: 700;
}

.feature p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* Testimonials Section - NEW */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

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

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.star {
    color: var(--gold-primary);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gold-light);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    opacity: 0.1;
}

/* Service Areas */
.service-areas {
    padding: 5rem 0;
    background-color: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.area-item {
    background: linear-gradient(135deg, var(--cream), var(--white));
    padding: 1.75rem;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    color: var(--navy-dark);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold-light);
    transition: all 0.3s;
}

.area-item:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--cream));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-dark);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--navy-dark);
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

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

.cta-section .btn-primary:hover {
    background: var(--navy-primary);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--navy-dark), #050b14);
    color: var(--white);
    padding: 4.5rem 0 2rem;
    border-top: 3px solid var(--gold-primary);
}

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

.footer-col h4 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    color: var(--gold-light);
    font-weight: 700;
}

.footer-col p {
    color: var(--gray-light);
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: var(--gray-light);
    transition: color 0.3s;
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gray-light);
}

/* Page Header */
.page-header {
    position: relative;
    height: 350px;
    background-image: url('images/roof-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-header-hvac {
    background-image: url('images/hvac-technician.jpg');
}

.page-header-about {
    background-image: url('images/modern-home.jpg');
}

.page-header-contact {
    background-image: url('images/aerial-homes.jpg');
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85), rgba(30, 58, 95, 0.75));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.page-header p {
    font-size: 1.3rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

/* Services Detail */
.services-detail {
    padding: 6rem 0;
}

.service-detail-grid {
    display: grid;
    gap: 3.5rem;
}

.service-detail-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold-light);
}

.service-detail-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-detail-card h3 {
    font-size: 2.25rem;
    margin: 2.5rem 2.5rem 1.25rem;
    color: var(--navy-dark);
    font-weight: 800;
}

.service-detail-card p {
    margin: 0 2.5rem 1.75rem;
    color: var(--gray-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-features {
    margin: 0 2.5rem 2.5rem;
    padding-left: 1.5rem;
}

.service-features li {
    list-style: disc;
    color: var(--gray-medium);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.service-features li::marker {
    color: var(--gold-primary);
}

/* Materials Section */
.materials-section {
    padding: 6rem 0;
    background-color: var(--cream);
}

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

.material-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gold-light);
    transition: all 0.3s;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.material-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy-dark);
    font-weight: 700;
}

.material-card p {
    color: var(--gray-medium);
    line-height: 1.8;
}

/* Emergency Section */
.emergency-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, var(--accent-red), #9b2c2c);
    color: var(--white);
    text-align: center;
}

.emergency-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 800;
}

.emergency-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.emergency-section .btn-primary {
    background: var(--white);
    color: var(--accent-red);
}

.emergency-section .btn-primary:hover {
    background: var(--cream);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--cream);
}

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

.benefit-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--gold-light);
    transition: all 0.3s;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--gold-primary);
}

.benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--navy-dark);
    font-weight: 700;
}

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

/* Brands Section */
.brands-section {
    padding: 6rem 0;
}

.brands-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.brand-item {
    background: linear-gradient(135deg, var(--cream), var(--white));
    padding: 1.75rem;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    color: var(--navy-dark);
    border: 2px solid var(--gold-light);
}

/* About Content */
.about-content {
    padding: 6rem 0;
}

.about-intro {
    max-width: 850px;
    margin: 0 auto 4.5rem;
    text-align: center;
}

.about-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 1.75rem;
    color: var(--navy-dark);
    font-weight: 800;
}

.about-intro p {
    font-size: 1.15rem;
    color: var(--gray-medium);
    line-height: 1.9;
}

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

.about-card {
    background: linear-gradient(135deg, var(--cream), var(--white));
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--gold-light);
    box-shadow: var(--shadow);
}

.about-card h3 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    color: var(--navy-dark);
    font-weight: 800;
}

.about-card p {
    color: var(--gray-medium);
    line-height: 1.8;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.values-list li {
    color: var(--gray-medium);
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.7;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: var(--cream);
}

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

.team-member {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--gold-light);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 1.75rem 1.25rem 0.5rem;
    color: var(--navy-dark);
    font-weight: 800;
}

.team-role {
    color: var(--gold-dark);
    font-weight: 700;
    margin: 0 1.25rem 1.25rem;
    font-size: 1.05rem;
}

.team-member p:last-child {
    color: var(--gray-medium);
    margin: 0 1.25rem 2.5rem;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
}

.stats-section .section-title {
    color: var(--white);
}

.stats-section .section-title::after {
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
}

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

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1.15rem;
    color: var(--gray-light);
    font-weight: 600;
}

/* Certifications */
.certifications-section {
    padding: 6rem 0;
    background-color: var(--cream);
}

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

.cert-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--gold-light);
    transition: all 0.3s;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.cert-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--navy-dark);
    font-weight: 700;
}

.cert-item p {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

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

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: var(--navy-dark);
    font-weight: 800;
}

.contact-info > p {
    color: var(--gray-medium);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.75rem;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold-primary);
}

.contact-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
    font-weight: 700;
}

.contact-item p {
    color: var(--gray-medium);
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--gold-dark);
    font-weight: 700;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, var(--cream), var(--white));
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold-light);
}

.contact-form h3 {
    font-size: 1.85rem;
    margin-bottom: 1.75rem;
    color: var(--navy-dark);
    font-weight: 800;
}

.form-group {
    margin-bottom: 1.75rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--gold-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-top: 1.25rem;
    text-align: center;
}

/* Emergency Banner */
.emergency-banner {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, var(--accent-red), #9b2c2c);
    color: var(--white);
    text-align: center;
}

.emergency-banner h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 800;
}

.emergency-banner p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

/* Blog Styles */
.page-header-blog {
    background-image: url('images/modern-home.jpg');
}

.blog-intro {
    padding: 4rem 0 2rem;
    background-color: var(--cream);
    text-align: center;
}

.intro-text {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--gray-medium);
    line-height: 1.9;
}

.blog-articles {
    padding: 4rem 0 6rem;
    background-color: var(--cream);
}

.blog-grid {
    display: grid;
    gap: 3rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold-light);
    transition: all 0.3s;
}

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

.blog-image {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    background-image: url('images/roof-hero.jpg');
    background-size: cover;
    background-position: center;
}

.blog-image-hvac {
    background-image: url('images/hvac-units.jpg');
}

.blog-image-heating {
    background-image: url('images/hvac-technician.jpg');
}

.blog-image-materials {
    background-image: url('images/modern-home.jpg');
}

.blog-image-repair {
    background-image: url('images/service-team.jpg');
}

.blog-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-content {
    padding: 2.5rem;
}

.blog-card h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--navy-dark);
    font-weight: 800;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-primary);
}

.blog-read-time {
    font-weight: 600;
}

.blog-excerpt {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.blog-full-content {
    display: none;
    margin-bottom: 2rem;
}

.blog-full-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--navy-dark);
    font-weight: 700;
}

.blog-full-content h3:first-child {
    margin-top: 0;
}

.blog-full-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 1.25rem;
}

.blog-full-content p strong {
    color: var(--navy-dark);
    font-weight: 700;
}

.blog-read-more {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-dark);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.blog-read-more:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

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

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

    .section-title {
        font-size: 2.25rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .badges-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 550px;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .btn {
        padding: 0.85rem 1.75rem;
    }

    .service-detail-card img {
        height: 220px;
    }

    h2 {
        font-size: 2rem;
    }
}