/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* --- NEW ELEGANT COLOR PALETTE --- */
:root {
    --brand-navy: #192a43;       /* Matches the deep navy in your logo */
    --brand-navy-dark: #101c2d;  /* A slightly darker shade for the footer */
    --brand-gold: #c39b45;       /* Matches the elegant gold roofline */
    --brand-gold-hover: #d2ac5a; /* Slightly lighter for hover states */
    --text-dark: #333333;
    --text-light: #666666;
    --light-gray: #f8f9fc;       /* A cooler, softer light gray */
}

/* Header & Logo */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.logo { 
    padding: 10px 0 10px 40px; 
}

.header-logo {
    height: 90px; /* Scaled slightly for a cleaner look */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--brand-gold);
}

.header-cta-block {
    background-color: var(--brand-gold);
    padding: 25px 40px;
    text-align: center;
    height: 100%;
    min-height: 110px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.header-cta-block:hover {
    background-color: var(--brand-gold-hover);
}

.cta-text {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-phone {
    font-weight: 800;
    font-size: 24px;
    color: #ffffff;
}

/* Hero Section (Index Page) */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: white;
    padding: 140px 40px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(25, 42, 67, 0.7); /* Navy overlay instead of black for brand consistency */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-sub {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--brand-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 { 
    font-size: 56px; 
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px; 
}

.hero-services {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    color: #e0e6ed;
}

.social-proof { 
    font-size: 16px; 
    font-weight: 500;
    margin-top: 20px;
}

.social-proof i {
    color: var(--brand-gold);
}

/* Blue Promo Bar */
.blue-bar {
    background-color: var(--brand-navy);
    color: var(--brand-gold);
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

/* Page Headers (Services & Contact) */
.page-title-section {
    background-color: var(--brand-navy);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 5px solid var(--brand-gold);
}

.page-title-section h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}

.page-title-section p {
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--brand-gold);
    font-weight: bold;
}

/* About Me Section */
.about-section {
    padding: 80px 10%;
    background-color: var(--light-gray);
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-text {
    flex: 1.5;
    min-width: 300px;
}

.about-text h2 {
    font-size: 38px;
    color: var(--brand-navy);
    font-weight: 900;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-stats {
    flex: 1;
    display: flex;
    gap: 30px;
    min-width: 300px;
}

.stat-box {
    background: white;
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    flex: 1;
    border-bottom: 4px solid var(--brand-gold);
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 900;
    color: var(--brand-navy);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    display: flex;
    justify-content: space-between;
    padding: 80px 10%;
    background: white;
    gap: 50px;
    flex-wrap: wrap;
}

.features-left { flex: 1; min-width: 300px; }
.features-left h2 {
    font-size: 48px;
    color: var(--brand-navy);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}
.features-subtitle {
    color: var(--brand-gold); 
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}
.features-left p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
}

.features-right { flex: 1.2; min-width: 300px; }
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}
.feature-icon {
    font-size: 36px;
    color: var(--brand-gold);
    margin-right: 25px;
    margin-top: 5px;
}
.feature-text h4 {
    color: var(--brand-navy);
    font-size: 22px;
    margin-bottom: 8px;
}
.feature-text p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 4 Steps Section */
.steps-section {
    background: var(--brand-navy);
    color: white;
    text-align: center;
    padding: 100px 40px;
}

.steps-section h2 {
    font-size: 38px;
    margin-bottom: 70px;
    font-weight: 900;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.step-box {
    width: 22%;
    min-width: 200px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--brand-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto 20px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--brand-navy);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.step-box p {
    font-size: 15px;
    color: #b0c4de;
    line-height: 1.6;
}

/* --- SERVICES PAGE SPECIFICS --- */
.services-detail-section {
    padding: 80px 5%;
    background-color: var(--light-gray);
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-box {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    flex: 1;
    min-width: 320px;
    border-top: 4px solid var(--brand-navy);
}

.service-icon {
    font-size: 40px;
    color: var(--brand-gold);
    margin-bottom: 25px;
}

.service-box h2 {
    font-size: 28px;
    color: var(--brand-navy);
    margin-bottom: 20px;
    font-weight: 900;
}

.service-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-steps {
    list-style: none;
    padding: 0;
}

.service-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.service-steps li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-num {
    background: var(--light-gray);
    color: var(--brand-navy);
    font-weight: bold;
    font-size: 13px;
    padding: 5px 8px;
    border-radius: 4px;
    margin-right: 15px;
    min-width: 35px;
    text-align: center;
    border: 1px solid #ddd;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 5%;
    background: white;
    text-align: center;
}

.gallery-section h2 {
    font-size: 38px;
    color: var(--brand-navy);
    margin-bottom: 50px;
    font-weight: 900;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 350px; 
    object-fit: cover; 
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* --- CONTACT PAGE SPECIFICS --- */
.contact-section {
    padding: 80px 5%;
    background-color: white;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info { flex: 1; min-width: 300px; }
.contact-info h2 {
    font-size: 36px;
    color: var(--brand-navy);
    margin-bottom: 20px;
    font-weight: 900;
}
.contact-info > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.info-item i {
    font-size: 20px;
    color: white;
    background-color: var(--brand-gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(195, 155, 69, 0.3);
}
.info-item h4 {
    font-size: 18px;
    color: var(--brand-navy);
    margin-bottom: 5px;
}
.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1.2;
    background: var(--light-gray);
    padding: 50px;
    border-radius: 8px;
    border-top: 5px solid var(--brand-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    min-width: 300px;
}
.quote-form .form-group { margin-bottom: 20px; }
.quote-form .form-row { display: flex; gap: 20px; }
.quote-form .form-row .form-group { flex: 1; }
.quote-form label {
    display: block;
    font-weight: bold;
    color: var(--brand-navy);
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(195, 155, 69, 0.1);
}
.submit-btn {
    background: var(--brand-navy);
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
    transition: background 0.3s;
    margin-top: 10px;
}
.submit-btn:hover {
    background: var(--brand-gold);
}

/* Footer Section */
.site-footer {
    background-color: var(--brand-navy-dark);
    color: #ffffff;
    padding: 70px 20px 30px;
    font-size: 15px;
}
.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-column {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    min-width: 200px;
}
.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 2px solid var(--brand-gold); 
    padding-bottom: 10px;
    display: inline-block;
    letter-spacing: 1px;
}
.footer-column p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #b0c4de;
}
.footer-phone {
    margin-top: 15px;
    font-size: 18px;
    color: var(--brand-gold) !important; 
    font-weight: bold;
}
.footer-column a {
    color: #b0c4de;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.footer-column a:hover {
    color: var(--brand-gold); 
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    margin-top: 20px;
    font-size: 13px;
    color: #7a8fa6;
}