/* Roofing Clearwater Masters - Custom Styles */

:root {
    --primary-blue: #063a68;
    --accent-red: #bc201c;
    --header-bg: #ece8e2;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header Styles */
header {
    background-color: var(--header-bg);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    max-height: 80px;
    width: auto;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phone, .hours {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.phone {
    font-size: 1.3rem;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-media a:hover {
    color: var(--accent-red);
}

/* Navigation */
nav {
    background-color: var(--primary-blue);
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
    font-weight: 500;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--accent-red);
}

/* Dropdown Menu */
nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-blue);
    min-width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    flex-direction: column;
}

nav ul li:hover ul {
    display: flex;
}

nav ul li ul li a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #094d7a 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: var(--white);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(188, 32, 28, 0.4);
}

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

/* Section Styles */
section {
    margin-bottom: 40px;
}

h1, h2, h3, h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--accent-red);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: var(--accent-red);
}

.service-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

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

.learn-more {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.learn-more:hover {
    background-color: var(--accent-red);
}

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

.feature-item {
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid var(--accent-red);
    border-radius: 5px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* ============================================
   SERVICES SECTION - FRESH START
   ============================================ */

/* Section Container */
.services-showcase {
    background: #ffffff;
    padding: 80px 0;
}

/* Section Header */
.section-header-premium {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    background: var(--accent-red);
    color: var(--white);
    padding: 5px 18px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header-premium h2 {
    font-size: 2.3rem;
    color: var(--primary-blue);
    margin: 10px 0 15px 0;
    font-weight: 800;
    border-bottom: none;
}

.header-divider {
    width: 50px;
    height: 3px;
    background: var(--accent-red);
    margin: 0 auto 18px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid - 2 Columns */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Individual Service Card */
.service-card-premium {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(6, 58, 104, 0.12);
}

/* Image at Top */
.service-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-card-premium:hover .service-image-wrapper img {
    transform: scale(1.05);
}

/* Badge on Image */
.service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-red);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-badge.urgent {
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Content Area Below Image */
.service-content {
    padding: 25px 22px;
}

/* Heading */
.service-content h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin: 0 0 10px 0;
    font-weight: 700;
}

/* Description */
.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 18px 0;
}

/* Button */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--accent-red);
}

.service-cta i {
    font-size: 0.8rem;
}

/* Bottom CTA Box */
.services-cta-wrapper {
    text-align: center;
    padding: 35px 25px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-top: 30px;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 18px;
}

.cta-button-large {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: var(--primary-blue);
}

.cta-subtext {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.phone-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
}

.phone-link:hover {
    color: var(--primary-blue);
}

/* ============================================
   TYPES OF ROOFING SERVICES SECTION
   ============================================ */

.roofing-types-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    padding: 80px 0;
}

.section-header-types {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.section-header-types h2 {
    font-size: 2.4rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 20px;
    border-bottom: none;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* 3 Column Grid */
.roofing-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Individual Service Type Card */
.type-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    text-align: center;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 58, 104, 0.15);
    border-color: var(--primary-blue);
}

/* Featured Card (Middle) */
.type-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #094d7a 100%);
    color: var(--white);
    transform: scale(1.05);
    border-color: var(--accent-red);
}

.type-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.type-card.featured h3,
.type-card.featured p,
.type-card.featured .type-features li {
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(188, 32, 28, 0.4);
}

/* Image */
.type-image {
    width: 100%;
    height: 220px;
    margin: 0 0 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(6, 58, 104, 0.15);
    transition: all 0.4s ease;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.type-card:hover .type-image {
    box-shadow: 0 12px 30px rgba(6, 58, 104, 0.25);
}

.type-card:hover .type-image img {
    transform: scale(1.08);
}

.type-card.featured .type-image {
    box-shadow: 0 12px 30px rgba(188, 32, 28, 0.2);
}

/* Heading */
.type-card h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin: 0 0 15px 0;
    font-weight: 800;
}

/* Description */
.type-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0 0 25px 0;
}

/* Features List */
.type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.type-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.type-features li i {
    color: var(--accent-red);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.type-card.featured .type-features li i {
    color: var(--white);
}

/* CTA Button */
.type-cta {
    display: inline-block;
    padding: 13px 32px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(6, 58, 104, 0.2);
}

.type-cta:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(188, 32, 28, 0.3);
}

.type-card.featured .type-cta {
    background: var(--white);
    color: var(--primary-blue);
}

.type-card.featured .type-cta:hover {
    background: var(--accent-red);
    color: var(--white);
}

/* Bottom CTA */
.types-bottom-cta {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.types-bottom-cta p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.inline-phone {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

.inline-phone:hover {
    color: var(--primary-blue);
}

.btn-large {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 32, 28, 0.3);
}

.btn-large:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 58, 104, 0.3);
}

/* ============================================
   ROOFING JOBS GALLERY SECTION
   ============================================ */

.jobs-gallery-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
    padding: 80px 0;
}

.section-header-jobs {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.section-header-jobs h2 {
    font-size: 2.4rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 18px;
    border-bottom: none;
}

.jobs-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Jobs Grid - 2x2 Layout */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Individual Job Item */
.job-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.job-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(6, 58, 104, 0.2);
}

/* Job Image */
.job-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.job-item:hover .job-image img {
    transform: scale(1.1);
}

/* Overlay on Hover */
.job-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 58, 104, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.job-item:hover .job-overlay {
    opacity: 1;
}

/* Job Info */
.job-info {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.job-item:hover .job-info {
    transform: translateY(0);
}

.job-info h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.job-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Jobs CTA */
.jobs-cta {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
    border-radius: 10px;
}

.jobs-cta p {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0 0 20px 0;
}

/* Modern Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    border-bottom: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-red) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 58, 104, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #094d7a 100%);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(6, 58, 104, 0.2);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(188, 32, 28, 0.3);
    background: linear-gradient(135deg, var(--accent-red) 0%, #9a1916 100%);
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Modern Process Section */
.process-section {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
    padding: 80px 0;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(188, 32, 28, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(6, 58, 104, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.step {
    background: var(--white);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-red) 100%);
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(6, 58, 104, 0.15);
    border-color: rgba(6, 58, 104, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #094d7a 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(6, 58, 104, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover .step-number {
    background: linear-gradient(135deg, var(--accent-red) 0%, #9a1916 100%);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 30px rgba(188, 32, 28, 0.3);
}

.step:hover .step-number::after {
    opacity: 1;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.step p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Areas */
.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.area-item {
    padding: 15px;
    background: var(--header-bg);
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    color: var(--primary-blue);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--accent-red);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(6, 58, 104, 0.15);
    border-left-color: var(--primary-blue);
}

.faq-item h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-cta h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.faq-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Contact CTA Section with Map */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #094d7a 100%);
    padding: 80px 0;
    color: var(--white);
    margin: 60px 0 0 0;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info-wrapper h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
    border-bottom: none;
}

.contact-info-wrapper .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-size: 1.15rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #9a1916 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(188, 32, 28, 0.3);
}

.contact-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.contact-text h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p,
.contact-text a {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--white);
    text-decoration: underline;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-red);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
    background-color: var(--accent-red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #9a1916;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
}

/* Reviews/Testimonials */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.review-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Emergency Section */
.emergency-section {
    background-color: var(--accent-red);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.emergency-section h2 {
    color: var(--white);
    border-bottom: none;
}

.emergency-section a {
    color: var(--white);
    font-size: 2rem;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .header-info {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li ul {
        position: static;
        box-shadow: none;
    }

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

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

    .services-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Services Showcase Responsive */
    .services-showcase {
        padding: 50px 0;
    }

    .section-header-premium {
        margin-bottom: 35px;
    }

    .section-header-premium h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .services-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image-wrapper {
        height: 180px;
    }

    .service-content {
        padding: 20px 18px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .service-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .services-cta-wrapper {
        padding: 40px 20px;
    }

    .cta-text {
        font-size: 1.2rem;
    }

    .cta-button-large {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    /* Why Choose Section Responsive */
    .why-choose-section {
        padding: 50px 0;
        margin: 40px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    /* Roofing Types Section Responsive */
    .roofing-types-section {
        padding: 50px 0;
    }

    .section-header-types h2 {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .roofing-types-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .type-card {
        padding: 35px 25px;
    }

    .type-card.featured {
        transform: scale(1);
    }

    .type-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }

    .type-image {
        height: 180px;
    }

    .type-card h3 {
        font-size: 1.4rem;
    }

    .types-bottom-cta {
        padding: 30px 20px;
    }

    .types-bottom-cta p {
        font-size: 1rem;
    }

    .inline-phone {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    /* Process Section Responsive */
    .process-section {
        padding: 50px 0;
        margin: 40px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Jobs Gallery Responsive */
    .jobs-gallery-section {
        padding: 50px 0;
    }

    .section-header-jobs h2 {
        font-size: 1.8rem;
    }

    .jobs-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job-image {
        height: 280px;
    }

    .job-overlay {
        padding: 20px;
    }

    .job-info h3 {
        font-size: 1.2rem;
    }

    .job-info p {
        font-size: 0.9rem;
    }

    .jobs-cta {
        padding: 30px 20px;
    }

    .jobs-cta p {
        font-size: 1.05rem;
    }

    /* Contact CTA Section Responsive */
    .contact-cta-section {
        padding: 50px 0;
    }

    .contact-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    /* FAQ Section Responsive */
    .faq-section {
        padding: 50px 0;
        margin: 40px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Floating Call Button Responsive */
    .floating-call-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .floating-call-button a {
        font-size: 1.5rem;
    }
}

/* Service Page Specific */
.service-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #094d7a 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.service-hero h1 {
    color: var(--white);
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.service-main img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.service-sidebar {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.service-sidebar h3 {
    margin-top: 0;
}

@media (max-width: 968px) {
    .service-content {
        grid-template-columns: 1fr;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 8px;
    color: var(--text-light);
}

/* Floating Call Button */
.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #9a1916 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(188, 32, 28, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float-pulse 2s infinite;
}

.floating-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(188, 32, 28, 0.6);
}

.floating-call-button a {
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.floating-call-button::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid var(--accent-red);
    opacity: 0;
    animation: float-ring 2s infinite;
}

@keyframes float-pulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes float-ring {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}
